diff options
Diffstat (limited to 'scripts/kconfig/lxdialog/checklist.c')
-rw-r--r-- | scripts/kconfig/lxdialog/checklist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/lxdialog/checklist.c b/scripts/kconfig/lxdialog/checklist.c index cf697080dddd..b2a878c936d6 100644 --- a/scripts/kconfig/lxdialog/checklist.c +++ b/scripts/kconfig/lxdialog/checklist.c | |||
@@ -97,8 +97,8 @@ static void print_buttons(WINDOW * dialog, int height, int width, int selected) | |||
97 | int x = width / 2 - 11; | 97 | int x = width / 2 - 11; |
98 | int y = height - 2; | 98 | int y = height - 2; |
99 | 99 | ||
100 | print_button(dialog, "Select", y, x, selected == 0); | 100 | print_button(dialog, gettext("Select"), y, x, selected == 0); |
101 | print_button(dialog, " Help ", y, x + 14, selected == 1); | 101 | print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); |
102 | 102 | ||
103 | wmove(dialog, y, x + 1 + 14 * selected); | 103 | wmove(dialog, y, x + 1 + 14 * selected); |
104 | wrefresh(dialog); | 104 | wrefresh(dialog); |