Code

command: make Ctrl-X/Alt-X/F1 etc. translatable
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>
Wed, 21 Dec 2011 20:40:51 +0000 (21:40 +0100)
committerJonathan Neuschäfer <j.neuschaefer@gmx.net>
Wed, 21 Dec 2011 20:40:51 +0000 (21:40 +0100)
src/command.c

index 43741cf5686d5179f2c9d1f4bb56e668b046c764..82232aff6ba49e3a0499ed2b42d28e55780d446c 100644 (file)
@@ -307,13 +307,13 @@ key2str(int key)
        default:
                for (i = 0; i <= 63; i++)
                        if (key == KEY_F(i)) {
-                               g_snprintf(buf, 32, "F%d", i );
+                               g_snprintf(buf, 32, _("F%d"), i );
                                return buf;
                        }
                if (!(key & ~037))
-                       g_snprintf(buf, 32, "Ctrl-%c", 'A'+(key & 037)-1 );
+                       g_snprintf(buf, 32, _("Ctrl-%c"), 'A'+(key & 037)-1 );
                else if ((key & ~037) == 224)
-                       g_snprintf(buf, 32, "Alt-%c", 'A'+(key & 037)-1 );
+                       g_snprintf(buf, 32, _("Alt-%c"), 'A'+(key & 037)-1 );
                else if (key > 32 && key < 256)
                        g_snprintf(buf, 32, "%c", key);
                else