summaryrefslogtreecommitdiffstats
path: root/pgp.c
diff options
context:
space:
mode:
authorTAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp>2018-11-18 10:05:30 -0800
committerKevin McCarthy <kevin@8t8.us>2018-11-18 10:05:30 -0800
commit2a919856600e372da1dac25a1acfbcc8b3066e7b (patch)
tree6e04d968fc96bbb808e6a57197845504219a2b14 /pgp.c
parent5c1af7a43490b5a935357a9a52be6a4e514ec92a (diff)
Add L10N comments to several unclear messages.
Updating Japanese translation, I found that some of the updated messages were a little hard to understand without reading the code. Add comments to some messages I nearly translated in a wrong way.
Diffstat (limited to 'pgp.c')
-rw-r--r--pgp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/pgp.c b/pgp.c
index 776af84e..be182735 100644
--- a/pgp.c
+++ b/pgp.c
@@ -662,6 +662,10 @@ int pgp_application_pgp_handler (BODY *m, STATE *s)
if (could_not_decrypt || (decrypt_okay_rc <= -3))
mutt_error _("Could not decrypt PGP message");
else if (decrypt_okay_rc < 0)
+ /* L10N: You will see this error message if (1) you are decrypting
+ (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.");
else
mutt_message _("PGP message successfully decrypted.");