]> granicus.if.org Git - neomutt/commitdiff
i18n fixes.
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 27 Oct 1998 15:37:11 +0000 (15:37 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 27 Oct 1998 15:37:11 +0000 (15:37 +0000)
configure
configure.in
pgp.c

index 59eeeef28a7440c05c10c794e81bfc2653c0804c..3775369d8156f035e61c2d62210d4dc9e4936635 100755 (executable)
--- 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.
index 62875e7452882db77d7adba4096fce30d597b4fb..bfa67b716ec46b56f3b094d36a138cb956515602 100644 (file)
@@ -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 2c5bba294bdb6dd7d8403c1de0644902dbb26dfa..53da6c75babfff1cae2dda8453499ff7ba3f3fd1 100644 (file)
--- 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);
       }