diff -r eeea35fbf182 -r 1cca90ce0481 kconfig/lxdialog/menubox.c --- a/kconfig/lxdialog/menubox.c Sat Feb 24 11:00:05 2007 +0000 +++ b/kconfig/lxdialog/menubox.c Fri Oct 17 12:47:53 2008 +0000 @@ -157,9 +157,9 @@ 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);