diff -r eeea35fbf182 -r 1cca90ce0481 kconfig/lxdialog/yesno.c --- a/kconfig/lxdialog/yesno.c Sat Feb 24 11:00:05 2007 +0000 +++ b/kconfig/lxdialog/yesno.c Fri Oct 17 12:47:53 2008 +0000 @@ -29,8 +29,8 @@ int x = width / 2 - 10; int y = height - 2; - print_button(dialog, " Yes ", y, x, selected == 0); - print_button(dialog, " No ", y, x + 13, selected == 1); + print_button(dialog, gettext(" Yes "), y, x, selected == 0); + print_button(dialog, gettext(" No "), y, x + 13, selected == 1); wmove(dialog, y, x + 1 + 13 * selected); wrefresh(dialog);