kconfig/lxdialog/inputbox.c
changeset 1174 7710d81d15e7
parent 1 eeea35fbf182
child 2448 a103abae1560
     1.1 --- a/kconfig/lxdialog/inputbox.c	Sat Feb 24 11:00:05 2007 +0000
     1.2 +++ b/kconfig/lxdialog/inputbox.c	Thu Jan 29 18:53:32 2009 +0000
     1.3 @@ -31,8 +31,8 @@
     1.4  	int x = width / 2 - 11;
     1.5  	int y = height - 2;
     1.6  
     1.7 -	print_button(dialog, "  Ok  ", y, x, selected == 0);
     1.8 -	print_button(dialog, " Help ", y, x + 14, selected == 1);
     1.9 +	print_button(dialog, gettext("  Ok  "), y, x, selected == 0);
    1.10 +	print_button(dialog, gettext(" Help "), y, x + 14, selected == 1);
    1.11  
    1.12  	wmove(dialog, y, x + 1 + 14 * selected);
    1.13  	wrefresh(dialog);
    1.14 @@ -89,7 +89,7 @@
    1.15  	box_y = y + 2;
    1.16  	box_x = (width - box_width) / 2;
    1.17  	draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2,
    1.18 -		 dlg.border.atr, dlg.dialog.atr);
    1.19 +		 dlg.dialog.atr, dlg.border.atr);
    1.20  
    1.21  	print_buttons(dialog, height, width, 0);
    1.22