From: Thomas Roessler Date: Wed, 18 Dec 2002 10:22:11 +0000 (+0000) Subject: Make the messages from the what-key function internationalizable. X-Git-Tag: mutt-1-5-4-rel~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c5342a1112caa7af48c8c503a684bcb7d43e48b;p=mutt Make the messages from the what-key function internationalizable. --- 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); } }