diff -r eeea35fbf182 -r 7710d81d15e7 kconfig/lxdialog/yesno.c --- a/kconfig/lxdialog/yesno.c Sat Feb 24 11:00:05 2007 +0000 +++ b/kconfig/lxdialog/yesno.c Thu Jan 29 18:53:32 2009 +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);