summaryrefslogtreecommitdiffstats
path: root/core/statistics.c
diff options
context:
space:
mode:
authorGravatar Martin Měřinský <mermar@centrum.cz>2017-03-07 08:05:17 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-03-07 16:22:03 -0800
commit186a80fffe89aaec78efdfb0ee7c7903f21b5af6 (patch)
tree4887266c197d2d396d860654ee13b073717bdd03 /core/statistics.c
parente34e2693ea8dc3503287698304f587cb60f2d317 (diff)
downloadsubsurface-186a80fffe89aaec78efdfb0ee7c7903f21b5af6.tar.gz
Enable translate 'All' in yearly statistics.
Diffstat (limited to 'core/statistics.c')
-rw-r--r--core/statistics.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/statistics.c b/core/statistics.c
index 233025dd3..cb21961d4 100644
--- a/core/statistics.c
+++ b/core/statistics.c
@@ -192,7 +192,7 @@ void process_all_dives(struct dive *dive, struct dive **prev_dive)
stats_by_trip[0].selection_size++;
process_dive(dp, &(stats_by_trip[0]));
stats_by_trip[0].is_trip = true;
- stats_by_trip[0].location = strdup("All (by trip stats)");
+ stats_by_trip[0].location = strdup(translate("gettextFromC", "All (by trip stats)"));
process_dive(dp, &(stats_by_trip[trip_iter]));
stats_by_trip[trip_iter].selection_size++;