From 6ff784113eaf6cc7328adcd5285ce883945f6d4f Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Thu, 18 Oct 2012 00:43:49 +0300 Subject: [PATCH] Translate the SAC value in 'Dive Info' Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- statistics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);