summaryrefslogtreecommitdiff
path: root/kconfig/lxdialog/checklist.c
diff options
context:
space:
mode:
Diffstat (limited to 'kconfig/lxdialog/checklist.c')
-rw-r--r--kconfig/lxdialog/checklist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfig/lxdialog/checklist.c b/kconfig/lxdialog/checklist.c
index cf69708..b2a878c 100644
--- a/kconfig/lxdialog/checklist.c
+++ b/kconfig/lxdialog/checklist.c
@@ -97,8 +97,8 @@ static void print_buttons(WINDOW * dialog, int height, int width, int selected)
int x = width / 2 - 11;
int y = height - 2;
- print_button(dialog, "Select", y, x, selected == 0);
- print_button(dialog, " Help ", y, x + 14, selected == 1);
+ print_button(dialog, gettext("Select"), y, x, selected == 0);
+ print_button(dialog, gettext(" Help "), y, x + 14, selected == 1);
wmove(dialog, y, x + 1 + 14 * selected);
wrefresh(dialog);