diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2018-06-17 08:48:54 +0200 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2018-06-18 07:42:39 +0200 |
commit | 88e6ba2f61cb1cf92787d8bdd2be499744ac546d (patch) | |
tree | 3a26eb3e40f9f82002ead8ef5defd9bb55376c70 /qt-models/diveplannermodel.cpp | |
parent | 2466351a5f2aa0085e11f11e2c9fc0431ebdcc5b (diff) | |
download | subsurface-88e6ba2f61cb1cf92787d8bdd2be499744ac546d.tar.gz |
Use correct "tr" call for translating dive mode names
Correctly use gettextFromC::instance()->tr(); instead of a simple
tr(); to translate the dive mode names.
This goes on top of 0bc9edf855caf95e2d58ccaf704ceeda079e06f1
and finally makes the whole thing work.
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 601b76cc0..1b24a816e 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -7,6 +7,7 @@ #include "core/device.h" #include "core/qthelper.h" #include "core/subsurface-qt/SettingsObjectWrapper.h" +#include "core/gettextfromc.h" #include <QApplication> #include <QTextDocument> #include <QtConcurrent> @@ -252,7 +253,7 @@ QVariant DivePlannerPointsModel::data(const QModelIndex &index, int role) const else return p.time / 60; case DIVEMODE: - return QString(tr(divemode_text_ui[p.divemode])); + return gettextFromC::instance()->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 */ |