From: Kevin McCarthy Date: Wed, 2 Sep 2015 22:02:03 +0000 (-0700) Subject: Add L10N messages for the pgp/smime send menus. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09e47df7df5e203250ab88b5cd3a2b1fc808379f;p=neomutt Add L10N messages for the pgp/smime send menus. This documents the 'f' "forget it" choice for translators. Thanks to Benno Schulenberg for pointing this out and for the original patch. --- diff --git a/crypt-gpgme.c b/crypt-gpgme.c index 060fc2f2e..f1755dec5 100644 --- a/crypt-gpgme.c +++ b/crypt-gpgme.c @@ -4676,6 +4676,10 @@ static int gpgme_send_menu (HEADER *msg, int *redraw, int is_smime) if (is_smime) { prompt = _("S/MIME (s)ign, sign (a)s, (p)gp, (c)lear, or (o)ppenc mode off? "); + /* L10N: The 'f' is from "forget it", an old undocumented synonym of + * 'clear'. Please use a corresponding letter in your language. + * Alternatively, you may duplicate the letter 'c' is translated to. + * This comment also applies to the five following letter sequences. */ letters = _("sapfco"); choices = "SapFCo"; } diff --git a/pgp.c b/pgp.c index 9c03db7cf..1bac6d010 100644 --- a/pgp.c +++ b/pgp.c @@ -1682,6 +1682,10 @@ int pgp_send_menu (HEADER *msg, int *redraw) _("PGP (s)ign, sign (a)s, %s format, (c)lear, or (o)ppenc mode off? "), (msg->security & INLINE) ? _("PGP/M(i)ME") : _("(i)nline")); prompt = promptbuf; + /* L10N: The 'f' is from "forget it", an old undocumented synonym of + * 'clear'. Please use a corresponding letter in your language. + * Alternatively, you may duplicate the letter 'c' is translated to. + * This comment also applies to the five following letter sequences. */ letters = _("safcoi"); choices = "SaFCoi"; } diff --git a/smime.c b/smime.c index eebde5629..1d0095b2b 100644 --- a/smime.c +++ b/smime.c @@ -2052,6 +2052,10 @@ int smime_send_menu (HEADER *msg, int *redraw) if (option (OPTCRYPTOPPORTUNISTICENCRYPT) && (msg->security & OPPENCRYPT)) { prompt = _("S/MIME (s)ign, encrypt (w)ith, sign (a)s, (c)lear, or (o)ppenc mode off? "); + /* L10N: The 'f' is from "forget it", an old undocumented synonym of + * 'clear'. Please use a corresponding letter in your language. + * Alternatively, you may duplicate the letter 'c' is translated to. + * This comment also applies to the two following letter sequences. */ letters = _("swafco"); choices = "SwaFCo"; }