Browse Source

thermostat: boost_dlg: add "temporarily in the message"

to make it clearer
master
Richard Genoud 4 years ago
parent
commit
99efade6da
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      soft/thermostat/lang/thermostat_fr.ts
  2. +1
    -1
      soft/thermostat/src/boost_dlg.cpp

+ 2
- 2
soft/thermostat/lang/thermostat_fr.ts View File

@ -48,8 +48,8 @@ forcée</translation>
<name>BoostDlg</name>
<message>
<location filename="../src/boost_dlg.cpp" line="+31"/>
<source>Force %1 temperature: (actual target: %2 °C)</source>
<translation>Fixe la température de %1 (consigne actuelle %2 °C)</translation>
<source>Temporarily set %1 temperature: (actual target: %2 °C)</source>
<translation>Fixe temporairement la T°C de %1 (consigne actuelle %2 °C)</translation>
</message>
<message>
<location line="+48"/>


+ 1
- 1
soft/thermostat/src/boost_dlg.cpp View File

@ -28,7 +28,7 @@ BoostDlg::BoostDlg(int idx, const QString &zoneName, double temperature,
QWidget *parent, Qt::WindowFlags f) : QWidget(parent, f)
{
QString sheet;
QLabel *room_name = new QLabel(QString(tr("Force %1 temperature: (actual target: %2 °C)")
QLabel *room_name = new QLabel(QString(tr("Temporarily set %1 temperature: (actual target: %2 °C)")
.arg(zoneName)
.arg(temperature)));


Loading…
Cancel
Save