|
@@ -157,9 +157,9 @@ static void print_buttons(WINDOW * win, int height, int width, int selected)
|
|
|
int x = width / 2 - 16;
|
|
|
int y = height - 2;
|
|
|
|
|
|
- print_button(win, "Select", y, x, selected == 0);
|
|
|
- print_button(win, " Exit ", y, x + 12, selected == 1);
|
|
|
- print_button(win, " Help ", y, x + 24, selected == 2);
|
|
|
+ print_button(win, gettext("Select"), y, x, selected == 0);
|
|
|
+ print_button(win, gettext(" Exit "), y, x + 12, selected == 1);
|
|
|
+ print_button(win, gettext(" Help "), y, x + 24, selected == 2);
|
|
|
|
|
|
wmove(win, y, x + 1 + 12 * selected);
|
|
|
wrefresh(win);
|