mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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:
parent
f47813546c
commit
4e32a5031f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue