summaryrefslogtreecommitdiffstats
path: root/core/dive.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/dive.c')
-rw-r--r--core/dive.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/core/dive.c b/core/dive.c
index 255631ec3..c0a034280 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -35,7 +35,17 @@ static const char *default_tags[] = {
const char *cylinderuse_text[] = {
QT_TRANSLATE_NOOP("gettextFromC", "OC-gas"), QT_TRANSLATE_NOOP("gettextFromC", "diluent"), QT_TRANSLATE_NOOP("gettextFromC", "oxygen"), QT_TRANSLATE_NOOP("gettextFromC", "not used")
};
-const char *divemode_text[] = { "OC", "CCR", "PSCR", "Freedive" };
+
+// For user visible text
+const char *divemode_text_ui[] = {
+ QT_TRANSLATE_NOOP("gettextFromC", "Open circuit"),
+ QT_TRANSLATE_NOOP("gettextFromC", "CCR"),
+ QT_TRANSLATE_NOOP("gettextFromC", "pSCR"),
+ QT_TRANSLATE_NOOP("gettextFromC", "Freedive")
+};
+
+// For writing/reading files.
+const char *divemode_text[] = {"OC", "CCR", "pSCR", "Freedive"};
/*
* Adding a cylinder pressure sample field is not quite as trivial as it