From: terencehill Date: Wed, 9 Sep 2015 18:47:33 +0000 (+0200) Subject: Don't translate "userbind" as it defines part of the cvar name; also I made a mistake... X-Git-Tag: xonotic-v0.8.2~1918^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1251976d6be447c783544e895093a2624eb82548;p=xonotic%2Fxonotic-data.pk3dir.git Don't translate "userbind" as it defines part of the cvar name; also I made a mistake when I escaped $: it only serves as identifier of the userbind commands and is not meant to be shown --- diff --git a/qcsrc/menu/xonotic/keybinder.qc b/qcsrc/menu/xonotic/keybinder.qc index 0bb27d12a..a64c77b0f 100644 --- a/qcsrc/menu/xonotic/keybinder.qc +++ b/qcsrc/menu/xonotic/keybinder.qc @@ -141,7 +141,7 @@ void Xonotic_KeyBinds_Read() KEYBIND_DEF("" , _("User defined")); for(i = 1; i <= 32; ++i) - KEYBIND_DEF(strcat("+userbind ", itos(i)), strcat("$$", _("userbind"), itos(i))); + KEYBIND_DEF(strcat("+userbind ", itos(i)), strcat("$userbind", itos(i))); #undef KEYBIND_DEF }