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>
This commit is contained in:
Lubomir I. Ivanov 2012-10-17 20:52:16 +03:00 committed by Dirk Hohndel
parent 90c9b0e311
commit 9e0a9884b8

2
info.c
View file

@ -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 {