From 2017ebcc35c9917c30c00bbd1e7c4114f67aade2 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Tue, 27 Nov 2018 19:06:42 -0800 Subject: [PATCH] Improve pgp error message for translation. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The past tense phrase makes it unclear whether the error is about a failed action or the state of the message. Thanks to Vincent Lefèvre for the improved wording suggestion. --- pgp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgp.c b/pgp.c index be182735..d61415fc 100644 --- a/pgp.c +++ b/pgp.c @@ -666,7 +666,7 @@ int pgp_application_pgp_handler (BODY *m, STATE *s) (not encrypting) something and (2) it is a plaintext. So the message does not mean "You failed to encrypt the message." */ - mutt_error _("PGP message was not encrypted."); + mutt_error _("PGP message is not encrypted."); else mutt_message _("PGP message successfully decrypted."); } -- 2.50.1