summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4b562c2)
raw | patch | inline | side by side (parent: 4b562c2)
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | |
Wed, 21 Dec 2011 20:40:51 +0000 (21:40 +0100) | ||
committer | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | |
Wed, 21 Dec 2011 20:40:51 +0000 (21:40 +0100) |
src/command.c | patch | blob | history |
diff --git a/src/command.c b/src/command.c
index 43741cf5686d5179f2c9d1f4bb56e668b046c764..82232aff6ba49e3a0499ed2b42d28e55780d446c 100644 (file)
--- a/src/command.c
+++ b/src/command.c
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