This documents the 'f' "forget it" choice for translators.
Thanks to Benno Schulenberg for pointing this out and for the original
patch.
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";
}
_("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";
}
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";
}