int reverse = (i == OP_SORT_REVERSE);
switch (mutt_multi_choice ((reverse) ?
+ /* L10N: The highlighted letters must match the "Sort" options */
_("Reverse sort by (d)ate, (a)lpha, si(z)e, d(e)scription, (c)ount, ne(w) count, or do(n)'t sort? ") :
+ /* L10N: The highlighted letters must match the "Reverse Sort" options */
_("Sort by (d)ate, (a)lpha, si(z)e, d(e)scription, (c)ount, ne(w) count, or do(n)'t sort? "),
+ /* L10N: These must match the highlighted letters from "Sort" and "Reverse Sort" */
_("dazecwn")))
{
case -1: /* abort */
continue;
s = uid->uid;
- /* L10N:
- Fill dots to make the DOTFILL entries the same length.
- In English, msgid "Fingerprint: " is the longest entry for this menu.
- Your language may vary. */
+ /* L10N: DOTFILL */
fputs (idx ? _(" aka ......: ") :_("Name ......: "), fp);
if (uid->invalid)
{
if (key->subkeys)
{
s = key->subkeys->fpr;
- /* L10N: DOTFILL */
+ /* L10N:
+ Fill dots to make the DOTFILL entries the same length.
+ In English, msgid "Fingerprint: " is the longest entry for this menu.
+ Your language may vary. */
fputs (_("Fingerprint: "), fp);
if (is_pgp && strlen (s) == 40)
{
{
if (is_smime)
{
+ /* L10N: S/MIME options (opportunistic encryption is on) */
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. */
+ /* L10N: S/MIME options (opportunistic encryption is on)
+ The 'f' is undocumented. Please duplicate the letter 'c' is translated into. */
letters = _("sapfco");
choices = "SapFCo";
}
else
{
+ /* L10N: PGP options (opportunistic encryption is on) */
prompt = _("PGP (s)ign, sign (a)s, s/(m)ime, (c)lear, or (o)ppenc mode off? ");
+ /* L10N: PGP options (opportunistic encryption is on)
+ The 'f' is undocumented. Please duplicate the letter 'c' is translated into. */
letters = _("samfco");
choices = "SamFCo";
}
{
if (is_smime)
{
+ /* L10N: S/MIME options (opportunistic encryption is off) */
prompt = _("S/MIME (e)ncrypt, (s)ign, sign (a)s, (b)oth, (p)gp, (c)lear, or (o)ppenc mode? ");
+ /* L10N: S/MIME options (opportunistic encryption is off)
+ The 'f' is undocumented. Please duplicate the letter 'c' is translated into. */
letters = _("esabpfco");
choices = "esabpfcO";
}
else
{
+ /* L10N: PGP options (opportunistic encryption is off) */
prompt = _("PGP (e)ncrypt, (s)ign, sign (a)s, (b)oth, s/(m)ime, (c)lear, or (o)ppenc mode? ");
+ /* L10N: PGP options (opportunistic encryption is off)
+ The 'f' is undocumented. Please duplicate the letter 'c' is translated into. */
letters = _("esabmfco");
choices = "esabmfcO";
}
{
if (is_smime)
{
+ /* L10N: S/MIME options */
prompt = _("S/MIME (e)ncrypt, (s)ign, sign (a)s, (b)oth, (p)gp or (c)lear? ");
+ /* L10N: S/MIME options
+ The 'f' is undocumented. Please duplicate the letter 'c' is translated into. */
letters = _("esabpfc");
choices = "esabpfc";
}
else
{
+ /* L10N: PGP options */
prompt = _("PGP (e)ncrypt, (s)ign, sign (a)s, (b)oth, s/(m)ime or (c)lear? ");
+ /* L10N: PGP options
+ The 'f' is undocumented. Please duplicate the letter 'c' is translated into. */
letters = _("esabmfc");
choices = "esabmfc";
}