1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-13 00:09:51 +02:00

Ready for version 0.4.4

This commit is contained in:
Werner Koch 1998-11-20 19:22:58 +00:00
parent 47c61bafe3
commit 710d2e351b
16 changed files with 424 additions and 379 deletions

View File

@ -1,3 +1,9 @@
Fri Nov 20 19:34:57 1998 Werner Koch (wk@isil.d.shuttle.de)
* VERSION: Released 0.4.4
* configure.in (try_asm_modules): For option --disable-asm
Tue Nov 10 19:32:40 1998 Werner Koch (wk@isil.d.shuttle.de) Tue Nov 10 19:32:40 1998 Werner Koch (wk@isil.d.shuttle.de)
* configure.in (MPI_SFLAGS): New. * configure.in (MPI_SFLAGS): New.

View File

@ -28,6 +28,8 @@ Configure options for GNUPG
--disable-dynload If you have problems with dynamic loading, this option --disable-dynload If you have problems with dynamic loading, this option
disables all dynamic loading stuff. disables all dynamic loading stuff.
--disable-asm Do not use assembler modules.
Problems Problems
@ -42,7 +44,7 @@ If you have other compile problems, try the configure options
or --disable-dynload. or --disable-dynload.
I can't check all assembler files, so if you have problems assembling them I can't check all assembler files, so if you have problems assembling them
(or the program crashes), simply delete the files in the mpi/<cpu> directory. (or the program crashes) use --disable-asm with ./configure.
The configure scripts may consider several subdirectories to get all The configure scripts may consider several subdirectories to get all
available assembler files; be sure to delete the correct ones. The available assembler files; be sure to delete the correct ones. The
assembler replacements are in C and in mpi/generic; never delete udiv-qrnnd.S assembler replacements are in C and in mpi/generic; never delete udiv-qrnnd.S

4
NEWS
View File

@ -1,5 +1,5 @@
This is NOT a released version! Noteworthy changes in version 0.4.4
------------------------------- -----------------------------------
* Fixed the way the key expiration time is stored. If you have * Fixed the way the key expiration time is stored. If you have
an expiration time on your key you should fix it with --edit-key an expiration time on your key you should fix it with --edit-key

10
README
View File

@ -334,11 +334,11 @@
-----BEGIN PGP SIGNATURE----- -----BEGIN PGP SIGNATURE-----
Version: GNUPG v0.4.2 (GNU/Linux) Version: GnuPG v0.4.4 (GNU/Linux)
Comment: For info finger gcrypt@ftp.guug.de Comment: For info finger gcrypt@ftp.guug.de
iQB1AwUBNkXLyx0Z9MEMmFelAQExuwMArLtkLI3vpxZ7tCoit6hELkpyEHe10Bo6 iQB1AwUBNlXAUh0Z9MEMmFelAQFmhwL/RfW9WxAMTh/edDy0yGTJjDgo7d/Kfmtq
Ms72TXasJ8L0tKNKRE2kagV7Ie7wxl0dyENlumOxsZIKLq8DGSyjSoE7GmMQEEff 8C0LJ4b2M0py1ctW6jZyiQsYtvkrttKiTYXGtRoIzVFWX2hqABKPCTHzOeXQEOSu
ZU+4xpO3KMw6XpJMvUWwlxpm2/WDpYTa ro5fnRwsuj9cRxhH8lpN+diY+m1E5Fu3
=Y10x =sciv
-----END PGP SIGNATURE----- -----END PGP SIGNATURE-----

18
TODO
View File

