diff options
author | Robert C. Helling <helling@atdotde.de> | 2018-05-17 10:04:41 +0200 |
---|---|---|
committer | Robert C. Helling <helling@atdotde.de> | 2018-05-28 09:57:00 +0200 |
commit | 7c6e5ed5dbc32c90984b1cc92bc9dfc023295c84 (patch) | |
tree | 340500dba2318c05db62c76073a1e31165b91adc /core/statistics.c | |
parent | 424efb77201de370d35b10028eba40736a0fe955 (diff) | |
download | subsurface-7c6e5ed5dbc32c90984b1cc92bc9dfc023295c84.tar.gz |
Distinguish between user and internal divemode names
The former should be translated but not those that
go to xml/git.
... and fix capitalization of pSCR.
Suggested-by: Stefan Fuchs <sfuchs@gmx.de>
Signed-off-by: Robert C. Helling <helling@atdotde.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 d8ddf914c..ab3d0b628 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(translate("gettextFromC","OC")); + stats_by_type[1].location = strdup(divemode_text_ui[OC]); stats_by_type[1].is_trip = true; - stats_by_type[2].location = strdup(translate("gettextFromC","CCR")); + stats_by_type[2].location = strdup(divemode_text_ui[CCR]); stats_by_type[2].is_trip = true; - stats_by_type[3].location = strdup(translate("gettextFromC","pSCR")); + stats_by_type[3].location = strdup(divemode_text_ui[PSCR]); stats_by_type[3].is_trip = true; - stats_by_type[4].location = strdup(translate("gettextFromC","Freedive")); + stats_by_type[4].location = strdup(divemode_text_ui[FREEDIVE]); stats_by_type[4].is_trip = true; /* this relies on the fact that the dives in the dive_table |