Translate the SAC value in 'Dive Info'

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2012-10-18 00:43:49 +03:00 committed by Dirk Hohndel
parent 88a321c983
commit 6ff784113e

View file

@ -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);