From: Kevin McCarthy Date: Thu, 22 Mar 2018 19:29:59 +0000 (-0700) Subject: Change prompt string for $crypt_verify_sig X-Git-Tag: mutt-1-10-rel~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94b9549e1e7c94a7ab03a2168490016315658b24;p=mutt Change prompt string for $crypt_verify_sig Thanks to Michael Tatge for pointing out that the prompt is used for both PGP and S/MIME. --- diff --git a/commands.c b/commands.c index d1bf5d53..3654fc0d 100644 --- a/commands.c +++ b/commands.c @@ -87,7 +87,8 @@ int mutt_display_message (HEADER *cur) else if (cur->security & SIGN) { /* find out whether or not the verify signature */ - if (query_quadoption (OPT_VERIFYSIG, _("Verify PGP signature?")) == MUTT_YES) + /* L10N: Used for the $crypt_verify_sig prompt */ + if (query_quadoption (OPT_VERIFYSIG, _("Verify signature?")) == MUTT_YES) { cmflags |= MUTT_CM_VERIFY; }