diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2012-10-18 00:43:49 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-10-17 15:08:42 -0700 |
commit | 6ff784113eaf6cc7328adcd5285ce883945f6d4f (patch) | |
tree | 5d4036c996fee6ee78333cfe185dfb6f54adf930 /statistics.c | |
parent | 88a321c9833de40be77c133b8818b9abdcae3c2e (diff) | |
download | subsurface-6ff784113eaf6cc7328adcd5285ce883945f6d4f.tar.gz |
Translate the SAC value in 'Dive Info'
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'statistics.c')
-rw-r--r-- | statistics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/statistics.c b/statistics.c index db6e30a05..0f58b61bd 100644 --- a/statistics.c +++ b/statistics.c @@ -550,7 +550,7 @@ static void show_single_dive_stats(struct dive *dive) set_label(single_w.water_temp, ""); value = get_volume_units(dive->sac, &decimals, &unit); if (value > 0) { - set_label(single_w.sac, "%.*f %s/min", decimals, value, unit); + set_label(single_w.sac, _("%.*f %s/min"), decimals, value, unit); } else set_label(single_w.sac, ""); set_label(single_w.otu, "%d", dive->otu); |