Mutt.pot file for 1.11 release
TAKAHASHI Tamotsu
ttakah at lapis.plala.or.jp
Sun Nov 18 15:36:54 UTC 2018
Hi translators,
Updating Japanese translation, I found that some of the updated messages
were a little hard to understand without reading the code.
So you should at least read the file UPDATING before updating your PO,
though Kevin said
> I don't think there were a lot of translation updates during this cycle,
> so this should hopefully be a quick update for you all.
Here are some messages I nearly translated in a wrong way:
--- 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;
}
--- a/crypt-gpgme.c
+++ b/crypt-gpgme.c
@@ -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);
--- 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.");
--- 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;
}
Also, the message
> #: ../keymap_alldefs.h:559
> msgid "calculate message statistics for all mailboxes"
explains the command <check-stats>, which manually re-counts
unread, flagged, and total messages in your mailboxes.
I hope the information above will save you some time.
Regards,
Tamo
More information about the Mutt-po
mailing list