From 1251976d6be447c783544e895093a2624eb82548 Mon Sep 17 00:00:00 2001 From: terencehill Date: Wed, 9 Sep 2015 20:47:33 +0200 Subject: [PATCH] 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 --- qcsrc/menu/xonotic/keybinder.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.39.2