summaryrefslogtreecommitdiffstats
path: root/compose.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2002-12-09 13:29:57 +0000
committerThomas Roessler <roessler@does-not-exist.org>2002-12-09 13:29:57 +0000
commitc3375ca8a211317bfc17eac240fe4c08b6175ede (patch)
tree64eefc3772d94af52b79db8db0fbf3dfeb89ce7b /compose.c
parent049a7190f62b5dd9f61bb3bca9b5d329251535e1 (diff)
Try to fix a localization issue identified by Pawel Dzienkonski
(#1410). Side effect: All translations will need an update of the S/MIME key translations.
Diffstat (limited to 'compose.c')
-rw-r--r--compose.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/compose.c b/compose.c
index 3970981e..8b28c813 100644
--- a/compose.c
+++ b/compose.c
@@ -229,13 +229,13 @@ static int smime_send_menu (HEADER *msg, int *redraw)
char *p;
switch (mutt_multi_choice (_("S/MIME (e)ncrypt, (s)ign, encrypt (w)ith, sign (a)s, (b)oth, or (f)orget it? "),
- _("ewsabf")))
+ _("eswabf")))
{
case 1: /* (e)ncrypt */
msg->security |= SMIMEENCRYPT;
break;
- case 2: /* encrypt (w)ith */
+ case 3: /* encrypt (w)ith */
msg->security |= SMIMEENCRYPT;
switch (mutt_multi_choice (_("1: DES, 2: Triple-DES, 3: RC2-40,"
" 4: RC2-64, 5: RC2-128, or (f)orget it? "),
@@ -260,7 +260,7 @@ static int smime_send_menu (HEADER *msg, int *redraw)
}
break;
- case 3: /* (s)ign */
+ case 2: /* (s)ign */
if(!SmimeDefaultKey)
mutt_message("Can\'t sign: No key specified. use sign(as).");