summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-01-22 17:23:55 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-01-22 18:20:03 -0800
commitb15b3c195c73db1d181413a97783173649485f9d (patch)
tree99bf37a6c3cd82386e73070c984b13d9dc9b9f61 /core
parent0196d9a220e4bdd989539f55b4d5736d189410d4 (diff)
downloadsubsurface-b15b3c195c73db1d181413a97783173649485f9d.tar.gz
QML UI: allow magic phrase for multiple buddies to be localized
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core')
-rw-r--r--core/subsurface-qt/DiveObjectHelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/DiveObjectHelper.cpp
index 246e4510b..9814f9a6a 100644
--- a/core/subsurface-qt/DiveObjectHelper.cpp
+++ b/core/subsurface-qt/DiveObjectHelper.cpp
@@ -425,7 +425,7 @@ QStringList DiveObjectHelper::buddyList() const
QRegExp sep("(,\\s)");
QStringList tempList = temp.split(sep);
buddies << tempList;
- buddies << "Multiple Buddies";
+ buddies << tr("Multiple Buddies");
}
}
buddies.removeDuplicates();