summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2014-07-20 15:07:55 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-11 08:40:18 -0700
commite07d23f806311460789f30d4998a1c852af39dc7 (patch)
treefd6a89f4f87bc0fbb64b30b7e27d246150ee3f6a
parentb54032df759ab4ffaed35f70fda95594890b6977 (diff)
downloadsubsurface-e07d23f806311460789f30d4998a1c852af39dc7.tar.gz
Rename list column from O2% to Gas
In the dive list, calling the column O2% is kinda wrong, because in at least my dive list there are both air and trimix showing up, so this renames that column to Gas. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/models.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index 11e84c9c2..db5f180e0 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -1339,7 +1339,7 @@ QVariant DiveTripModel::headerData(int section, Qt::Orientation orientation, int
ret = tr("Cyl");
break;
case NITROX:
- ret = QString("O%1%").arg(UTF8_SUBSCRIPT_2);
+ ret = tr("Gas");
break;
case SAC:
ret = tr("SAC");