summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2018-03-22 12:29:59 -0700
committerKevin McCarthy <kevin@8t8.us>2018-03-22 12:29:59 -0700
commit94b9549e1e7c94a7ab03a2168490016315658b24 (patch)
tree7ef598e55a103f194c44894438aa4328c8382119 /commands.c
parente275bb0622b868de855fcdcbcc78786f31141a08 (diff)
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.
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c3
1 files changed, 2 insertions, 1 deletions
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;
}