summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-01 09:27:57 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-01 09:27:57 +0000
commit691bd529e512097f427d230c947ff4cf0adb8a38 (patch)
tree3bdaff6c2d27ecf7d4f1ddc78d1eef87089d33ed /help.c
parentdea307bbc2b8cf7639af5a148c6146e21644e6e4 (diff)
Adding gettext support, based on the patch by Marco d'Itri.
Diffstat (limited to 'help.c')
-rw-r--r--help.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/help.c b/help.c
index d1a29a91..22dbabf6 100644
--- a/help.c
+++ b/help.c
@@ -182,7 +182,7 @@ static void dump_menu (FILE *f, int menu)
{
b = help_lookupFunction (map->op, menu);
fprintf (f, "%-22s %s\n", b ? b->name : "UNKNOWN",
- b ? HelpStrings[b->op] : "ERROR: please report this bug");
+ b ? _(HelpStrings[b->op]) : _("ERROR: please report this bug"));
}
}
}
@@ -207,7 +207,7 @@ static void dump_unbound (FILE *f,
{
if (! is_bound (map, funcs[i].op) &&
(!aux || ! is_bound (aux, funcs[i].op)))
- fprintf (f, "%-35s%s\n", funcs[i].name, HelpStrings[funcs[i].op]);
+ fprintf (f, "%-35s%s\n", funcs[i].name, _(HelpStrings[funcs[i].op]));
}
}
@@ -229,16 +229,16 @@ void mutt_help (int menu)
funcs = km_get_table (menu);
desc = mutt_getnamebyvalue (menu, Menus);
if (!desc)
- desc = "<UNKNOWN>";
+ desc = _("<UNKNOWN>");
dump_menu (f, menu);
if (menu != MENU_EDITOR && menu != MENU_PAGER)
{
- fputs ("\nGeneric bindings:\n\n", f);
+ fputs (_("\nGeneric bindings:\n\n"), f);
dump_menu (f, MENU_GENERIC);
}
- fputs ("\nUnbound functions:\n\n", f);
+ fputs (_("\nUnbound functions:\n\n"), f);
if (funcs)
dump_unbound (f, funcs, Keymaps[menu], NULL);
if (menu != MENU_PAGER)
@@ -246,6 +246,6 @@ void mutt_help (int menu)
fclose (f);
- snprintf (buf, sizeof (buf), "Help for %s", desc);
+ snprintf (buf, sizeof (buf), _("Help for %s"), desc);
mutt_do_pager (buf, t, 0, NULL);
}