summaryrefslogtreecommitdiffstats
path: root/keymap.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2002-12-18 10:22:11 +0000
committerThomas Roessler <roessler@does-not-exist.org>2002-12-18 10:22:11 +0000
commit9c5342a1112caa7af48c8c503a684bcb7d43e48b (patch)
treee0f7e48265500225cdddccfcc930ee46e8f740f2 /keymap.c
parente5158f42453dac57543d88e65dfb0cd824d45c09 (diff)
Make the messages from the what-key function internationalizable.
Diffstat (limited to 'keymap.c')
-rw-r--r--keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keymap.c b/keymap.c
index 063462fc..6561db31 100644
--- a/keymap.c
+++ b/keymap.c
@@ -919,12 +919,12 @@ void mutt_what_key (void)
{
int ch;
- mvprintw(LINES-1,0,"Enter keys (^G to abort): ");
+ mvprintw(LINES-1,0, _("Enter keys (^G to abort): "));
do {
ch = getch();
if (ch != ERR && ch != ctrl ('G'))
{
- mutt_message("Char = %s, Octal = %o, Decimal = %d",
+ mutt_message(_("Char = %s, Octal = %o, Decimal = %d"),
km_keyname(ch), ch, ch);
}
}