summaryrefslogtreecommitdiffstats
path: root/info.c
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2012-10-17 20:52:16 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-17 14:13:36 -0700
commit9e0a9884b865615bbd82a21f2a08ec1e1bf30c4f (patch)
treede7410ecec6171e11aefc42d745b7b94b14ab203 /info.c
parent90c9b0e311f86655e19c54aa7c7c5e463168d2bb (diff)
downloadsubsurface-9e0a9884b865615bbd82a21f2a08ec1e1bf30c4f.tar.gz
info.c: set units for translation in the "depth box"
[Dirk Hohndel: fixed to use the correct macro] Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'info.c')
-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 {