Skip to content

Commit 242c9bc

Browse files
ClobberXDparamat
authored andcommitted
Remove 's' from 'automatic forwards' (#8272)
1 parent 85389ad commit 242c9bc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

builtin/settingtypes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ keymap_decrease_volume (Dec. volume key) key
244244

245245
# Key for toggling autoforward.
246246
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
247-
keymap_autoforward (Automatic forwards key) key
247+
keymap_autoforward (Automatic forward key) key
248248

249249
# Key for toggling cinematic mode.
250250
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3

src/client/game.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2178,9 +2178,9 @@ void Game::toggleAutoforward()
21782178
g_settings->set("continuous_forward", bool_to_cstr(autorun_enabled));
21792179

21802180
if (autorun_enabled)
2181-
m_game_ui->showTranslatedStatusText("Automatic forwards enabled");
2181+
m_game_ui->showTranslatedStatusText("Automatic forward enabled");
21822182
else
2183-
m_game_ui->showTranslatedStatusText("Automatic forwards disabled");
2183+
m_game_ui->showTranslatedStatusText("Automatic forward disabled");
21842184
}
21852185

21862186
void Game::toggleMinimap(bool shift_pressed)

src/settings_translation_file.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ fake_function() {
9898
gettext("Key for increasing the volume.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
9999
gettext("Dec. volume key");
100100
gettext("Key for decreasing the volume.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
101-
gettext("Automatic forwards key");
101+
gettext("Automatic forward key");
102102
gettext("Key for toggling autoforward.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
103103
gettext("Cinematic mode key");
104104
gettext("Key for toggling cinematic mode.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");

0 commit comments

Comments
 (0)