@ -1,5 +1,11 @@
* hash calculation for cleartext sigs without a "Hash: xxx" line * Check revocation and expire stuff.
* Check calculation of key validity.
* preferences of hash algorithms are not yet used.
* Hash calculation for cleartext sigs without a "Hash: xxx" line
does it work as specified in the RFC? - Hmmm, I think so does it work as specified in the RFC? - Hmmm, I think so
* Check Berkeley BD - it is in glibc -any licensing problems? * Check Berkeley BD - it is in glibc -any licensing problems?
@ -10,9 +16,7 @@
* Update the keyring at ftp.guug.de * Update the keyring at ftp.guug.de
* expire date is not shown in --edit-key for subkeys. * check support for mpi/powerpc (see Brian's mail)
* check support for mpi/powerpc
* use zlib 1.1.13 to avoid a bug with 13 bit windows * use zlib 1.1.13 to avoid a bug with 13 bit windows
but there are more problems with large files but there are more problems with large files
@ -26,8 +30,6 @@
* clearsig: keep lineendings as they are. Remember that trailings * clearsig: keep lineendings as they are. Remember that trailings
blanks are not hashed. blanks are not hashed.
* Check revocation and expire stuff.
* Always use the latest key signature (import). This is needed, so * Always use the latest key signature (import). This is needed, so
that we are able to chnage the expiration time or other info in the that we are able to chnage the expiration time or other info in the
selfsignature selfsignature
@ -49,8 +51,6 @@
* new menu to delete signatures and list signature in menu * new menu to delete signatures and list signature in menu
* commandline controlled --edit-key with assumed save.
* -rdynamic auf Solaris Problem * -rdynamic auf Solaris Problem
* Replace the SIGUSR1 stuff by semaphores to avoid loss of a signal. * Replace the SIGUSR1 stuff by semaphores to avoid loss of a signal.
@ -60,8 +60,6 @@
* add some sanity checks to read_keyblock, so that we are sure that * add some sanity checks to read_keyblock, so that we are sure that
the minimal requirements are met (?) the minimal requirements are met (?)
* preferences of hash algorithms are not yet used.
* rewrite --list-packets or put it into another tool. * rewrite --list-packets or put it into another tool.
* Burn the buffers used by fopen(), or use read(2). Does this * Burn the buffers used by fopen(), or use read(2). Does this

View File

@ -1 +1 @@
0.4.3c 0.4.4

View File

@ -20,13 +20,23 @@ AC_SUBST(PACKAGE)
AC_DEFINE_UNQUOTED(VERSION, "$VERSION") AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
AC_MSG_CHECKING([whether use of /dev/random is requested])
AC_ARG_ENABLE(dev-random, AC_ARG_ENABLE(dev-random,
[ --disable-dev-random disable the use of dev random], [ --disable-dev-random disable the use of dev random],
try_dev_random=$enableval, try_dev_random=yes) try_dev_random=$enableval, try_dev_random=yes)
AC_MSG_RESULT($try_dev_random)
AC_MSG_CHECKING([whether use of extensions is requested])
AC_ARG_ENABLE(dynload, AC_ARG_ENABLE(dynload,
[ --disable-dynload disable dynamic loading], [ --disable-dynload disable use of extensions],
try_dynload=$enableval, try_dynload=yes) try_dynload=$enableval, try_dynload=yes)
AC_MSG_RESULT($try_dynload)
AC_MSG_CHECKING([whether assembler modules are requested])
AC_ARG_ENABLE(asm,
[ --disable-asm do not use assembler modules],
try_asm_modules=$enableval, try_asm_modules=yes)
AC_MSG_RESULT($try_asm_modules)
AC_MSG_CHECKING([whether memory debugging is requested]) AC_MSG_CHECKING([whether memory debugging is requested])
AC_ARG_ENABLE(m-debug, AC_ARG_ENABLE(m-debug,

View File

@ -4,6 +4,8 @@ Fri Nov 20 16:54:52 1998 Werner Koch (wk@isil.d.shuttle.de)
* sign.c (write_dashed_escaped): Ditto. * sign.c (write_dashed_escaped): Ditto.
* armor.c (find_header): Support for NotDashEscaped header. * armor.c (find_header): Support for NotDashEscaped header.
* getkey.c: print "disabled cache.." only if verbose is used.
Thu Nov 19 07:17:31 1998 Werner Koch <werner.koch@guug.de> Thu Nov 19 07:17:31 1998 Werner Koch <werner.koch@guug.de>
* parse-packet.c (dump_sig_subpkt): Fixed expire listing * parse-packet.c (dump_sig_subpkt): Fixed expire listing

View File

@ -160,6 +160,7 @@ cache_public_key( PKT_public_key *pk )
if( pk_cache_entries >= MAX_PK_CACHE_ENTRIES ) { if( pk_cache_entries >= MAX_PK_CACHE_ENTRIES ) {
/* fixme: use another algorithm to free some cache slots */ /* fixme: use another algorithm to free some cache slots */
pk_cache_disabled=1; pk_cache_disabled=1;
if( opt.verbose )
log_info(_("too many entries in pk cache - disabled\n")); log_info(_("too many entries in pk cache - disabled\n"));
return; return;
} }
@ -258,6 +259,7 @@ get_pubkey( PKT_public_key *pk, u32 *keyid )
; ;
else if( ++unk_cache_entries > MAX_UNK_CACHE_ENTRIES ) { else if( ++unk_cache_entries > MAX_UNK_CACHE_ENTRIES ) {
unk_cache_disabled = 1; unk_cache_disabled = 1;
if( opt.verbose )
log_info(_("too many entries in unk cache - disabled\n")); log_info(_("too many entries in unk cache - disabled\n"));
} }
else { else {

View File

@ -10,6 +10,7 @@ test -d ./mpi || mkdir ./mpi
echo '/* created by config.links - do not edit */' >./mpi/asm-syntax.h echo '/* created by config.links - do not edit */' >./mpi/asm-syntax.h
if test "$try_asm_modules" = "yes" ; then
case "${target}" in case "${target}" in
i[34]86*-*-freebsd*-elf | i[34]86*-*-freebsd3*) i[34]86*-*-freebsd*-elf | i[34]86*-*-freebsd3*)
echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h
@ -151,6 +152,10 @@ case "${target}" in
path="" path=""
;; ;;
esac esac
else
echo '/* Assembler modules disabled on request */' >>./mpi/asm-syntax.h
path=""
fi
case "${target}" in case "${target}" in

View File

@ -4,7 +4,7 @@
# #
msgid "" msgid ""
msgstr "" msgstr ""
"POT-Creation-Date: 1998-11-20 15:17+0100\n" "POT-Creation-Date: 1998-11-20 19:52+0100\n"
"PO-Revision-Date: 1998-11-18 20:10+0200\n" "PO-Revision-Date: 1998-11-18 20:10+0200\n"
"Last-Translator: Walter Koch <walterk@mail.dip.de>\n" "Last-Translator: Walter Koch <walterk@mail.dip.de>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
@ -757,45 +757,45 @@ msgstr "Ung
msgid "armor: %s\n" msgid "armor: %s\n"
msgstr "ASCII-Hülle: %s\n" msgstr "ASCII-Hülle: %s\n"
#: g10/armor.c:530 #: g10/armor.c:532
msgid "invalid dash escaped line: " msgid "invalid dash escaped line: "
msgstr "Ungültige mit Bindestrich \"escapte\" Zeile: " msgstr "Ungültige mit Bindestrich \"escapte\" Zeile: "
#: g10/armor.c:599 #: g10/armor.c:601
msgid "invalid clear text header: " msgid "invalid clear text header: "
msgstr "ungültige Klartexteinleitung" msgstr "ungültige Klartexteinleitung"
#: g10/armor.c:841 #: g10/armor.c:843
#, fuzzy, c-format #, fuzzy, c-format
msgid "invalid radix64 character %02x skipped\n" msgid "invalid radix64 character %02x skipped\n"
msgstr "Ungültiges \"radix64\" Zeichen %02x ignoriert\n" msgstr "Ungültiges \"radix64\" Zeichen %02x ignoriert\n"
#: g10/armor.c:874 #: g10/armor.c:876
msgid "premature eof (no CRC)\n" msgid "premature eof (no CRC)\n"
msgstr "vorzeitiges Dateiende (keine Prüfsumme)\n" msgstr "vorzeitiges Dateiende (keine Prüfsumme)\n"
#: g10/armor.c:893 #: g10/armor.c:895
msgid "premature eof (in CRC)\n" msgid "premature eof (in CRC)\n"
msgstr "vorzeitiges Dateiende (innerhalb der Prüfsumme)\n" msgstr "vorzeitiges Dateiende (innerhalb der Prüfsumme)\n"
#: g10/armor.c:897 #: g10/armor.c:899
msgid "malformed CRC\n" msgid "malformed CRC\n"
msgstr "Falsch aufgebaute Prüfsumme\n" msgstr "Falsch aufgebaute Prüfsumme\n"
#: g10/armor.c:901 #: g10/armor.c:903
#, c-format #, c-format
msgid "CRC error; %06lx - %06lx\n" msgid "CRC error; %06lx - %06lx\n"
msgstr "Prüfsummenfehler; %06lx - %06lx\n" msgstr "Prüfsummenfehler; %06lx - %06lx\n"
#: g10/armor.c:920 #: g10/armor.c:922
msgid "premature eof (in Trailer)\n" msgid "premature eof (in Trailer)\n"
msgstr "vorzeitiges Dateiende (im Nachsatz)\n" msgstr "vorzeitiges Dateiende (im Nachsatz)\n"
#: g10/armor.c:924 #: g10/armor.c:926
msgid "error in trailer line\n" msgid "error in trailer line\n"
msgstr "Fehler in der Nachsatzzeile\n" msgstr "Fehler in der Nachsatzzeile\n"
#: g10/armor.c:1178 #: g10/armor.c:1180
msgid "no valid RFC1991 or OpenPGP data found.\n" msgid "no valid RFC1991 or OpenPGP data found.\n"
msgstr "Keine gültigen RFC1991- oder OpenPGP-Daten gefunden.\n" msgstr "Keine gültigen RFC1991- oder OpenPGP-Daten gefunden.\n"
@ -1396,15 +1396,15 @@ msgstr "%s verschl
msgid "WARNING: nothing exported\n" msgid "WARNING: nothing exported\n"
msgstr "WARNUNG: Ein Schlüssel ohne gesichertes Vertrauen wird benutzt!\n" msgstr "WARNUNG: Ein Schlüssel ohne gesichertes Vertrauen wird benutzt!\n"
#: g10/getkey.c:163 #: g10/getkey.c:164
msgid "too many entries in pk cache - disabled\n" msgid "too many entries in pk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:261 #: g10/getkey.c:263
msgid "too many entries in unk cache - disabled\n" msgid "too many entries in unk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:967 #: g10/getkey.c:969
#, c-format #, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n" msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "" msgstr ""
@ -2108,15 +2108,19 @@ msgid "Changing exiration time for the primary key.\n"
msgstr "Ändern des Verfallsdatums des Hauptschlüssels.\n" msgstr "Ändern des Verfallsdatums des Hauptschlüssels.\n"
#: g10/keyedit.c:1250 #: g10/keyedit.c:1250
msgid "You can't change the expiration date of a v3 key\n"
msgstr ""
#: g10/keyedit.c:1266
msgid "No corresponding signature in secret ring\n" msgid "No corresponding signature in secret ring\n"
msgstr "Keine entsprechende Signatur im geheimen Schlüsselbund\n" msgstr "Keine entsprechende Signatur im geheimen Schlüsselbund\n"
#: g10/keyedit.c:1310 #: g10/keyedit.c:1326
#, c-format #, c-format
msgid "No user id with index %d\n" msgid "No user id with index %d\n"
msgstr "Keine User-ID mit Index %d\n" msgstr "Keine User-ID mit Index %d\n"
#: g10/keyedit.c:1355 #: g10/keyedit.c:1371
#, c-format #, c-format
msgid "No secondary key with index %d\n" msgid "No secondary key with index %d\n"
msgstr "Kein Zweitschlüssel mit Index %d\n" msgstr "Kein Zweitschlüssel mit Index %d\n"
@ -2152,33 +2156,33 @@ msgstr ""
msgid "original file name='%.*s'\n" msgid "original file name='%.*s'\n"
msgstr "" msgstr ""
#: g10/mainproc.c:837 #: g10/mainproc.c:833
msgid "signature verification suppressed\n" msgid "signature verification suppressed\n"
msgstr "" msgstr ""
#: g10/mainproc.c:843 #: g10/mainproc.c:839
#, c-format #, c-format
msgid "Signature made %.*s using %s key ID %08lX\n" msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Signatur am %.*s mit %s Schlüssel %08lX erzeugt\n" msgstr "Signatur am %.*s mit %s Schlüssel %08lX erzeugt\n"
#: g10/mainproc.c:851 #: g10/mainproc.c:847
msgid "BAD signature from \"" msgid "BAD signature from \""
msgstr "FALSCHE Signatur von \"" msgstr "FALSCHE Signatur von \""
#: g10/mainproc.c:852 #: g10/mainproc.c:848
msgid "Good signature from \"" msgid "Good signature from \""
msgstr "Gültige Signatur von \"" msgstr "Gültige Signatur von \""
#: g10/mainproc.c:865 #: g10/mainproc.c:861
#, c-format #, c-format
msgid "Can't check signature: %s\n" msgid "Can't check signature: %s\n"
msgstr "Signatur kann nicht geprüft werden: %s\n" msgstr "Signatur kann nicht geprüft werden: %s\n"
#: g10/mainproc.c:938 #: g10/mainproc.c:934
msgid "old style (PGP 2.x) signature\n" msgid "old style (PGP 2.x) signature\n"
msgstr "" msgstr ""
#: g10/mainproc.c:943 #: g10/mainproc.c:939
msgid "invalid root packet detected in proc_tree()\n" msgid "invalid root packet detected in proc_tree()\n"
msgstr "" msgstr ""

View File

@ -1,6 +1,6 @@
msgid "" msgid ""
msgstr "" msgstr ""
"POT-Creation-Date: 1998-11-20 15:17+0100\n" "POT-Creation-Date: 1998-11-20 19:52+0100\n"
"Content-Type: text/plain; charset=\n" "Content-Type: text/plain; charset=\n"
"Date: 1998-08-08 18:07:50+0200\n" "Date: 1998-08-08 18:07:50+0200\n"
"From: Werner Koch <wk@frodo>\n" "From: Werner Koch <wk@frodo>\n"
@ -710,45 +710,45 @@ msgstr ""
msgid "armor: %s\n" msgid "armor: %s\n"
msgstr "" msgstr ""
#: g10/armor.c:530 #: g10/armor.c:532
msgid "invalid dash escaped line: " msgid "invalid dash escaped line: "
msgstr "" msgstr ""
#: g10/armor.c:599 #: g10/armor.c:601
msgid "invalid clear text header: " msgid "invalid clear text header: "
msgstr "" msgstr ""
#: g10/armor.c:841 #: g10/armor.c:843
#, c-format #, c-format
msgid "invalid radix64 character %02x skipped\n" msgid "invalid radix64 character %02x skipped\n"
msgstr "" msgstr ""
#: g10/armor.c:874 #: g10/armor.c:876
msgid "premature eof (no CRC)\n" msgid "premature eof (no CRC)\n"
msgstr "" msgstr ""
#: g10/armor.c:893 #: g10/armor.c:895
msgid "premature eof (in CRC)\n" msgid "premature eof (in CRC)\n"
msgstr "" msgstr ""
#: g10/armor.c:897 #: g10/armor.c:899
msgid "malformed CRC\n" msgid "malformed CRC\n"
msgstr "" msgstr ""
#: g10/armor.c:901 #: g10/armor.c:903
#, c-format #, c-format
msgid "CRC error; %06lx - %06lx\n" msgid "CRC error; %06lx - %06lx\n"
msgstr "" msgstr ""
#: g10/armor.c:920 #: g10/armor.c:922
msgid "premature eof (in Trailer)\n" msgid "premature eof (in Trailer)\n"
msgstr "" msgstr ""
#: g10/armor.c:924 #: g10/armor.c:926
msgid "error in trailer line\n" msgid "error in trailer line\n"
msgstr "" msgstr ""
#: g10/armor.c:1178 #: g10/armor.c:1180
msgid "no valid RFC1991 or OpenPGP data found.\n" msgid "no valid RFC1991 or OpenPGP data found.\n"
msgstr "" msgstr ""
@ -1297,15 +1297,15 @@ msgstr ""
msgid "WARNING: nothing exported\n" msgid "WARNING: nothing exported\n"
msgstr "" msgstr ""
#: g10/getkey.c:163 #: g10/getkey.c:164
msgid "too many entries in pk cache - disabled\n" msgid "too many entries in pk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:261 #: g10/getkey.c:263
msgid "too many entries in unk cache - disabled\n" msgid "too many entries in unk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:967 #: g10/getkey.c:969
#, c-format #, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n" msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "" msgstr ""
@ -1974,15 +1974,19 @@ msgid "Changing exiration time for the primary key.\n"
msgstr "" msgstr ""
#: g10/keyedit.c:1250 #: g10/keyedit.c:1250
msgid "You can't change the expiration date of a v3 key\n"
msgstr ""
#: g10/keyedit.c:1266
msgid "No corresponding signature in secret ring\n" msgid "No corresponding signature in secret ring\n"
msgstr "" msgstr ""
#: g10/keyedit.c:1310 #: g10/keyedit.c:1326
#, c-format #, c-format
msgid "No user id with index %d\n" msgid "No user id with index %d\n"
msgstr "" msgstr ""
#: g10/keyedit.c:1355 #: g10/keyedit.c:1371
#, c-format #, c-format
msgid "No secondary key with index %d\n" msgid "No secondary key with index %d\n"
msgstr "" msgstr ""
@ -2014,33 +2018,33 @@ msgstr ""
msgid "original file name='%.*s'\n" msgid "original file name='%.*s'\n"
msgstr "" msgstr ""
#: g10/mainproc.c:837 #: g10/mainproc.c:833
msgid "signature verification suppressed\n" msgid "signature verification suppressed\n"
msgstr "" msgstr ""
#: g10/mainproc.c:843 #: g10/mainproc.c:839
#, c-format #, c-format
msgid "Signature made %.*s using %s key ID %08lX\n" msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "" msgstr ""
#: g10/mainproc.c:851 #: g10/mainproc.c:847
msgid "BAD signature from \"" msgid "BAD signature from \""
msgstr "" msgstr ""
#: g10/mainproc.c:852 #: g10/mainproc.c:848
msgid "Good signature from \"" msgid "Good signature from \""
msgstr "" msgstr ""
#: g10/mainproc.c:865 #: g10/mainproc.c:861
#, c-format #, c-format
msgid "Can't check signature: %s\n" msgid "Can't check signature: %s\n"
msgstr "" msgstr ""
#: g10/mainproc.c:938 #: g10/mainproc.c:934
msgid "old style (PGP 2.x) signature\n" msgid "old style (PGP 2.x) signature\n"
msgstr "" msgstr ""
#: g10/mainproc.c:943 #: g10/mainproc.c:939
msgid "invalid root packet detected in proc_tree()\n" msgid "invalid root packet detected in proc_tree()\n"
msgstr "" msgstr ""

View File

@ -5,7 +5,7 @@
# I also got inspiration from it.po by Marco d'Itri <md@linux.it> # I also got inspiration from it.po by Marco d'Itri <md@linux.it>
msgid "" msgid ""
msgstr "" msgstr ""
"POT-Creation-Date: 1998-11-20 15:17+0100\n" "POT-Creation-Date: 1998-11-20 19:52+0100\n"
"Content-Type: text/plain; charset=iso-8859-1\n" "Content-Type: text/plain; charset=iso-8859-1\n"
"Date: 1998-11-13 10:49:25+0100\n" "Date: 1998-11-13 10:49:25+0100\n"
"From: Urko Lusa <ulusa@lacueva.ddns.org>\n" "From: Urko Lusa <ulusa@lacueva.ddns.org>\n"
@ -742,45 +742,45 @@ msgstr "cabecera de armadura no v
msgid "armor: %s\n" msgid "armor: %s\n"
msgstr "armadura: %s\n" msgstr "armadura: %s\n"
#: g10/armor.c:530 #: g10/armor.c:532
msgid "invalid dash escaped line: " msgid "invalid dash escaped line: "
msgstr "Línea con guiones no válida: " msgstr "Línea con guiones no válida: "
#: g10/armor.c:599 #: g10/armor.c:601
msgid "invalid clear text header: " msgid "invalid clear text header: "
msgstr "cabecera de texto claro no válida: " msgstr "cabecera de texto claro no válida: "
#: g10/armor.c:841 #: g10/armor.c:843
#, c-format #, c-format
msgid "invalid radix64 character %02x skipped\n" msgid "invalid radix64 character %02x skipped\n"
msgstr "caracteres no válidos radix64 %02x ignorados\n" msgstr "caracteres no válidos radix64 %02x ignorados\n"
#: g10/armor.c:874 #: g10/armor.c:876
msgid "premature eof (no CRC)\n" msgid "premature eof (no CRC)\n"
msgstr "Fin de fichero prematuro\n" msgstr "Fin de fichero prematuro\n"
#: g10/armor.c:893 #: g10/armor.c:895
msgid "premature eof (in CRC)\n" msgid "premature eof (in CRC)\n"
msgstr "Fin de suma de comprobación prematuro\n" msgstr "Fin de suma de comprobación prematuro\n"
#: g10/armor.c:897 #: g10/armor.c:899
msgid "malformed CRC\n" msgid "malformed CRC\n"
msgstr "Suma de comprobación mal creada\n" msgstr "Suma de comprobación mal creada\n"
#: g10/armor.c:901 #: g10/armor.c:903
#, c-format #, c-format
msgid "CRC error; %06lx - %06lx\n" msgid "CRC error; %06lx - %06lx\n"
msgstr "Error en suma de comprobación: %06lx - %06lx\n" msgstr "Error en suma de comprobación: %06lx - %06lx\n"
#: g10/armor.c:920 #: g10/armor.c:922
msgid "premature eof (in Trailer)\n" msgid "premature eof (in Trailer)\n"
msgstr "" msgstr ""
#: g10/armor.c:924 #: g10/armor.c:926
msgid "error in trailer line\n" msgid "error in trailer line\n"
msgstr "" msgstr ""
#: g10/armor.c:1178 #: g10/armor.c:1180
msgid "no valid RFC1991 or OpenPGP data found.\n" msgid "no valid RFC1991 or OpenPGP data found.\n"
msgstr "RFC1991 no válida o datos OpenPGP no encontrados\n" msgstr "RFC1991 no válida o datos OpenPGP no encontrados\n"
@ -1372,15 +1372,15 @@ msgstr "%s cifrado para: %s\n"
msgid "WARNING: nothing exported\n" msgid "WARNING: nothing exported\n"
msgstr "ATENCIÓN: ¡Usando una clave no fiable!\n" msgstr "ATENCIÓN: ¡Usando una clave no fiable!\n"
#: g10/getkey.c:163 #: g10/getkey.c:164
msgid "too many entries in pk cache - disabled\n" msgid "too many entries in pk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:261 #: g10/getkey.c:263
msgid "too many entries in unk cache - disabled\n" msgid "too many entries in unk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:967 #: g10/getkey.c:969
#, c-format #, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n" msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "usando clave secundaria %08lX en vez de clave primaria %08lX\n" msgstr "usando clave secundaria %08lX en vez de clave primaria %08lX\n"
@ -2058,15 +2058,19 @@ msgid "Changing exiration time for the primary key.\n"
msgstr "Cambiando caducidad de clave primaria.\n" msgstr "Cambiando caducidad de clave primaria.\n"
#: g10/keyedit.c:1250 #: g10/keyedit.c:1250
msgid "You can't change the expiration date of a v3 key\n"
msgstr ""
#: g10/keyedit.c:1266
msgid "No corresponding signature in secret ring\n" msgid "No corresponding signature in secret ring\n"
msgstr "No hay firma correspondiente en anillo secreto\n" msgstr "No hay firma correspondiente en anillo secreto\n"
#: g10/keyedit.c:1310 #: g10/keyedit.c:1326
#, c-format #, c-format
msgid "No user id with index %d\n" msgid "No user id with index %d\n"
msgstr "No hay ningún identificativo de usuario con el índice %d\n" msgstr "No hay ningún identificativo de usuario con el índice %d\n"
#: g10/keyedit.c:1355 #: g10/keyedit.c:1371
#, c-format #, c-format
msgid "No secondary key with index %d\n" msgid "No secondary key with index %d\n"
msgstr "No hay ninguna clave secundaria con el índice %d\n" msgstr "No hay ninguna clave secundaria con el índice %d\n"
@ -2101,33 +2105,33 @@ msgstr "nota: el remitente solicit
msgid "original file name='%.*s'\n" msgid "original file name='%.*s'\n"
msgstr "" msgstr ""
#: g10/mainproc.c:837 #: g10/mainproc.c:833
msgid "signature verification suppressed\n" msgid "signature verification suppressed\n"
msgstr "" msgstr ""
#: g10/mainproc.c:843 #: g10/mainproc.c:839
#, c-format #, c-format
msgid "Signature made %.*s using %s key ID %08lX\n" msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Firma creada %.*s usando identificativo de clave %08lX\n" msgstr "Firma creada %.*s usando identificativo de clave %08lX\n"
#: g10/mainproc.c:851 #: g10/mainproc.c:847
msgid "BAD signature from \"" msgid "BAD signature from \""
msgstr "Firma INCORRECTA de \"" msgstr "Firma INCORRECTA de \""
#: g10/mainproc.c:852 #: g10/mainproc.c:848
msgid "Good signature from \"" msgid "Good signature from \""
msgstr "Firma correcta de \"" msgstr "Firma correcta de \""
#: g10/mainproc.c:865 #: g10/mainproc.c:861
#, c-format #, c-format
msgid "Can't check signature: %s\n" msgid "Can't check signature: %s\n"
msgstr "Imposible comprobar la firma: %s\n" msgstr "Imposible comprobar la firma: %s\n"
#: g10/mainproc.c:938 #: g10/mainproc.c:934
msgid "old style (PGP 2.x) signature\n" msgid "old style (PGP 2.x) signature\n"
msgstr "" msgstr ""
#: g10/mainproc.c:943 #: g10/mainproc.c:939
msgid "invalid root packet detected in proc_tree()\n" msgid "invalid root packet detected in proc_tree()\n"
msgstr "" msgstr ""

View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnupg-0.4.3\n" "Project-Id-Version: gnupg-0.4.3\n"
"POT-Creation-Date: 1998-11-20 15:17+0100\n" "POT-Creation-Date: 1998-11-20 19:52+0100\n"
"PO-Revision-Date: 1998-11-09 16:19+01:00\n" "PO-Revision-Date: 1998-11-09 16:19+01:00\n"
"Last-Translator: Marco d'Itri <md@linux.it>\n" "Last-Translator: Marco d'Itri <md@linux.it>\n"
"Language-Team: Italian <it@li.org>\n" "Language-Team: Italian <it@li.org>\n"
@ -732,45 +732,45 @@ msgstr "header dell'armatura non valido: "
msgid "armor: %s\n" msgid "armor: %s\n"
msgstr "armatura: %s\n" msgstr "armatura: %s\n"
#: g10/armor.c:530 #: g10/armor.c:532
msgid "invalid dash escaped line: " msgid "invalid dash escaped line: "
msgstr "riga protetta con il trattino non valida: " msgstr "riga protetta con il trattino non valida: "
#: g10/armor.c:599 #: g10/armor.c:601
msgid "invalid clear text header: " msgid "invalid clear text header: "
msgstr "header del testo in chiaro non valido: " msgstr "header del testo in chiaro non valido: "
#: g10/armor.c:841 #: g10/armor.c:843
#, c-format #, c-format
msgid "invalid radix64 character %02x skipped\n" msgid "invalid radix64 character %02x skipped\n"
msgstr "Carattere radix64 non valido %02x saltato\n" msgstr "Carattere radix64 non valido %02x saltato\n"
#: g10/armor.c:874 #: g10/armor.c:876
msgid "premature eof (no CRC)\n" msgid "premature eof (no CRC)\n"
msgstr "eof prematura (nessun CRC)\n" msgstr "eof prematura (nessun CRC)\n"
#: g10/armor.c:893 #: g10/armor.c:895
msgid "premature eof (in CRC)\n" msgid "premature eof (in CRC)\n"
msgstr "eof prematura (nel CRC)\n" msgstr "eof prematura (nel CRC)\n"
#: g10/armor.c:897 #: g10/armor.c:899
msgid "malformed CRC\n" msgid "malformed CRC\n"
msgstr "CRC malformato\n" msgstr "CRC malformato\n"
#: g10/armor.c:901 #: g10/armor.c:903
#, c-format #, c-format
msgid "CRC error; %06lx - %06lx\n" msgid "CRC error; %06lx - %06lx\n"
msgstr "errore nel CRC; %06lx - %06lx\n" msgstr "errore nel CRC; %06lx - %06lx\n"
#: g10/armor.c:920 #: g10/armor.c:922
msgid "premature eof (in Trailer)\n" msgid "premature eof (in Trailer)\n"
msgstr "eof prematura (nella coda)\n" msgstr "eof prematura (nella coda)\n"
#: g10/armor.c:924 #: g10/armor.c:926
msgid "error in trailer line\n" msgid "error in trailer line\n"
msgstr "errore nella riga della coda\n" msgstr "errore nella riga della coda\n"
#: g10/armor.c:1178 #: g10/armor.c:1180
msgid "no valid RFC1991 or OpenPGP data found.\n" msgid "no valid RFC1991 or OpenPGP data found.\n"
msgstr "Non sono stati trovati dati RFC1991 o OpenPGP validi.\n" msgstr "Non sono stati trovati dati RFC1991 o OpenPGP validi.\n"
@ -1361,15 +1361,15 @@ msgstr "%s crittografato per: %s\n"
msgid "WARNING: nothing exported\n" msgid "WARNING: nothing exported\n"
msgstr "ATTENZIONE: uso di una chiave non fidata!\n" msgstr "ATTENZIONE: uso di una chiave non fidata!\n"
#: g10/getkey.c:163 #: g10/getkey.c:164
msgid "too many entries in pk cache - disabled\n" msgid "too many entries in pk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:261 #: g10/getkey.c:263
msgid "too many entries in unk cache - disabled\n" msgid "too many entries in unk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:967 #: g10/getkey.c:969
#, c-format #, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n" msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "uso la chiave secondaria %08lX invece della chiave primaria %08lX\n" msgstr "uso la chiave secondaria %08lX invece della chiave primaria %08lX\n"
@ -2046,15 +2046,19 @@ msgid "Changing exiration time for the primary key.\n"
msgstr "Modifico il tempo di scadenza per la chiave primaria.\n" msgstr "Modifico il tempo di scadenza per la chiave primaria.\n"
#: g10/keyedit.c:1250 #: g10/keyedit.c:1250
msgid "You can't change the expiration date of a v3 key\n"
msgstr ""
#: g10/keyedit.c:1266
msgid "No corresponding signature in secret ring\n" msgid "No corresponding signature in secret ring\n"
msgstr "Manca la firma corrispondente nel portachiavi segreto\n" msgstr "Manca la firma corrispondente nel portachiavi segreto\n"
#: g10/keyedit.c:1310 #: g10/keyedit.c:1326
#, c-format #, c-format
msgid "No user id with index %d\n" msgid "No user id with index %d\n"
msgstr "Nessun user id con l'indice %d\n" msgstr "Nessun user id con l'indice %d\n"
#: g10/keyedit.c:1355 #: g10/keyedit.c:1371
#, c-format #, c-format
msgid "No secondary key with index %d\n" msgid "No secondary key with index %d\n"
msgstr "Nessuna chiave secondaria con l'indice %d\n" msgstr "Nessuna chiave secondaria con l'indice %d\n"
@ -2089,33 +2093,33 @@ msgstr "nota: il mittente ha richiesto \"solo-per-i-tuoi-occhi\"\n"
msgid "original file name='%.*s'\n" msgid "original file name='%.*s'\n"
msgstr "" msgstr ""
#: g10/mainproc.c:837 #: g10/mainproc.c:833
msgid "signature verification suppressed\n" msgid "signature verification suppressed\n"
msgstr "" msgstr ""
#: g10/mainproc.c:843 #: g10/mainproc.c:839
#, c-format #, c-format
msgid "Signature made %.*s using %s key ID %08lX\n" msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Firma fatta %.*s usando %s key ID %08lX\n" msgstr "Firma fatta %.*s usando %s key ID %08lX\n"
#: g10/mainproc.c:851 #: g10/mainproc.c:847
msgid "BAD signature from \"" msgid "BAD signature from \""
msgstr "Firma NON corretta da \"" msgstr "Firma NON corretta da \""
#: g10/mainproc.c:852 #: g10/mainproc.c:848
msgid "Good signature from \"" msgid "Good signature from \""
msgstr "Buona firma da \"" msgstr "Buona firma da \""
#: g10/mainproc.c:865 #: g10/mainproc.c:861
#, c-format #, c-format
msgid "Can't check signature: %s\n" msgid "Can't check signature: %s\n"
msgstr "Impossibile controllare la firma: %s\n" msgstr "Impossibile controllare la firma: %s\n"
#: g10/mainproc.c:938 #: g10/mainproc.c:934
msgid "old style (PGP 2.x) signature\n" msgid "old style (PGP 2.x) signature\n"
msgstr "" msgstr ""
#: g10/mainproc.c:943 #: g10/mainproc.c:939
msgid "invalid root packet detected in proc_tree()\n" msgid "invalid root packet detected in proc_tree()\n"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@
# QingLong <qinglong@Bolizm> (couldn't send an email to let you know) # QingLong <qinglong@Bolizm> (couldn't send an email to let you know)
msgid "" msgid ""
msgstr "" msgstr ""
"POT-Creation-Date: 1998-11-20 15:17+0100\n" "POT-Creation-Date: 1998-11-20 19:52+0100\n"
"Content-Type: text/plain; charset=\n" "Content-Type: text/plain; charset=\n"
"Date: 1998-01-26 22:08:36+0100\n" "Date: 1998-01-26 22:08:36+0100\n"
"From: Gregory Steuck <steuck@iname.com>\n" "From: Gregory Steuck <steuck@iname.com>\n"
@ -760,45 +760,45 @@ msgstr ""
msgid "armor: %s\n" msgid "armor: %s\n"
msgstr "ëÏÄÉÒÏ×ËÁ: %s\n" msgstr "ëÏÄÉÒÏ×ËÁ: %s\n"
#: g10/armor.c:530 #: g10/armor.c:532
msgid "invalid dash escaped line: " msgid "invalid dash escaped line: "
msgstr "ÎÅÄÏÐÕÓÔÉÍÁÑ ÓÔÒÏËÁ ÎÁÞÉÎÁÀÝÁÑÓÑ Ó ÍÉÎÕÓÏ×: " msgstr "ÎÅÄÏÐÕÓÔÉÍÁÑ ÓÔÒÏËÁ ÎÁÞÉÎÁÀÝÁÑÓÑ Ó ÍÉÎÕÓÏ×: "
#: g10/armor.c:599 #: g10/armor.c:601
msgid "invalid clear text header: " msgid "invalid clear text header: "
msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ÔÅËÓÔÏ×ÙÊ ÚÁÇÏÌÏ×ÏË: " msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ÔÅËÓÔÏ×ÙÊ ÚÁÇÏÌÏ×ÏË: "
#: g10/armor.c:841 #: g10/armor.c:843
#, fuzzy, c-format #, fuzzy, c-format
msgid "invalid radix64 character %02x skipped\n" msgid "invalid radix64 character %02x skipped\n"
msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ÄÌÑ ËÏÄÉÒÏ×ËÉ radix64 ÓÉÍ×ÏÌ %02x ÐÒÏÐÕÝÅÎ\n" msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ÄÌÑ ËÏÄÉÒÏ×ËÉ radix64 ÓÉÍ×ÏÌ %02x ÐÒÏÐÕÝÅÎ\n"
#: g10/armor.c:874 #: g10/armor.c:876
msgid "premature eof (no CRC)\n" msgid "premature eof (no CRC)\n"
msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅÃ ÆÁÊÌÁ (ÎÅÔ CRC)\n" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅÃ ÆÁÊÌÁ (ÎÅÔ CRC)\n"
#: g10/armor.c:893 #: g10/armor.c:895
msgid "premature eof (in CRC)\n" msgid "premature eof (in CRC)\n"
msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅÃ ÆÁÊÌÁ (× CRC)\n" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅÃ ÆÁÊÌÁ (× CRC)\n"
#: g10/armor.c:897 #: g10/armor.c:899
msgid "malformed CRC\n" msgid "malformed CRC\n"
msgstr "ÎÅÐÒÁ×ÉÌØÎÁÑ ÆÏÒÍÁ CRC\n" msgstr "ÎÅÐÒÁ×ÉÌØÎÁÑ ÆÏÒÍÁ CRC\n"
#: g10/armor.c:901 #: g10/armor.c:903
#, c-format #, c-format
msgid "CRC error; %06lx - %06lx\n" msgid "CRC error; %06lx - %06lx\n"
msgstr "ÏÛÉÂËÁ CRC; %06lx - %06lx\n" msgstr "ÏÛÉÂËÁ CRC; %06lx - %06lx\n"
#: g10/armor.c:920 #: g10/armor.c:922
msgid "premature eof (in Trailer)\n" msgid "premature eof (in Trailer)\n"
msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅà ÆÁÊÌÁ (× È×ÏÓÔÅ)\n" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ËÏÎÅà ÆÁÊÌÁ (× È×ÏÓÔÅ)\n"
#: g10/armor.c:924 #: g10/armor.c:926
msgid "error in trailer line\n" msgid "error in trailer line\n"
msgstr "ÏÛÉÂËÁ × ÚÁ×ÅÒÛÁÀÝÅÊ ÓÔÒÏËÅ\n" msgstr "ÏÛÉÂËÁ × ÚÁ×ÅÒÛÁÀÝÅÊ ÓÔÒÏËÅ\n"
#: g10/armor.c:1178 #: g10/armor.c:1180
msgid "no valid RFC1991 or OpenPGP data found.\n" msgid "no valid RFC1991 or OpenPGP data found.\n"
msgstr "ÎÅ ÎÁÊÄÅÎÏ ÄÏÐÕÓÔÉÍÙÈ RFC1991 ÉÌÉ OpenPGP ÄÁÎÎÙÈ.\n" msgstr "ÎÅ ÎÁÊÄÅÎÏ ÄÏÐÕÓÔÉÍÙÈ RFC1991 ÉÌÉ OpenPGP ÄÁÎÎÙÈ.\n"
@ -1393,15 +1393,15 @@ msgstr "%s
msgid "WARNING: nothing exported\n" msgid "WARNING: nothing exported\n"
msgstr "÷îéíáîéå: éÓÐÏÌØÚÕÅÔÓÑ ËÌÀÞ Ë ËÏÔÏÒÏÍÕ ÎÅÔ ÄÏ×ÅÒÉÑ!\n" msgstr "÷îéíáîéå: éÓÐÏÌØÚÕÅÔÓÑ ËÌÀÞ Ë ËÏÔÏÒÏÍÕ ÎÅÔ ÄÏ×ÅÒÉÑ!\n"
#: g10/getkey.c:163 #: g10/getkey.c:164
msgid "too many entries in pk cache - disabled\n" msgid "too many entries in pk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:261 #: g10/getkey.c:263
msgid "too many entries in unk cache - disabled\n" msgid "too many entries in unk cache - disabled\n"
msgstr "" msgstr ""
#: g10/getkey.c:967 #: g10/getkey.c:969
#, c-format #, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n" msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "ÉÓÐÏÌØÚÕÅÔÓÑ ÄÏÐÏÌÎÉÔÅÌØÎÙÊ ËÌÀÞ %09lX ×ÍÅÓÔÏ ÏÓÎÏ×ÎÏÇÏ %08lX%\n" msgstr "ÉÓÐÏÌØÚÕÅÔÓÑ ÄÏÐÏÌÎÉÔÅÌØÎÙÊ ËÌÀÞ %09lX ×ÍÅÓÔÏ ÏÓÎÏ×ÎÏÇÏ %08lX%\n"
@ -2101,15 +2101,19 @@ msgid "Changing exiration time for the primary key.\n"
msgstr "" msgstr ""
#: g10/keyedit.c:1250 #: g10/keyedit.c:1250
msgid "You can't change the expiration date of a v3 key\n"
msgstr ""
#: g10/keyedit.c:1266
msgid "No corresponding signature in secret ring\n" msgid "No corresponding signature in secret ring\n"
msgstr "" msgstr ""
#: g10/keyedit.c:1310 #: g10/keyedit.c:1326
#, c-format #, c-format
msgid "No user id with index %d\n" msgid "No user id with index %d\n"
msgstr "îÅÔ ÉÄÅÎÔÉÆÉËÁÔÏÒÁ ÐÏÌØÚÏ×ÁÔÅÌÑ Ó ÉÎÄÅËÓÏÍ %d\n" msgstr "îÅÔ ÉÄÅÎÔÉÆÉËÁÔÏÒÁ ÐÏÌØÚÏ×ÁÔÅÌÑ Ó ÉÎÄÅËÓÏÍ %d\n"
#: g10/keyedit.c:1355 #: g10/keyedit.c:1371
#, c-format #, c-format
msgid "No secondary key with index %d\n" msgid "No secondary key with index %d\n"
msgstr "îÅÔ ÄÏÐÏÌÎÉÔÅÌØÎÏÇÏ ËÌÀÞÁ Ó ÉÎÄÅËÓÏÍ %d\n" msgstr "îÅÔ ÄÏÐÏÌÎÉÔÅÌØÎÏÇÏ ËÌÀÞÁ Ó ÉÎÄÅËÓÏÍ %d\n"
@ -2144,33 +2148,33 @@ msgstr "
msgid "original file name='%.*s'\n" msgid "original file name='%.*s'\n"
msgstr "" msgstr ""
#: g10/mainproc.c:837 #: g10/mainproc.c:833
msgid "signature verification suppressed\n" msgid "signature verification suppressed\n"
msgstr "" msgstr ""
#: g10/mainproc.c:843 #: g10/mainproc.c:839
#, c-format #, c-format
msgid "Signature made %.*s using %s key ID %08lX\n" msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "ðÏÄÐÉÓØ ÓÄÅÌÁÎÁ %.*s, ÉÓÐÏÌØÚÕÑ %s ËÌÀÞ %08lX\n" msgstr "ðÏÄÐÉÓØ ÓÄÅÌÁÎÁ %.*s, ÉÓÐÏÌØÚÕÑ %s ËÌÀÞ %08lX\n"
#: g10/mainproc.c:851 #: g10/mainproc.c:847
msgid "BAD signature from \"" msgid "BAD signature from \""
msgstr "ðìïèáñ ÐÏÄÐÉÓØ ÏÔ \"" msgstr "ðìïèáñ ÐÏÄÐÉÓØ ÏÔ \""
#: g10/mainproc.c:852 #: g10/mainproc.c:848
msgid "Good signature from \"" msgid "Good signature from \""
msgstr "èÏÒÏÛÁÑ ÐÏÄÐÉÓØ ÏÔ \"" msgstr "èÏÒÏÛÁÑ ÐÏÄÐÉÓØ ÏÔ \""
#: g10/mainproc.c:865 #: g10/mainproc.c:861
#, c-format #, c-format
msgid "Can't check signature: %s\n" msgid "Can't check signature: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ: %s\n"
#: g10/mainproc.c:938 #: g10/mainproc.c:934
msgid "old style (PGP 2.x) signature\n" msgid "old style (PGP 2.x) signature\n"
msgstr "" msgstr ""
#: g10/mainproc.c:943 #: g10/mainproc.c:939
msgid "invalid root packet detected in proc_tree()\n" msgid "invalid root packet detected in proc_tree()\n"
msgstr "" msgstr ""