diff options
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | g10/ChangeLog | 7 | ||||
-rw-r--r-- | g10/armor.c | 45 | ||||
-rw-r--r-- | g10/hkp.c | 7 | ||||
-rw-r--r-- | include/util.h | 1 | ||||
-rw-r--r-- | po/de.po | 66 | ||||
-rw-r--r-- | po/es_ES.po | 66 | ||||
-rw-r--r-- | po/fr.po | 66 | ||||
-rw-r--r-- | po/id.po | 66 | ||||
-rw-r--r-- | po/it.po | 66 | ||||
-rw-r--r-- | po/pl.po | 66 | ||||
-rw-r--r-- | po/pt_BR.po | 66 | ||||
-rw-r--r-- | po/pt_PT.po | 66 | ||||
-rw-r--r-- | po/ru.po | 66 | ||||
-rw-r--r-- | util/ChangeLog | 4 | ||||
-rw-r--r-- | util/logger.c | 6 |
16 files changed, 348 insertions, 320 deletions
@@ -2,6 +2,10 @@ * don't allow certain commands in the edit menu when the secret key is selected. + * --delete-secret-key should work even when the public key is not there. + + * Add reason for revocation which is going to be a SHOULD + Scheduled for 1.1 ----------------- * With option -i prompt before adding a key to the keyring and show some diff --git a/g10/ChangeLog b/g10/ChangeLog index 3b8c6a0fb..a1b94b3e5 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,10 @@ +Fri Dec 31 14:08:15 CET 1999 Werner Koch <[email protected]> + + * armor.c (armor_filter): Made the "Comment:" header translatable. + + * hkp.c (hkp_import): Make sure that the program does not return + success when there is a connection problem. Reported by Phillip Jones. + Sun Dec 19 15:22:26 CET 1999 Werner Koch <[email protected]> * armor.c (LF): Use this new macro at all places where a line LF diff --git a/g10/armor.c b/g10/armor.c index 7ef8f336d..7728337e3 100644 --- a/g10/armor.c +++ b/g10/armor.c @@ -894,42 +894,43 @@ armor_filter( void *opaque, int control, } else if( control == IOBUFCTRL_FLUSH && !afx->cancel ) { if( !afx->status ) { /* write the header line */ + const char *s; + if( afx->what >= DIM(head_strings) ) log_bug("afx->what=%d", afx->what); iobuf_writestr(a, "-----"); iobuf_writestr(a, head_strings[afx->what] ); - iobuf_writestr(a, "-----" LF ); + iobuf_writestr(a, "-----\n"); if( !opt.no_version ) iobuf_writestr(a, "Version: GnuPG v" VERSION " (" - PRINTABLE_OS_NAME ")" LF ); - - if( opt.comment_string ) { - const char *s = opt.comment_string; - if( *s ) { - iobuf_writestr(a, "Comment: " ); - for( ; *s; s++ ) { - if( *s == '\n' ) - iobuf_writestr(a, "\\n" ); - else if( *s == '\r' ) - iobuf_writestr(a, "\\r" ); - else if( *s == '\v' ) - iobuf_writestr(a, "\\v" ); - else - iobuf_put(a, *s ); - } - iobuf_writestr(a, LF ); + PRINTABLE_OS_NAME ")\n"); + + /* write the comment string or a default one */ + s = opt.comment_string ? opt.comment_string + : _("For info see http://www.gnupg.org"); + if( *s ) { + iobuf_writestr(a, "Comment: " ); + for( ; *s; s++ ) { + if( *s == '\n' ) + iobuf_writestr(a, "\\n" ); + else if( *s == '\r' ) + iobuf_writestr(a, "\\r" ); + else if( *s == '\v' ) + iobuf_writestr(a, "\\v" ); + else + iobuf_put(a, *s ); } + iobuf_put(a, '\n' ); } - else - iobuf_writestr(a, - "Comment: For info see http://www.gnupg.org" LF); + if( afx->hdrlines ) iobuf_writestr(a, afx->hdrlines); - iobuf_writestr(a, LF ); + iobuf_put(a, '\n'); afx->status++; afx->idx = 0; afx->idx2 = 0; afx->crc = CRCINIT; + } crc = afx->crc; idx = afx->idx; @@ -102,7 +102,12 @@ hkp_import( STRLIST users ) log_info(_("%s: not a valid key ID\n"), users->d ); continue; } - hkp_ask_import( kid ); + /* because the function may use log_info in some situations, the + * errorcounter ist not increaed and the program will return + * with success - which is not good when this function is used. + */ + if( hkp_ask_import( kid ) ) + log_inc_errorcount(); } return 0; #endif diff --git a/include/util.h b/include/util.h index 08c514a23..1b74aa119 100644 --- a/include/util.h +++ b/include/util.h @@ -65,6 +65,7 @@ void log_set_name( const char *name ); const char *log_get_name(void); void log_set_pid( int pid ); int log_get_errorcount( int clear ); +void log_inc_errorcount(void); void g10_log_hexdump( const char *text, const char *buf, size_t len ); #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 ) @@ -3,7 +3,7 @@ # Walter Koch <[email protected]>, 1998. msgid "" msgstr "" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-12-11 16:54+0100\n" "Last-Translator: Walter Koch <[email protected]>\n" "Language-Team: German <[email protected]>\n" @@ -782,7 +782,7 @@ msgstr "--delete-secret-key User-ID" msgid "--delete-key user-id" msgstr "--delete-key User-ID" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "'%s' kann nicht ge�ffnet werden: %s\n" @@ -843,75 +843,75 @@ msgstr "" msgid "a notation value must not use any control characters\n" msgstr "Ein \"notation\"-Wert darf keine Kontrollzeichen verwenden\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "ASCII-H�lle: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "Ung�ltige ASCII-H�lle" -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "ASCII-H�lle: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "Ung�ltige Klartextsignatur-Einleitung\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "verschachtelte Klartextunterschriften\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "Ung�ltige mit Bindestrich \"escapte\" Zeile: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "Unerwartete ASCII-H�lle:" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "Ung�ltiges \"radix64\" Zeichen %02x ignoriert\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "vorzeitiges Dateiende (keine Pr�fsumme)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "vorzeitiges Dateiende (innerhalb der Pr�fsumme)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "Falsch aufgebaute Pr�fsumme\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "Pr�fsummenfehler; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "vorzeitiges Dateiende (im Nachsatz)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "Fehler in der Nachsatzzeile\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "Keine g�ltigen OpenPGP-Daten gefunden.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "ung�ltige ASCII-H�lle: Zeile ist l�nger als %d Zeichen\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1508,7 +1508,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "Schl�sselerzeugung fehlgeschlagen: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1516,7 +1516,7 @@ msgstr "" "Der Schl�ssel wurde %lu Sekunde in der Zukunft erzeugt (Zeitreise oder Uhren " "stimmen nicht �berein)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1697,7 +1697,7 @@ msgstr "Schl�ssel %08lX: �ffentlicher Schl�ssel nicht gefunden: %s\n" msgid "no default public keyring\n" msgstr "Kein voreingestellter �ffentlicher Schl�sselbund\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "Schreiben nach '%s'\n" @@ -1958,7 +1958,7 @@ msgstr "" msgid "Really sign? " msgstr "Wirklich unterschreiben? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "Beglaubigung fehlgeschlagen: %s\n" @@ -2602,19 +2602,19 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "" "Daten wurden nicht gespeichert; verwenden Sie daf�r die Option \"--output\"\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 msgid "Detached signature.\n" msgstr "Abgetrennte Beglaubigungen.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Bitte geben Sie den Namen der Datendatei ein: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "lese stdin ...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "kann signierte Datei '%s' nicht �ffnen.\n" @@ -2726,31 +2726,31 @@ msgid "assuming bad signature due to an unknown critical bit\n" msgstr "" "Vermutlich eine FALSCHE Unterschrift, wegen unbekanntem \"critical bit\"\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "%s Unterschrift von: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "%s kann nicht erzeugt werden: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "unterschreibe:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "WARNUNG: '%s' ist eine leere Datei.\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "Textzeilen l�nger als %d Zeichen k�nnen nicht benutzt werden\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "Eingabezeile ist l�nger als %d Zeichen\n" diff --git a/po/es_ES.po b/po/es_ES.po index 62f06a112..ffdaa50d2 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -7,7 +7,7 @@ # GPG version: 1.0.0 msgid "" msgstr "" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-10-27 06:35+0200\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Date: 1998-11-13 10:49:25+0100\n" @@ -793,7 +793,7 @@ msgstr "--delete-secret-key id-usuario" msgid "--delete-key user-id" msgstr "--delete-key id-usuario" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "no puede abrirse `%s': %s\n" @@ -851,75 +851,75 @@ msgstr "los puntos en una notaci�n deben estar rodeados por otros caracteres\n" msgid "a notation value must not use any control characters\n" msgstr "un valor de notaci�n no debe usar ning�n caracter de control\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "cabecera de armadura no v�lida: " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "cabecera de armadura: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "cabecera de firma clara no v�lida\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "firmas en texto claro anidadas\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "L�nea con guiones no v�lida: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "armadura inesperada" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "caracteres no v�lidos radix64 %02x ignorados\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "Fin de fichero prematuro\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "Fin de suma de comprobaci�n prematuro\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "Suma de comprobaci�n mal creada\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "Error en suma de comprobaci�n: %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "fin de fichero prematuro (en el cierre)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "error en la l�nea de cierre\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "no se han encontrados datos OpenPGP v�lidos\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armadura incorrecta: l�nea m�s larga de %d caracteres\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1504,7 +1504,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "Creaci�n de la clave fallida: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1512,7 +1512,7 @@ msgstr "" "clave p�blica creada %lu segundos en el futuro (salto en el tiempo o\n" "problemas con el reloj)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1692,7 +1692,7 @@ msgstr "clave %08lX: clave p�blica no encontrada: %s\n" msgid "no default public keyring\n" msgstr "no hay anillo p�blico por defecto\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "escribiendo en `%s'\n" @@ -1951,7 +1951,7 @@ msgstr "" msgid "Really sign? " msgstr "�Firmar de verdad? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "firma fallida: %s\n" @@ -2589,20 +2589,20 @@ msgstr "Repita contrase�a: " msgid "data not saved; use option \"--output\" to save it\n" msgstr "datos no grabados; use la opci�n \"--output\" para grabarlos\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 #, fuzzy msgid "Detached signature.\n" msgstr "%d firmas borradas.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Introduzca el nombre del fichero de datos: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "leyendo stdin...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "imposible abrir datos firmados `%s'\n" @@ -2707,31 +2707,31 @@ msgstr "NOTA: clave de la firma caducada el %s\n" msgid "assuming bad signature due to an unknown critical bit\n" msgstr "asumiendo firma incorrecta debido a un bit cr�tico desconocido\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "firma %s de: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "no puede crearse %s: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "firmando:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "ATENCI�N `%s' es un fichero vac�o\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "no se pueden manejar l�neas de texto de m�s de %d caracteres\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "l�nea de longitud superior a %d caracteres\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.1\n" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-10-06 21:43+0200\n" "Last-Translator: Ga�l Qu�ri <[email protected]>\n" "Language-Team: French <[email protected]>\n" @@ -783,7 +783,7 @@ msgstr "--delete-secret-key utilisateur" msgid "--delete-key user-id" msgstr "--delete-key utilisateur" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "impossible d'ouvrir %s: %s\n" @@ -846,75 +846,75 @@ msgstr "" msgid "a notation value must not use any control characters\n" msgstr "une valeur de notation ne doit utiliser aucun caract�re de contr�le\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "armure : %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "en-t�te d'armure invalide : " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "en-t�te d'armure : " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "en-t�te de signature claire invalide\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "signatures en texte clair imbriqu�es\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "ligne de traits d'�chappement invalide : " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "armure inattendue :" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "caract�re %02x invalide en base 64 ignor�\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "fin de fichier pr�matur�e (pas de CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "fin de fichier pr�matur�e (dans le CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "CRC malform�\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "Erreur de CRC ; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "fin de fichier pr�matur�e (dans la remorque)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "erreur dans la ligne de remorque\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "aucune donn�e OpenPGP valide n'a �t� trouv�e.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armure invalide : ligne plus longue que %d caract�res\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1500,7 +1500,7 @@ msgid "Key generation failed: %s\n" msgstr "La g�n�ration de cl� a �chou� : %s\n" # on s'amuse comme on peut... -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1508,7 +1508,7 @@ msgstr "" "la cl� a �t� cr��e %lu seconde dans le futur (discontinuit� temporelle ou\n" "probl�me d'horloge)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1690,7 +1690,7 @@ msgstr "cl� %08lX : cl� publique pas trouv�e: %s\n" msgid "no default public keyring\n" msgstr "pas de porte-cl�s public par d�faut\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "�criture de `%s'\n" @@ -1948,7 +1948,7 @@ msgstr "" msgid "Really sign? " msgstr "Signer r�ellement ? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "la signature a �chou� : %s\n" @@ -2590,20 +2590,20 @@ msgstr "" "donn�es non enregistr�es ; utilisez l'option \"--output\" pour\n" "les enregistrer\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 #, fuzzy msgid "Detached signature.\n" msgstr "%d signature supprim�e.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Entrez le nom d'un fichier de donn�es : " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "lecture de l'entr�e standard...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "impossible d'ouvir les donn�es sign�es `%s'\n" @@ -2712,31 +2712,31 @@ msgstr "" "la signature est suppos�e �tre fausse car un bit critique est\n" "inconnu\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "Signature %s de : %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "impossible de cr�er %s : %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "signature :" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "ATTENTION : `%s' est un fichier vide\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "impossible de traiter les lignes plus longues que %d caract�res\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "la ligne d'entr�e est plus longue que %d caract�res\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU Privacy Guard 1.0.0\n" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-09-17 15:21+07:00\n" "Last-Translator: Tedi Heriyanto <[email protected]>\n" "Language-Team: Indonesia <[email protected]>\n" @@ -776,7 +776,7 @@ msgstr "--delete-secret-key id-user" msgid "--delete-key user-id" msgstr "--delete-key id-user" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "tidak dapat membuka %s: %s\n" @@ -834,75 +834,75 @@ msgstr "titik dalam nama notasi harus diapit oleh karakter lain\n" msgid "a notation value must not use any control characters\n" msgstr "nilai notasi tidak boleh menggunakan karakter kendali\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "armor: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "header armor tidak valid: " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "header armor: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "header clearsig tidak valid\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "signature teks bersarang\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "dash escaped line tidak valid: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "armor tidak terduga:" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "karakter radix64 tidak valid %02x dilewati\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "eof prematur (tanpa CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "eof prematur (dalam CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "CRC tidak tepat\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "kesalahan CRC; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "eof prematur (dalam Trailer)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "kesalahan dalam garis trailer\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "tidak ditemukan data OpenPGP yang valid.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armor tidak valid: baris melebihi %d karakter\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1477,14 +1477,14 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "Pembuatan kunci gagal: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" "kunci telah diciptakan dalam %lu detik mendatang (masalah waktu atau jam)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1663,7 +1663,7 @@ msgstr "kunci %08lX: kunci publik tidak ditemukan: %s\n" msgid "no default public keyring\n" msgstr "tidak ada keyring publik baku\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "menulis ke `%s'\n" @@ -1921,7 +1921,7 @@ msgstr "" msgid "Really sign? " msgstr "Ditandai? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "gagal menandai: %s\n" @@ -2556,20 +2556,20 @@ msgstr "Ulangi passphrase: " msgid "data not saved; use option \"--output\" to save it\n" msgstr "data tidak disimpan; gunakan pilihan \"--output\" untuk menyimpannya\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 #, fuzzy msgid "Detached signature.\n" msgstr "Menghapus %d signature.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Silakan masukkan nama file data: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "membaca stdin ...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "tidak dapat membuka data tertandai `%s'\n" @@ -2673,31 +2673,31 @@ msgstr "CATATAN: kunci signature berakhir %s\n" msgid "assuming bad signature due to an unknown critical bit\n" msgstr "mengasumsikan signature buruk karena ada bit kritik tidak dikenal\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "%s signature dari: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "menandai:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "PERINGATAN: `%s' adalah file kosong\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "tidak dapat menangani baris teks lebih dari %d karakter\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "baris input lebih dari %d karakter\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.0.0h\n" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-12-08 15:51+02:00\n" "Last-Translator: Marco d'Itri <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" @@ -779,7 +779,7 @@ msgstr "--delete-secret-key user-id" msgid "--delete-key user-id" msgstr "--delete-key user-id" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "impossibile aprire `%s': %s\n" @@ -839,75 +839,75 @@ msgstr "nel nome di una nota i punti devono avere altri caratteri intorno\n" msgid "a notation value must not use any control characters\n" msgstr "il valore di una nota non deve usare caratteri di controllo\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "armatura: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "header dell'armatura non valido: " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "header dell'armatura: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "header della firma in chiaro non valido\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "firme in chiaro annidate\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "riga protetta con il trattino non valida: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "armatura inaspettata:" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "Carattere radix64 non valido %02x saltato\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "eof prematura (nessun CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "eof prematura (nel CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "CRC malformato\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "errore nel CRC; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "eof prematura (nella coda)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "errore nella riga della coda\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "Non sono stati trovati dati OpenPGP validi.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armatura non valida: linea pi� lunga di %d caratteri\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1487,7 +1487,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "Generazione della chiave fallita: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1495,7 +1495,7 @@ msgstr "" "la chiave � stata creata %lu secondo nel futuro (salto nel tempo o problema\n" "con l'orologio)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1675,7 +1675,7 @@ msgstr "chiave %08lX: chiave pubblica non trovata: %s\n" msgid "no default public keyring\n" msgstr "nessun portachiavi pubblico predefinito\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "scrittura in `%s'\n" @@ -1933,7 +1933,7 @@ msgstr "" msgid "Really sign? " msgstr "Firmo davvero? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "firma fallita: %s\n" @@ -2572,19 +2572,19 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "" "i dati non sono stati salvati; usa l'opzione \"--output\" per salvarli\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 msgid "Detached signature.\n" msgstr "Firma separata.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Inserisci il nome del file di dati: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "viene letto stdin...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "impossibile aprire i dati firmati `%s'\n" @@ -2692,31 +2692,31 @@ msgid "assuming bad signature due to an unknown critical bit\n" msgstr "" "si suppone una firma non valida a causa di un bit critico sconosciuto\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "Firma %s da: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "impossibile creare %s: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "firma:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "ATTENZIONE: `%s' � un file vuoto\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "impossibile gestire linee di testo pi� lunghe di %d caratteri\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "linea di input pi� lunga di %d caratteri\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.0.0\n" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-10-02 21:35+02:00\n" "Last-Translator: Janusz A. Urbanowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" @@ -790,7 +790,7 @@ msgstr "--delete-secret-key nazwa u�ytkownika" msgid "--delete-key user-id" msgstr "--delete-key nazwa u�ytkownika" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "nie mo�na otworzy� %s: %s\n" @@ -848,75 +848,75 @@ msgstr "kropki w adnotacji musz� znajdowa� si� pomi�dzy innymi znakami\n" msgid "a notation value must not use any control characters\n" msgstr "warto�� adnotacji nie mo�e zawiera� znak�w steruj�cych\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "opakowanie: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "niepoprawny nag��wek opakowania: " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "nag��wek opakowania: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "niew�a�ciwy nag��wek czytelnego podpisanego dokumentu\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "zagnie�d�one podpisy na czytelnym dokumencie\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "niepoprawne oznaczenie linii minusami: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "nieoczekiwane opakowanie:" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "niew�a�ciwy znak formatu radix64 %02x zosta� pomini�ty\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "przewczesny koniec pliku (brak CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "przedwczesny koniec pliku (w CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "b��d formatu CRC\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "B��d sumy CRC; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "przedwczesny koniec pliku (w zako�czeniu)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "b��d w linii ko�cz�cej\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "nie odnaleziono poprawnych danych w formacie OpenPGP.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "b��d opakowania: linia d�u�sza ni� %d znak�w\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1505,7 +1505,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "Generacja klucza nie powiod�a si�: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1513,7 +1513,7 @@ msgstr "" "klucz zosta� stworzony %lu sekund w przysz�o�ci (zaburzenia\n" "czasoprzestrzeni, lub �le ustawiony zegar systemowy)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1693,7 +1693,7 @@ msgstr "klucz %08lX: brak klucza publicznego: %s\n" msgid "no default public keyring\n" msgstr "brak domy�lnego zbioru kluczy publicznych\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "zapis do '%s'\n" @@ -1957,7 +1957,7 @@ msgstr "" msgid "Really sign? " msgstr "Na pewno podpisa�? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "z�o�enie podpisu nie powiod�o si�: %s\n" @@ -2601,20 +2601,20 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "" "dane nie zosta�y zapisane; nale�y u�y� opcji \"--output\" aby je zapisa�\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 #, fuzzy msgid "Detached signature.\n" msgstr "%d podpis usuni�ty.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Nazwa pliku danych: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "odczyt ze strumienia standardowego wej�cia...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "nie mo�na otworzy� podpisanego pliku '%s'\n" @@ -2724,31 +2724,31 @@ msgid "assuming bad signature due to an unknown critical bit\n" msgstr "" "przyj�to niewa�no�� podpisu z powonu ustawienia nieznanego bitu krytycznego\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "%s podpis z�o�ony przez: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "nie mo�na stworzy� %s: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "podpis:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "OSTRZE�ENIE: plik '%s' jest pusty\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "nie mo�na obs�u�y� linii tekstu d�u�szej ni� %d znak�w\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "linia d�u�sza ni� %d znak�w\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5b3549f02..4ec1e277f 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Date: 1998-11-20 23:46:36-0200\n" "From: Thiago Jung Bauermann <[email protected]>\n" @@ -803,7 +803,7 @@ msgstr "--delete-secret-key id-usu�rio" msgid "--delete-key user-id" msgstr "--delete-key id-usu�rio" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "imposs�vel abrir %s: %s\n" @@ -865,75 +865,75 @@ msgstr "" msgid "a notation value must not use any control characters\n" msgstr "um valor de nota��o n�o deve usar caracteres de controle\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "cabe�alho de armadura inv�lido: " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "cabe�alho de armadura: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "cabe�alho de assinatura em texto puro inv�lido\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "assinaturas em texto puro aninhadas\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "linha com h�fen inv�lida: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "armadura inesperada:" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "caractere radix64 inv�lido %02x ignorado\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "fim de arquivo prematuro (sem CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "fim de arquivo prematuro (no CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "CRC malformado\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "erro de CRC; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "fim de arquivo prematuro (no \"Trailer\")\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "erro na linha \"trailer\"\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "nenhum dado OpenPGP v�lido encontrado.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armadura inv�lida: linha maior que %d caracteres\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1513,7 +1513,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1521,7 +1521,7 @@ msgstr "" "a chave foi criada %lu segundo no futuro\n" "(viagem no tempo ou problema no rel�gio)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1701,7 +1701,7 @@ msgstr "chave %08lX: chave p�blica n�o encontrada: %s\n" msgid "no default public keyring\n" msgstr "sem chaveiro p�blico padr�o\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "escrevendo para `%s'\n" @@ -1959,7 +1959,7 @@ msgstr "" msgid "Really sign? " msgstr "Realmente assinar? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "assinatura falhou: %s\n" @@ -2598,19 +2598,19 @@ msgstr "Repita a frase secreta: " msgid "data not saved; use option \"--output\" to save it\n" msgstr "dados n�o salvos; use a op��o \"--output\" para salv�-los\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 msgid "Detached signature.\n" msgstr "Assinatura separada.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Por favor digite o nome do arquivo de dados: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "lendo de \"stdin\" ...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "imposs�vel abrir dados assinados `%s'\n" @@ -2715,31 +2715,31 @@ msgstr "NOTA: chave de assinatura expirou %s\n" msgid "assuming bad signature due to an unknown critical bit\n" msgstr "assumindo assinatura incorreta devido a um bit cr�tico desconhecido\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "assinatura %s de: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "imposs�vel criar %s: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "assinando:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "imposs�vel manipular linhas de texto maiores que %d caracteres\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "linha de entrada maior que %d caracteres\n" diff --git a/po/pt_PT.po b/po/pt_PT.po index b71303c3c..0e04024f5 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg\n" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "PO-Revision-Date: 1999-09-09 20:28+0000\n" "Last-Translator: Pedro Morais <[email protected]>\n" "Language-Team: pt\n" @@ -795,7 +795,7 @@ msgstr "--delete-secret-key id-utilizador" msgid "--delete-key user-id" msgstr "--delete-key id-utilizador" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "imposs�vel abrir %s: %s\n" @@ -857,75 +857,75 @@ msgstr "" msgid "a notation value must not use any control characters\n" msgstr "um valor de nota��o n�o deve usar caracteres de controle\n" -#: g10/armor.c:296 +#: g10/armor.c:301 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "cabe�alho de armadura inv�lido: " -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "cabe�alho de armadura: " -#: g10/armor.c:343 +#: g10/armor.c:348 msgid "invalid clearsig header\n" msgstr "cabe�alho de assinatura em texto puro inv�lido\n" -#: g10/armor.c:395 +#: g10/armor.c:400 msgid "nested clear text signatures\n" msgstr "assinaturas em texto puro aninhadas\n" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "linha com h�fen inv�lida: " -#: g10/armor.c:518 +#: g10/armor.c:536 msgid "unexpected armor:" msgstr "armadura inesperada:" -#: g10/armor.c:635 +#: g10/armor.c:653 #, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "caracter radix64 inv�lido %02x ignorado\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "fim de ficheiro prematuro (sem CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "fim de ficheiro prematuro (no CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "CRC malformado\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "erro de CRC; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "fim de ficheiro prematuro (no \"Trailer\")\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "erro na linha \"trailer\"\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 msgid "no valid OpenPGP data found.\n" msgstr "nenhum dado OpenPGP v�lido encontrado.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armadura inv�lida: linha maior que %d caracteres\n" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1507,7 +1507,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1515,7 +1515,7 @@ msgstr "" "a chave foi criada %lu segundo no futuro\n" "(viagem no tempo ou problema no rel�gio)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1695,7 +1695,7 @@ msgstr "chave %08lX: chave p�blica n�o encontrada: %s\n" msgid "no default public keyring\n" msgstr "sem porta-chaves p�blico padr�o\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "a escrever para `%s'\n" @@ -1953,7 +1953,7 @@ msgstr "" msgid "Really sign? " msgstr "Realmente assinar? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, c-format msgid "signing failed: %s\n" msgstr "assinatura falhou: %s\n" @@ -2592,19 +2592,19 @@ msgstr "Repita a frase secreta: " msgid "data not saved; use option \"--output\" to save it\n" msgstr "dados n�o gravados; use a op��o \"--output\" para grav�-los\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 msgid "Detached signature.\n" msgstr "Assinatura desacoplada.\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Por favor digite o nome do ficheiro de dados: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "lendo do \"stdin\" ...\n" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "imposs�vel abrir dados assinados `%s'\n" @@ -2709,31 +2709,31 @@ msgstr "NOTA: chave de assinatura expirou %s\n" msgid "assuming bad signature due to an unknown critical bit\n" msgstr "assumindo assinatura incorrecta devido a um bit cr�tico desconhecido\n" -#: g10/sign.c:132 +#: g10/sign.c:138 #, c-format msgid "%s signature from: %s\n" msgstr "assinatura %s de: %s\n" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, c-format msgid "can't create %s: %s\n" msgstr "imposs�vel criar %s: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 msgid "signing:" msgstr "a assinar:" -#: g10/sign.c:404 +#: g10/sign.c:410 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "AVISO: `%s' � um ficheiro vazio\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "imposs�vel manipular linhas de texto maiores que %d caracteres\n" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "linha de entrada maior que %d caracteres\n" @@ -9,7 +9,7 @@ # QingLong <qinglong@Bolizm> (couldn't send an email to let you know) msgid "" msgstr "" -"POT-Creation-Date: 1999-12-16 09:44+0100\n" +"POT-Creation-Date: 1999-12-19 16:04+0100\n" "Content-Type: text/plain; charset=\n" "Date: 1998-01-26 22:08:36+0100\n" "From: Gregory Steuck <[email protected]>\n" @@ -859,7 +859,7 @@ msgstr "--delete-secret-key ���-������������" msgid "--delete-key user-id" msgstr "--delete-key ���-������������" -#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:366 +#: g10/encode.c:260 g10/g10.c:1214 g10/sign.c:372 #, c-format msgid "can't open %s: %s\n" msgstr "���������� ������� ���� `%s': %s\n" @@ -916,79 +916,79 @@ msgstr "" msgid "a notation value must not use any control characters\n" msgstr "" -#: g10/armor.c:296 +#: g10/armor.c:301 #, fuzzy, c-format msgid "armor: %s\n" msgstr "���������: %s\n" -#: g10/armor.c:325 +#: g10/armor.c:330 msgid "invalid armor header: " msgstr "" -#: g10/armor.c:332 +#: g10/armor.c:337 msgid "armor header: " msgstr "" -#: g10/armor.c:343 +#: g10/armor.c:348 #, fuzzy msgid "invalid clearsig header\n" msgstr "������������ ������ ��������� �������\n" -#: g10/armor.c:395 +#: g10/armor.c:400 #, fuzzy msgid "nested clear text signatures\n" msgstr "|[����]|������� ��������� �������" -#: g10/armor.c:506 +#: g10/armor.c:524 msgid "invalid dash escaped line: " msgstr "������������ ������ ������������ � �������: " -#: g10/armor.c:518 +#: g10/armor.c:536 #, fuzzy msgid "unexpected armor:" msgstr "����������� ������" -#: g10/armor.c:635 +#: g10/armor.c:653 #, fuzzy, c-format msgid "invalid radix64 character %02x skipped\n" msgstr "������������ ��� ��������� radix64 ������ %02x ��������\n" -#: g10/armor.c:678 +#: g10/armor.c:696 msgid "premature eof (no CRC)\n" msgstr "����������� ����� ����� (��� CRC)\n" -#: g10/armor.c:712 +#: g10/armor.c:730 msgid "premature eof (in CRC)\n" msgstr "����������� ����� ����� (� CRC)\n" -#: g10/armor.c:716 +#: g10/armor.c:734 msgid "malformed CRC\n" msgstr "������������ ����� CRC\n" -#: g10/armor.c:720 +#: g10/armor.c:738 #, c-format msgid "CRC error; %06lx - %06lx\n" msgstr "������ CRC; %06lx - %06lx\n" -#: g10/armor.c:737 +#: g10/armor.c:755 msgid "premature eof (in Trailer)\n" msgstr "����������� ����� ����� (� ������)\n" -#: g10/armor.c:741 +#: g10/armor.c:759 msgid "error in trailer line\n" msgstr "������ � ����������� ������\n" -#: g10/armor.c:1012 +#: g10/armor.c:1030 #, fuzzy msgid "no valid OpenPGP data found.\n" msgstr "�� ������� ���������� RFC1991 ��� OpenPGP ������.\n" -#: g10/armor.c:1017 +#: g10/armor.c:1035 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "" -#: g10/armor.c:1021 +#: g10/armor.c:1039 msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" @@ -1573,7 +1573,7 @@ msgstr "" msgid "Key generation failed: %s\n" msgstr "��������� ����� �� �������: %s\n" -#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:105 +#: g10/keygen.c:1022 g10/sig-check.c:312 g10/sign.c:111 #, fuzzy, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1581,7 +1581,7 @@ msgstr "" "�������� ���� ������������ � ������� (����������� ������� ��� ����������� " "����������� ����)\n" -#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:107 +#: g10/keygen.c:1024 g10/sig-check.c:314 g10/sign.c:113 #, fuzzy, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1765,7 +1765,7 @@ msgstr "���� %08lX: �������� ���� �� ������: %s\n" msgid "no default public keyring\n" msgstr "��� ������ �������� ������ �� ���������\n" -#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:268 g10/sign.c:580 +#: g10/import.c:420 g10/openfile.c:220 g10/sign.c:274 g10/sign.c:586 #, c-format msgid "writing to `%s'\n" msgstr "������������ � `%s'\n" @@ -2026,7 +2026,7 @@ msgstr "" msgid "Really sign? " msgstr "������������� ���������? " -#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:128 +#: g10/keyedit.c:370 g10/keyedit.c:1835 g10/keyedit.c:1884 g10/sign.c:134 #, fuzzy, c-format msgid "signing failed: %s\n" msgstr "������ ������������: %s\n" @@ -2714,20 +2714,20 @@ msgstr "��������� �������� �����: %s\n" msgid "data not saved; use option \"--output\" to save it\n" msgstr "������ �� ���� ���������; �������������� --\"output\" ��� ����������\n" -#: g10/plaintext.c:311 +#: g10/plaintext.c:317 #, fuzzy msgid "Detached signature.\n" msgstr "%d ������ ��������\n" -#: g10/plaintext.c:315 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "����������, ������� ��� ����� ������: " -#: g10/plaintext.c:336 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "" -#: g10/plaintext.c:379 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "���������� ������� ����������� ������ `%s' .\n" @@ -2833,32 +2833,32 @@ msgstr "��������������: ���� ������� ������� %s\n" msgid "assuming bad signature due to an unknown critical bit\n" msgstr "" -#: g10/sign.c:132 +#: g10/sign.c:138 #, fuzzy, c-format msgid "%s signature from: %s\n" msgstr "������ ������� �� \"" -#: g10/sign.c:263 g10/sign.c:575 +#: g10/sign.c:269 g10/sign.c:581 #, fuzzy, c-format msgid "can't create %s: %s\n" msgstr "%s: ���������� �������: %s\n" -#: g10/sign.c:361 +#: g10/sign.c:367 #, fuzzy msgid "signing:" msgstr "���������" -#: g10/sign.c:404 +#: g10/sign.c:410 #, fuzzy, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "%s: ��������������: ������ ����.\n" -#: g10/textfilter.c:128 +#: g10/textfilter.c:133 #, c-format msgid "can't handle text lines longer than %d characters\n" msgstr "" -#: g10/textfilter.c:218 +#: g10/textfilter.c:227 #, c-format msgid "input line longer than %d characters\n" msgstr "" diff --git a/util/ChangeLog b/util/ChangeLog index 62c7bcc43..5ce18b66f 100644 --- a/util/ChangeLog +++ b/util/ChangeLog @@ -1,3 +1,7 @@ +Fri Dec 31 14:08:15 CET 1999 Werner Koch <[email protected]> + + * logger.c (log_inc_errorcount): New. + Sat Dec 4 12:30:28 CET 1999 Werner Koch <[email protected]> * iobuf.c (iobuf_cancel): Broadcast the new Cancel mesaage to all diff --git a/util/logger.c b/util/logger.c index a1fb1f3d7..d9e908aec 100644 --- a/util/logger.c +++ b/util/logger.c @@ -101,6 +101,12 @@ log_get_errorcount( int clear) return n; } +void +log_inc_errorcount() +{ + errorcount++; +} + void g10_log_print_prefix(const char *text) |