summaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Sergey Starosek <sergey.starosek@gmail.com>2014-07-16 21:37:06 +0400
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-16 13:26:41 -0700
commitdcca755343ac2766119645218802f26066eb0da5 (patch)
tree874c31c6f78aa1e86f5aac9cd12ab161646c2ac4 /qt-ui
parentf0e17e6fff253b0be8c7999bb804d870f2ca73bf (diff)
downloadsubsurface-dcca755343ac2766119645218802f26066eb0da5.tar.gz
More strings to translate for statistics tab
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/maintab.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp
index 4ec3941f2..88ff09944 100644
--- a/qt-ui/maintab.cpp
+++ b/qt-ui/maintab.cpp
@@ -542,11 +542,11 @@ void MainTab::updateDiveInfo(bool clear)
* it is used.
*/
if (he_tot.mliter || o2_tot.mliter) {
- gasUsedString.append(QString("These gases could be\nmixed from Air and using:\n"));
+ gasUsedString.append(tr("These gases could be\nmixed from Air and using:\n"));
if (he_tot.mliter)
gasUsedString.append(QString("He: %1").arg(get_volume_string(he_tot, true)));
if (he_tot.mliter && o2_tot.mliter)
- gasUsedString.append(QString(" and "));
+ gasUsedString.append(tr(" and "));
if (o2_tot.mliter)
gasUsedString.append(QString("O2: %2\n").arg(get_volume_string(o2_tot, true)));
}