kconfig/lxdialog/menubox.c
changeset 943 1cca90ce0481
parent 1 eeea35fbf182
child 2448 a103abae1560
     1.1 --- a/kconfig/lxdialog/menubox.c	Sat Feb 24 11:00:05 2007 +0000
     1.2 +++ b/kconfig/lxdialog/menubox.c	Fri Oct 17 12:47:53 2008 +0000
     1.3 @@ -157,9 +157,9 @@
     1.4  	int x = width / 2 - 16;
     1.5  	int y = height - 2;
     1.6  
     1.7 -	print_button(win, "Select", y, x, selected == 0);
     1.8 -	print_button(win, " Exit ", y, x + 12, selected == 1);
     1.9 -	print_button(win, " Help ", y, x + 24, selected == 2);
    1.10 +	print_button(win, gettext("Select"), y, x, selected == 0);
    1.11 +	print_button(win, gettext(" Exit "), y, x + 12, selected == 1);
    1.12 +	print_button(win, gettext(" Help "), y, x + 24, selected == 2);
    1.13  
    1.14  	wmove(win, y, x + 1 + 12 * selected);
    1.15  	wrefresh(win);