1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-26 19:37:40 +00:00

Change every "pop this menu" option text to the two words "go back".

And add translations for "go back", copied from the existing translations
for the word "return".
This commit is contained in:
Arthur O'Dwyer
2017-10-29 12:16:29 -07:00
parent dae6b9e3d3
commit 43cb9c0bf4
17 changed files with 26 additions and 19 deletions

View File

@@ -527,7 +527,7 @@ void loadConfig() {
void showAllConfig() {
dialog::addBreak(50);
dialog::addItem(XLAT("exit configuration"), ' ');
dialog::addItem(XLAT("go back"), ' ');
#if CAP_CONFIG
dialog::addItem(XLAT("save the current config"), 's');
if(getcstat == 's')
@@ -851,7 +851,8 @@ void showJoyConfig() {
dialog::addSelItem(XLAT("second joystick: pan threshold"), its(vid.joypanthreshold), 'c');
dialog::addSelItem(XLAT("second joystick: panning speed"), fts(vid.joypanspeed * 1000), 'd');
dialog::addItem(XLAT("back"), ' ');
dialog::addBreak(50);
dialog::addItem(XLAT("go back"), ' ');
dialog::display();
keyhandler = [] (int sym, int uni) {
@@ -1005,7 +1006,7 @@ void show3D() {
else
dialog::addInfo(XLAT("parameters set correctly"));
dialog::addBreak(50);
dialog::addItem(XLAT("exit 3D configuration"), ' ');
dialog::addItem(XLAT("go back"), ' ');
dialog::display();
keyhandler = [] (int sym, int uni) {
@@ -1106,7 +1107,7 @@ void showCustomizeChar() {
if(numplayers() > 1) dialog::addSelItem(XLAT("player"), its(shmup::cpid+1), 'a');
dialog::addBreak(50);
dialog::addItem(XLAT("return to the game"), ' ');
dialog::addItem(XLAT("go back"), ' ');
dialog::display();
int firsty = dialog::items[0].position / 2;
@@ -1191,7 +1192,7 @@ void selectLanguageScreen() {
dialog::addBreak(50);
vid.language = -1;
dialog::addBoolItem(XLAT("default") + ": " + XLAT("EN"), v == -1, '0');
dialog::addItem(XLAT("exit configuration"), ' ');
dialog::addItem(XLAT("go back"), ' ');
dialog::addBreak(50);