summaryrefslogtreecommitdiff
path: root/kconfig/lxdialog/menubox.c
diff options
context:
space:
mode:
Diffstat (limited to 'kconfig/lxdialog/menubox.c')
-rw-r--r--kconfig/lxdialog/menubox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kconfig/lxdialog/menubox.c b/kconfig/lxdialog/menubox.c
index 0d83159..fa9d633 100644
--- a/kconfig/lxdialog/menubox.c
+++ b/kconfig/lxdialog/menubox.c
@@ -157,9 +157,9 @@ static void print_buttons(WINDOW * win, int height, int width, int selected)
int x = width / 2 - 16;
int y = height - 2;
- print_button(win, "Select", y, x, selected == 0);
- print_button(win, " Exit ", y, x + 12, selected == 1);
- print_button(win, " Help ", y, x + 24, selected == 2);
+ print_button(win, gettext("Select"), y, x, selected == 0);
+ print_button(win, gettext(" Exit "), y, x + 12, selected == 1);
+ print_button(win, gettext(" Help "), y, x + 24, selected == 2);
wmove(win, y, x + 1 + 12 * selected);
wrefresh(win);