From: Kevin McCarthy Date: Tue, 18 Apr 2017 00:40:14 +0000 (-0700) Subject: Change the sort prompt to use (s)ort style prompts. X-Git-Tag: neomutt-20170421~2^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=590f2aeef4d874f074622fc71fb5ca2cf62d7fb0;p=neomutt Change the sort prompt to use (s)ort style prompts. This is consistent with the rest of mutt, and in my opinion, more readable. --- diff --git a/commands.c b/commands.c index 5e9c46cc6..1b81a2f1b 100644 --- a/commands.c +++ b/commands.c @@ -533,12 +533,13 @@ int mutt_select_sort (int reverse) switch (mutt_multi_choice (reverse ? /* L10N: The following three are the sort/reverse sort prompts. - * Capital letters must match the order of the characters in the third - * string. + * Letters must match the order of the characters in the third + * string. Note that mutt now supports multiline prompts, so + * it's okay for the translation to take up to three lines. */ - _("Rev-Sort Date/Frm/Recv/Subj/tO/Thread/Unsort/siZe/sCore/sPam/Label?: ") : - _("Sort Date/Frm/Recv/Subj/tO/Thread/Unsort/siZe/sCore/sPam/Label?: "), - _("dfrsotuzcpl"))) + _("Rev-Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore/s(p)am/(l)abel?: ") : + _("Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore/s(p)am/(l)abel?: "), + _("dfrsotuzcpl"))) { case -1: /* abort - don't resort */ return -1;