From: terencehill Date: Sun, 3 Jul 2022 12:29:05 +0000 (+0200) Subject: Improve wording of movement keys X-Git-Tag: xonotic-v0.8.6~432 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d93f6b03b51f1c9da2456680c988423b5bbcf91a;p=xonotic%2Fxonotic-data.pk3dir.git Improve wording of movement keys --- diff --git a/qcsrc/menu/xonotic/keybinder.qc b/qcsrc/menu/xonotic/keybinder.qc index c76af8cee..13196888c 100644 --- a/qcsrc/menu/xonotic/keybinder.qc +++ b/qcsrc/menu/xonotic/keybinder.qc @@ -33,8 +33,8 @@ void KeyBinds_BuildList() #define KEYBIND_SPECIAL_DEF(key, desc) KEYBIND_DEF(strcat("*", key), desc) KEYBIND_HEADER(_("Moving")); - KEYBIND_DEF("+forward" , _("forward")); - KEYBIND_DEF("+back" , _("backpedal")); + KEYBIND_DEF("+forward" , _("move forwards")); + KEYBIND_DEF("+back" , _("move backwards")); KEYBIND_DEF("+moveleft" , _("strafe left")); KEYBIND_DEF("+moveright" , _("strafe right")); KEYBIND_DEF("+jump" , _("jump / swim"));