From: Thomas Roessler Date: Tue, 27 Oct 1998 15:37:11 +0000 (+0000) Subject: i18n fixes. X-Git-Tag: mutt-0-94-15-rel~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=450305695cd99f2329e2e4e0e235a63173ca43c8;p=mutt i18n fixes. --- diff --git a/configure b/configure index 59eeeef2..3775369d 100755 --- a/configure +++ b/configure @@ -817,7 +817,7 @@ fi -ALL_LINGUAS="de ru it" +ALL_LINGUAS="de ru it es" # Make sure we can run config.sub. diff --git a/configure.in b/configure.in index 62875e74..bfa67b71 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_INIT(mutt.h) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(mutt, `cat $srcdir/VERSION`) -ALL_LINGUAS="de ru it" +ALL_LINGUAS="de ru it es" AC_CANONICAL_HOST diff --git a/pgp.c b/pgp.c index 2c5bba29..53da6c75 100644 --- a/pgp.c +++ b/pgp.c @@ -351,11 +351,11 @@ void application_pgp_handler (BODY *m, STATE *s) if(s->flags & M_DISPLAY) { if (needpass) - state_puts ("[-- BEGIN PGP MESSAGE --]\n\n", s); + state_puts (_("[-- BEGIN PGP MESSAGE --]\n\n"), s); else if (pgp_keyblock) - state_puts ("[-- BEGIN PGP PUBLIC KEY BLOCK --]\n", s); + state_puts (_("[-- BEGIN PGP PUBLIC KEY BLOCK --]\n"), s); else - state_puts ("[-- BEGIN PGP SIGNED MESSAGE --]\n\n", s); + state_puts (_("[-- BEGIN PGP SIGNED MESSAGE --]\n\n"), s); } /* Use PGP's output if there was no clearsig signature. */ @@ -457,9 +457,9 @@ void application_pgp_handler (BODY *m, STATE *s) if (s->flags & M_DISPLAY) { if (needpass) - state_puts ("\n[-- END PGP MESSAGE --]\n", s); + state_puts (_("\n[-- END PGP MESSAGE --]\n"), s); else if (pgp_keyblock) - state_puts ("[-- END PGP PUBLIC KEY BLOCK --]\n", s); + state_puts (_("[-- END PGP PUBLIC KEY BLOCK --]\n"), s); else state_puts ("\n[-- END PGP SIGNED MESSAGE --]\n", s); }