]> granicus.if.org Git - neomutt/commitdiff
Change prompt string for $crypt_verify_sig
authorKevin McCarthy <kevin@8t8.us>
Thu, 22 Mar 2018 19:29:59 +0000 (12:29 -0700)
committerRichard Russon (DEPLOY) <rich@flatcap.org>
Wed, 9 May 2018 05:17:45 +0000 (06:17 +0100)
Thanks to Michael Tatge for pointing out that the prompt is used for
both PGP and S/MIME.

commands.c

index e0804b5bd1cf51b70ba3558d219f990d36221ea3..ace2e5faea22cae1aac4d1df4a5d5ee3200c13f4 100644 (file)
@@ -97,7 +97,8 @@ int mutt_display_message(struct Header *cur)
     else if (cur->security & SIGN)
     {
       /* find out whether or not the verify signature */
-      if (query_quadoption(CryptVerifySig, _("Verify PGP signature?")) == MUTT_YES)
+      /* L10N: Used for the $crypt_verify_sig prompt */
+      if (query_quadoption(CryptVerifySig, _("Verify signature?")) == MUTT_YES)
       {
         cmflags |= MUTT_CM_VERIFY;
       }