From b39b641a0518593e3afa64e19c317cdbae05642b Mon Sep 17 00:00:00 2001 From: Stefan Fuchs Date: Tue, 21 Feb 2017 18:04:00 +0100 Subject: Translate names of additional dive events and nicer format info box text Enable translation for a few additional internal dive events. Ensure that all event names in datatrak.c are collected for translation. Ensure that for gaschange in profile info box the "cyl." string is also translated. Signed-off-by: Stefan Fuchs --- core/datatrak.c | 10 +++++----- core/planner.c | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'core') diff --git a/core/datatrak.c b/core/datatrak.c index 204ebd9b3..ba3715935 100644 --- a/core/datatrak.c +++ b/core/datatrak.c @@ -107,15 +107,15 @@ static struct sample *dtrak_profile(struct dive *dt_dive, FILE *archivo) else sample->in_deco = false; if (byte[1] != 0) - add_event(dc, sample->time.seconds, 0, 0, 0, "rbt"); + add_event(dc, sample->time.seconds, 0, 0, 0, QT_TRANSLATE_NOOP("gettextFromC", "rbt")); if (byte[2] != 0) - add_event(dc, sample->time.seconds, 0, 0, 0, "ascent"); + add_event(dc, sample->time.seconds, 0, 0, 0, QT_TRANSLATE_NOOP("gettextFromC", "ascent")); if (byte[3] != 0) - add_event(dc, sample->time.seconds, 0, 0, 0, "ceiling"); + add_event(dc, sample->time.seconds, 0, 0, 0, QT_TRANSLATE_NOOP("gettextFromC", "ceiling")); if (byte[4] != 0) - add_event(dc, sample->time.seconds, 0, 0, 0, "workload"); + add_event(dc, sample->time.seconds, 0, 0, 0, QT_TRANSLATE_NOOP("gettextFromC", "workload")); if (byte[5] != 0) - add_event(dc, sample->time.seconds, 0, 0, 0, "transmitter"); + add_event(dc, sample->time.seconds, 0, 0, 0, QT_TRANSLATE_NOOP("gettextFromC", "transmitter")); if (j == 3) { read_bytes(1); if (is_O2) { diff --git a/core/planner.c b/core/planner.c index 8d1cbdc60..ad7678188 100644 --- a/core/planner.c +++ b/core/planner.c @@ -317,7 +317,7 @@ static void create_dive_from_plan(struct diveplan *diveplan, bool track_gas) /* this is a bad idea - we should get a different SAMPLE_EVENT type * reserved for this in libdivecomputer... overloading SMAPLE_EVENT_PO2 * with a different meaning will only cause confusion elsewhere in the code */ - add_event(dc, lasttime, SAMPLE_EVENT_PO2, 0, po2, "SP change"); + add_event(dc, lasttime, SAMPLE_EVENT_PO2, 0, po2, QT_TRANSLATE_NOOP("gettextFromC", "SP change")); oldpo2 = po2; } -- cgit v1.2.3-70-g09d2