summaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.cpp
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.demon.co.uk>2014-07-11 00:06:51 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-10 16:30:56 -0700
commit8940f29eadf57d058b18e4cfc8c4bce889be35d7 (patch)
treeb9e1eff85eb36aabdd4648129dd38c255689d33c /qt-ui/maintab.cpp
parent25114a4e847614382b5dc41a4c90ce52a2bba086 (diff)
downloadsubsurface-8940f29eadf57d058b18e4cfc8c4bce889be35d7.tar.gz
Prefer "temp." vs "temp" and sometimes "temperature"
For consitency in the UI There are plenty more of these to find, and once in a while "Temperature" looks more apropriate, like in a title, but most of the time "temp." works best. Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r--qt-ui/maintab.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp
index 8c02b2eae..e28511f69 100644
--- a/qt-ui/maintab.cpp
+++ b/qt-ui/maintab.cpp
@@ -239,11 +239,11 @@ void MainTab::displayMessage(QString str)
void MainTab::updateTextLabels(bool showUnits)
{
if (showUnits) {
- ui.airTempLabel->setText(tr("Air temp [%1]").arg(get_temp_unit()));
- ui.waterTempLabel->setText(tr("Water temp [%1]").arg(get_temp_unit()));
+ ui.airTempLabel->setText(tr("Air temp. [%1]").arg(get_temp_unit()));
+ ui.waterTempLabel->setText(tr("Water temp. [%1]").arg(get_temp_unit()));
} else {
- ui.airTempLabel->setText(tr("Air temp"));
- ui.waterTempLabel->setText(tr("Water temp"));
+ ui.airTempLabel->setText(tr("Air temp."));
+ ui.waterTempLabel->setText(tr("Water temp."));
}
}