mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
90c9b0e311
commit
9e0a9884b8
1 changed files with 1 additions and 1 deletions
2
info.c
2
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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue