tweaks: put Yes/No/All in a consistent order (for the translators)

So that it matches the order of the preceding Yy/Nn/Aa.
master
Benno Schulenberg 2018-05-13 09:56:12 +02:00
parent f5eeb92f40
commit 4b26308b6a
1 changed files with 4 additions and 4 deletions

View File

@ -696,16 +696,16 @@ int do_yesno_prompt(bool all, const char *msg)
wmove(bottomwin, 1, 0);
post_one_key(shortstr, _("Yes"), width);
shortstr[1] = nostr[0];
wmove(bottomwin, 2, 0);
post_one_key(shortstr, _("No"), width);
if (all) {
shortstr[1] = allstr[0];
wmove(bottomwin, 1, width);
post_one_key(shortstr, _("All"), width);
}
shortstr[1] = nostr[0];
wmove(bottomwin, 2, 0);
post_one_key(shortstr, _("No"), width);
wmove(bottomwin, 2, width);
post_one_key("^C", _("Cancel"), width);
}