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~12^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43c7f136a2e6cf27ec8f45a67a2651692017ca10;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 9a05329ad..a6f5dc262 100644 --- a/commands.c +++ b/commands.c @@ -510,16 +510,17 @@ int mutt_select_sort(int reverse) { int method = Sort; /* save the current method in case of abort */ - switch (mutt_multi_choice( - reverse ? - /* L10N: The highlighted letters must match the "Sort" options */ - _("Rev-Sort " - "Date/Frm/Recv/Subj/tO/Thread/Unsort/siZe/sCore/sPam/Label?: ") : - /* L10N: The highlighted letters must match the "Rev-Sort" options */ - _("Sort " - "Date/Frm/Recv/Subj/tO/Thread/Unsort/siZe/sCore/sPam/Label?: "), - /* L10N: These must match the highlighted letters from "Sort" and "Rev-Sort" */ - _("dfrsotuzcpl"))) + switch (mutt_multi_choice(reverse ? + /* L10N: The highlighted letters must match the "Sort" options */ + _("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?: ") : + /* L10N: The highlighted letters must match the "Rev-Sort" options */ + _("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?: "), + /* L10N: These must match the highlighted letters from "Sort" and "Rev-Sort" */ + _("dfrsotuzcpl"))) { case -1: /* abort - don't resort */ return -1;