summaryrefslogtreecommitdiffstats
path: root/statistics.c
diff options
context:
space:
mode:
Diffstat (limited to 'statistics.c')
-rw-r--r--statistics.c2
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);
}