diff options
author | Robert C. Helling <helling@atdotde.de> | 2015-10-14 22:08:00 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-14 13:15:40 -0700 |
commit | dbd07af59fd14d20e529c3561fb6cfc3a8fb1814 (patch) | |
tree | df0ed5cd0617aa58e3bd982f8a46e678d552f08e /qt-ui/maintab.cpp | |
parent | d9f7c5807b7680dd7c72729a0496a7317295db4f (diff) | |
download | subsurface-dbd07af59fd14d20e529c3561fb6cfc3a8fb1814.tar.gz |
Mark dive type list for translation
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index e97812cf6..be63d5e11 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -95,7 +95,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), connect(ui.weights, SIGNAL(addButtonClicked()), this, SLOT(addWeight_clicked())); // This needs to be the same order as enum dive_comp_type in dive.h! - ui.DiveType->insertItems(0, QStringList() << "OC" << "CCR" << "pSCR" << "Freedive"); + ui.DiveType->insertItems(0, QStringList() << tr("OC") << tr("CCR") << tr("pSCR") << tr("Freedive")); connect(ui.DiveType, SIGNAL(currentIndexChanged(int)), this, SLOT(divetype_Changed(int))); connect(ui.cylinders->view(), SIGNAL(clicked(QModelIndex)), this, SLOT(editCylinderWidget(QModelIndex))); |