]> granicus.if.org Git - mutt/commitdiff
Change prompt string for $crypt_verify_sig
authorKevin McCarthy <kevin@8t8.us>
Thu, 22 Mar 2018 19:29:59 +0000 (12:29 -0700)
committerKevin McCarthy <kevin@8t8.us>
Thu, 22 Mar 2018 19:29:59 +0000 (12:29 -0700)
Thanks to Michael Tatge for pointing out that the prompt is used for
both PGP and S/MIME.

commands.c

index d1bf5d53d4fe0264b432b51eacf636147ae34113..3654fc0d93d18d48daa681cb29dbbf95f2ae7719 100644 (file)
@@ -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;
       }