diff -r eeea35fbf182 -r 7710d81d15e7 kconfig/lxdialog/inputbox.c --- a/kconfig/lxdialog/inputbox.c Sat Feb 24 11:00:05 2007 +0000 +++ b/kconfig/lxdialog/inputbox.c Thu Jan 29 18:53:32 2009 +0000 @@ -31,8 +31,8 @@ int x = width / 2 - 11; int y = height - 2; - print_button(dialog, " Ok ", y, x, selected == 0); - print_button(dialog, " Help ", y, x + 14, selected == 1); + print_button(dialog, gettext(" Ok "), y, x, selected == 0); + print_button(dialog, gettext(" Help "), y, x + 14, selected == 1); wmove(dialog, y, x + 1 + 14 * selected); wrefresh(dialog); @@ -89,7 +89,7 @@ box_y = y + 2; box_x = (width - box_width) / 2; draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2, - dlg.border.atr, dlg.dialog.atr); + dlg.dialog.atr, dlg.border.atr); print_buttons(dialog, height, width, 0);