diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2018-06-16 16:30:03 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-17 06:36:20 +0900 |
commit | 0bc9edf855caf95e2d58ccaf704ceeda079e06f1 (patch) | |
tree | 0a467346d3cccc71204629f05e45dd7c59767409 /core/statistics.c | |
parent | 4ccc4d73290309908898387fe0d24503606336ad (diff) | |
download | subsurface-0bc9edf855caf95e2d58ccaf704ceeda079e06f1.tar.gz |
Fix an error around translation of dive modes in the UI
This fixes an mistake introduced in
3d1072f8862e4c329dc2678df52a24137b8d4704
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'core/statistics.c')
-rw-r--r-- | core/statistics.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/statistics.c b/core/statistics.c index 49a2493a5..58d851611 100644 --- a/core/statistics.c +++ b/core/statistics.c @@ -140,13 +140,13 @@ void process_all_dives(struct dive *dive, struct dive **prev_dive) * field in the statistics window */ stats_by_type[0].location = strdup(translate("gettextFromC", "All (by type stats)")); stats_by_type[0].is_trip = true; - stats_by_type[1].location = strdup(divemode_text_ui[OC]); + stats_by_type[1].location = strdup(translate("gettextFromC", divemode_text_ui[OC])); stats_by_type[1].is_trip = true; - stats_by_type[2].location = strdup(divemode_text_ui[CCR]); + stats_by_type[2].location = strdup(translate("gettextFromC", divemode_text_ui[CCR])); stats_by_type[2].is_trip = true; - stats_by_type[3].location = strdup(divemode_text_ui[PSCR]); + stats_by_type[3].location = strdup(translate("gettextFromC", divemode_text_ui[PSCR])); stats_by_type[3].is_trip = true; - stats_by_type[4].location = strdup(divemode_text_ui[FREEDIVE]); + stats_by_type[4].location = strdup(translate("gettextFromC", divemode_text_ui[FREEDIVE])); stats_by_type[4].is_trip = true; /* this relies on the fact that the dives in the dive_table |