]> granicus.if.org Git - mutt/commitdiff
Make the messages from the what-key function internationalizable.
authorThomas Roessler <roessler@does-not-exist.org>
Wed, 18 Dec 2002 10:22:11 +0000 (10:22 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Wed, 18 Dec 2002 10:22:11 +0000 (10:22 +0000)
keymap.c

index 063462fcb381ee156fbf6ad714150d07ed714830..6561db31705a4750d36e025c83c36feacd5966ef 100644 (file)
--- 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);
     }
   }