summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-13 22:53:09 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-13 22:53:09 +0000
commitce9d059e49321e1bb0968227812f1404923451e1 (patch)
tree6005de47b873845b6b1ad2c1d8da84c734bf5c77 /commands.c
parent2a30e7052fd5b286ded156cf1ada60dae0b75356 (diff)
random pre-release clean-up.
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/commands.c b/commands.c
index e2100a74..77a2c7a5 100644
--- a/commands.c
+++ b/commands.c
@@ -239,9 +239,11 @@ void ci_bounce_message (HEADER *h, int *redraw)
ADDRESS *adr = NULL;
int rc;
- /* FIXME i18n */
- snprintf (prompt, sizeof(prompt), "Bounce %smessage%s to: ",
- h ? "" : "tagged ", h ? "" : "s");
+ if(h)
+ strfcpy(prompt, _("Bounce message to: "), sizeof(prompt));
+ else
+ strfcpy(prompt, _("Bounce tagged messages to: "), sizeof(prompt));
+
rc = mutt_get_field (prompt, buf, sizeof (buf), M_ALIAS);
if (option (OPTNEEDREDRAW))