diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-11-17 14:15:19 +0000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-11-17 14:39:30 +0000 |
commit | 8856417b2fb783ad3e8dcf95ddc9292cc1c5ba52 (patch) | |
tree | cd386687738935a5f901c376d3631b99444a7265 /dive.c | |
parent | 0c3f13d128f366b036a77dfd2d195cbcac8547ba (diff) | |
download | subsurface-8856417b2fb783ad3e8dcf95ddc9292cc1c5ba52.tar.gz |
Allow translation of the cylinder use strings for the UI
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -26,10 +26,11 @@ static const char *default_tags[] = { QT_TRANSLATE_NOOP("gettextFromC", "deco") }; -const char *cylinderuse_text[] = { "OC-gas", "diluent", "oxygen" }; +const char *cylinderuse_text[] = { + QT_TRANSLATE_NOOP("gettextFromC", "OC-gas"), QT_TRANSLATE_NOOP("gettextFromC", "diluent"), QT_TRANSLATE_NOOP("gettextFromC", "oxygen") +}; const char *dctype_text[] = { "OC", "CCR", "PSCR" }; - int event_is_gaschange(struct event *ev) { return ev->type == SAMPLE_EVENT_GASCHANGE || @@ -586,7 +587,7 @@ void copy_cylinders(struct dive *s, struct dive *d, bool used_only) int cylinderuse_from_text(const char *text) { for (enum cylinderuse i = 0; i < NUM_GAS_USE; i++) { - if (same_string(text, cylinderuse_text[i])) + if (same_string(text, cylinderuse_text[i]) || same_string(text, translate("gettextFromC", cylinderuse_text[i]))) return i; } return -1; |