diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2012-10-17 20:52:16 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-10-17 14:13:36 -0700 |
commit | 9e0a9884b865615bbd82a21f2a08ec1e1bf30c4f (patch) | |
tree | de7410ecec6171e11aefc42d745b7b94b14ab203 /info.c | |
parent | 90c9b0e311f86655e19c54aa7c7c5e463168d2bb (diff) | |
download | subsurface-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |