summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/tab-widgets
diff options
context:
space:
mode:
authorGravatar Stefan Fuchs <sfuchs@gmx.de>2018-06-16 16:30:03 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-06-17 06:36:20 +0900
commit0bc9edf855caf95e2d58ccaf704ceeda079e06f1 (patch)
tree0a467346d3cccc71204629f05e45dd7c59767409 /desktop-widgets/tab-widgets
parent4ccc4d73290309908898387fe0d24503606336ad (diff)
downloadsubsurface-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 'desktop-widgets/tab-widgets')
-rw-r--r--desktop-widgets/tab-widgets/maintab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp
index 62925ee52..fcd116a81 100644
--- a/desktop-widgets/tab-widgets/maintab.cpp
+++ b/desktop-widgets/tab-widgets/maintab.cpp
@@ -111,7 +111,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
// This needs to be the same order as enum dive_comp_type in dive.h!
QStringList types = QStringList();
for (int i = 0; i < NUM_DIVEMODE; i++)
- types.append(QString(divemode_text_ui[i]));
+ types.append(QString(tr(divemode_text_ui[i])));
ui.DiveType->insertItems(0, types);
connect(ui.DiveType, SIGNAL(currentIndexChanged(int)), this, SLOT(divetype_Changed(int)));