diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2018-06-16 16:30:03 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-17 06:36:20 +0900 |
commit | 0bc9edf855caf95e2d58ccaf704ceeda079e06f1 (patch) | |
tree | 0a467346d3cccc71204629f05e45dd7c59767409 /qt-models | |
parent | 4ccc4d73290309908898387fe0d24503606336ad (diff) | |
download | subsurface-0bc9edf855caf95e2d58ccaf704ceeda079e06f1.tar.gz |
Fix an error around translation of dive modes in the UI
This fixes an mistake introduced in
3d1072f8862e4c329dc2678df52a24137b8d4704
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 2 | ||||
-rw-r--r-- | qt-models/models.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 2e3cb12a1..601b76cc0 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -252,7 +252,7 @@ QVariant DivePlannerPointsModel::data(const QModelIndex &index, int role) const else return p.time / 60; case DIVEMODE: - return QString(divemode_text[p.divemode]); + return QString(tr(divemode_text_ui[p.divemode])); case GAS: /* Check if we have the same gasmix two or more times * If yes return more verbose string */ diff --git a/qt-models/models.cpp b/qt-models/models.cpp index 74abf0533..5d96d4da4 100644 --- a/qt-models/models.cpp +++ b/qt-models/models.cpp @@ -83,7 +83,7 @@ void DiveTypeSelectionModel::repopulate() { QStringList modes = QStringList(); for (int i = 0; i < FREEDIVE; i++) - modes.append(QString(divemode_text[i])); + modes.append(QString(tr(divemode_text_ui[i]))); setStringList(modes); } |