summaryrefslogtreecommitdiffstats
path: root/equipment.c
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2012-10-19 00:45:36 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-18 14:49:14 -0700
commit17191f17ce16521a98fb739a4d65eb69f4669c6e (patch)
tree7f3263b7f6ba71a5a7bd22461f50c9c932700cce /equipment.c
parent834825f4061b1d74f6925233cdf9d1be1fdcc8f7 (diff)
downloadsubsurface-17191f17ce16521a98fb739a4d65eb69f4669c6e.tar.gz
Translate the units in the 'Weight System' dialog
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'equipment.c')
-rw-r--r--equipment.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/equipment.c b/equipment.c
index 8371e490a..a87d74da3 100644
--- a/equipment.c
+++ b/equipment.c
@@ -1034,9 +1034,9 @@ static void ws_widget(GtkWidget *vbox, struct ws_widget *ws_widget, GtkListStore
gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 0);
if ( output_units.weight == KG)
- widget = create_spinbutton(hbox, "kg", 0, 50, 0.5);
+ widget = create_spinbutton(hbox, _("kg"), 0, 50, 0.5);
else
- widget = create_spinbutton(hbox, "lbs", 0, 110, 1);
+ widget = create_spinbutton(hbox, _("lbs"), 0, 110, 1);
ws_widget->weight = GTK_SPIN_BUTTON(widget);
}