statistics.c: Added missing translation of "<unit>/min"

"<unit>/min" should be OK for most Latin languages, but for Cyrillic
we have to translate "min" as well.

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 2013-02-23 18:17:36 +02:00 committed by Dirk Hohndel
parent f47813546c
commit 4e32a5031f

View file

@ -256,7 +256,7 @@ static void add_cell(GtkTreeStore *store, GtkTreeIter *parent, unsigned int val,
snprintf(value_str, sizeof(value_str), "%.*f %s", decimals, value, unit);
} else {
value = get_volume_units(val, &decimals, &unit);
snprintf(value_str, sizeof(value_str), "%.*f %s/min", decimals, value, unit);
snprintf(value_str, sizeof(value_str), _("%.*f %s/min"), decimals, value, unit);
}
add_cell_to_tree(store, value_str, cell, parent);
}