diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-10-29 20:00:50 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-10-29 20:00:53 +0100 |
commit | 2d604ab2ffde39b7ff88892639fb81691d43cb0f (patch) | |
tree | 912caec445a7ff406a431bb039a428bd92a473a8 /core/statistics.c | |
parent | cf75e6451d970732f64bdd04e71ed91c73b01356 (diff) | |
download | subsurface-2d604ab2ffde39b7ff88892639fb81691d43cb0f.tar.gz |
Mark missing translations
Reported-by: Pedro Neves <nevesdiver@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/statistics.c')
-rw-r--r-- | core/statistics.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/statistics.c b/core/statistics.c index 6ed859ca2..d2a8d8ae2 100644 --- a/core/statistics.c +++ b/core/statistics.c @@ -139,15 +139,15 @@ void process_all_dives(struct dive *dive, struct dive **prev_dive) /* Setting the is_trip to true to show the location as first * field in the statistics window */ - stats_by_type[0].location = strdup("All (by type stats)"); + 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("OC"); + stats_by_type[1].location = strdup(translate("gettextFromC","OC")); stats_by_type[1].is_trip = true; - stats_by_type[2].location = strdup("CCR"); + stats_by_type[2].location = strdup(translate("gettextFromC","CCR")); stats_by_type[2].is_trip = true; - stats_by_type[3].location = strdup("pSCR"); + stats_by_type[3].location = strdup(translate("gettextFromC","pSCR")); stats_by_type[3].is_trip = true; - stats_by_type[4].location = strdup("Freedive"); + stats_by_type[4].location = strdup(translate("gettextFromC","Freedive")); stats_by_type[4].is_trip = true; /* this relies on the fact that the dives in the dive_table |