diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-02-23 18:17:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-23 08:23:51 -0800 |
commit | 4e32a5031fa0dbcdb29472359f73ba389fa86c20 (patch) | |
tree | 26f5def5edf5882029453b9e598ab996b47556a3 /statistics.c | |
parent | f47813546cc481a69cce741dc04ad72e7fc1ca55 (diff) | |
download | subsurface-4e32a5031fa0dbcdb29472359f73ba389fa86c20.tar.gz |
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>
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 73c771804..96bc5db36 100644 --- a/statistics.c +++ b/statistics.c @@ -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); } |