]> granicus.if.org Git - mutt/commitdiff
Add L10N comments to several unclear messages.
authorTAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp>
Sun, 18 Nov 2018 18:05:30 +0000 (10:05 -0800)
committerKevin McCarthy <kevin@8t8.us>
Sun, 18 Nov 2018 18:05:30 +0000 (10:05 -0800)
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.

account.c
crypt-gpgme.c
pgp.c
recvcmd.c

index 9e7f915416ac5ac437ed243fd5e58cf46780be9a..0cfea974ebc2c70bba6d35edef4d2c322b3d3c12 100644 (file)
--- a/account.c
+++ b/account.c
@@ -276,6 +276,11 @@ char* mutt_account_getoauthbearer (ACCOUNT* account)
 
   if (cmd == NULL)
   {
+    /* L10N: You will see this error message if (1) you have "oauthbearer" in
+       one of your $*_authenticators and (2) you do not have the corresponding
+       $*_oauth_refresh_command defined. So the message does not mean "None of
+       your $*_oauth_refresh_command's are defined."
+     */
     mutt_error (_("mutt_account_getoauthbearer: No OAUTH refresh command defined"));
     return NULL;
   }
index f2af89860a0997cc08d960a52df939b9cb936c58..47be23bb103fe02c9061a6bd97378f60dda998f4 100644 (file)
@@ -1383,6 +1383,9 @@ static void print_smime_keyinfo (const char* msg, gpgme_signature_t sig,
   else
   {
     if (sig->fpr == NULL)
+      /* L10N: You will see this message in place of "KeyID "
+         if the S/MIME key has no ID. This is quite an error.
+       */
       state_puts (_("no signature fingerprint available"), s);
     else {
       state_puts (_("KeyID "), s);
diff --git a/pgp.c b/pgp.c
index 776af84ed39d0d1ca53db628a34e8131e1b55e8c..be1827355b2fc1a57f64ed30c306e920495c8002 100644 (file)
--- 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.");
index 32060f4b06fd3cf708305361bee9d9170bce3027..74dbf6c370961a6931070d70c778dbb7c011cba9 100644 (file)
--- a/recvcmd.c
+++ b/recvcmd.c
@@ -714,6 +714,9 @@ void mutt_attach_mail_sender (FILE *fp, HEADER *hdr, ATTACH_CONTEXT *actx,
 
   if (check_all_msg (actx, cur, 0) == -1)
   {
+    /* L10N: You will see this error message if you invoke <compose-to-sender>
+       when you are on a normal attachment.
+     */
     mutt_error _("You may only compose to sender with message/rfc822 parts.");
     return;
   }