summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.c b/info.c
index b72b33398..613a2d11e 100644
--- a/info.c
+++ b/info.c
@@ -837,7 +837,7 @@ static timestamp_t dive_time_widget(struct dive *dive)
gtk_box_pack_end(GTK_BOX(box), duration, FALSE, FALSE, 0);
/* Depth box */
- box = frame_box(hbox, _("Depth (%s):"), output_units.length == FEET ? "ft" : "m");
+ box = frame_box(hbox, _("Depth (%s):"), output_units.length == FEET ? _("ft") : _("m"));
if (output_units.length == FEET) {
depthinterval = 1.0;
} else {