From 0f10fea8da46e372d344a42507c01b31b7b75670 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Thu, 14 Sep 2000 15:45:03 +0000 Subject: [PATCH] See ChangeLog: Thu Sep 14 17:45:11 CEST 2000 Werner Koch --- doc/Makefile.am | 9 +- g10/ChangeLog | 8 + g10/getkey.c | 35 +- g10/parse-packet.c | 16 +- po/ChangeLog | 4 + po/da.po | 118 +++--- po/de.po | 118 +++--- po/eo.po | 814 ++++++++++++++++++++---------------------- po/es_ES.po | 118 +++--- po/fr.po | 118 +++--- po/id.po | 118 +++--- po/it.po | 118 +++--- po/ja.po | 118 +++--- po/nl.po | 118 +++--- po/pl.po | 118 +++--- po/pt_BR.po | 118 +++--- po/pt_PT.po | 118 +++--- po/ru.po | 118 +++--- po/sv.po | 118 +++--- scripts/ChangeLog | 4 + scripts/gnupg.spec.in | 25 +- 21 files changed, 1248 insertions(+), 1201 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index ab5d1294a..cb6874b6d 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,12 +1,17 @@ ## Process this file with automake to create Makefile.in -EXTRA_DIST = DETAILS gpg.sgml gpg.1 faq.raw \ - HACKING OpenPGP README.W32 +EXTRA_DIST = DETAILS gpg.sgml gpg.1 faq.raw FAQ faq.html \ + HACKING OpenPGP README.W32 man_MANS = gpg.1 pkgdata_DATA = FAQ faq.html +BUILT_SOURCES = FAQ faq.html + +CLEANFILES = faq.raw.xref + + %.1 : %.sgml if HAVE_DOCBOOK_TO_MAN diff --git a/g10/ChangeLog b/g10/ChangeLog index b82b7d9f9..268af9290 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,11 @@ +Thu Sep 14 17:45:11 CEST 2000 Werner Koch + + * parse-packet.c (dump_sig_subpkt): Dump key flags. Print special + warning in case of faked ARRs. + + * getkey.c (finsih_lookup): Hack so that for v4 RSA keys the subkey + is used for encryption. + Thu Sep 14 14:20:38 CEST 2000 Werner Koch * g10.c (main): Default S2K algorithms are now SHA1 and CAST5 - this diff --git a/g10/getkey.c b/g10/getkey.c index 26fcda686..434b8a917 100644 --- a/g10/getkey.c +++ b/g10/getkey.c @@ -1598,7 +1598,40 @@ finish_lookup( KBNODE keyblock, PKT_public_key *pk, KBNODE k, byte *namehash, merge_one_pk_and_selfsig( keyblock, keyblock, pk ); } else { - if( primary && pk->pubkey_usage + if( primary && pk->pubkey_usage == PUBKEY_USAGE_ENC + && keyblock->pkt->pkt.public_key->version > 3 + && keyblock->pkt->pkt.public_key->pubkey_algo == PUBKEY_ALGO_RSA + && k->pkt->pkttype == PKT_PUBLIC_KEY ) { + /* Ugly hack to support v4 RSA keys. Here we assume that the + primary key should be used only for signing and a subkey + should be used for encryption. So now look for a subkey. + */ + KBNODE save_k = k; + u32 mainkid[2]; + u32 cur_time = make_timestamp(); + + keyid_from_pk( keyblock->pkt->pkt.public_key, mainkid ); + + for(k = save_k ; k; k = k->next ) { + if( k->pkt->pkttype == PKT_PUBLIC_SUBKEY + && !check_pubkey_algo2( + k->pkt->pkt.public_key->pubkey_algo, + pk->pubkey_usage ) + && !has_expired( k, mainkid, cur_time ) + ) + break; + } + + if( !k ) + k = save_k; /* not found: better use the main key instead */ + else + log_info(_("using secondary key %08lX " + "instead of primary key %08lX\n"), + (ulong)keyid_from_pk( k->pkt->pkt.public_key, NULL), + (ulong)keyid_from_pk( save_k->pkt->pkt.public_key, NULL) + ); + } + else if( primary && pk->pubkey_usage && check_pubkey_algo2( k->pkt->pkt.public_key->pubkey_algo, pk->pubkey_usage ) == G10ERR_WR_PUBKEY_ALGO ) { /* if the usage is not correct, try to use a subkey */ diff --git a/g10/parse-packet.c b/g10/parse-packet.c index eb7cedac7..91aa231b0 100644 --- a/g10/parse-packet.c +++ b/g10/parse-packet.c @@ -702,6 +702,18 @@ dump_sig_subpkt( int hashed, int type, int critical, const char *p=NULL; int i; + /* The CERT has warning out with explains how to use GNUPG to + * detect the ARRs - we print our old message here when it is a faked + * ARR and add an additional notice */ + if ( type == SIGSUBPKT_ARR && !hashed ) { + printf("\tsubpkt %d len %u (additional recipient request)\n" + "WARNING: PGP versions > 5.0 and < 6.5.8 will automagically " + "encrypt to this key and thereby reveal the plaintext to " + "the owner of this ARR key. Detailed info follows:\n", + type, (unsigned)length ); + } + + printf("\t%s%ssubpkt %d len %u (", /*)*/ critical ? "critical ":"", hashed ? "hashed ":"", type, (unsigned)length ); @@ -808,7 +820,9 @@ dump_sig_subpkt( int hashed, int type, int critical, print_string( stdout, buffer, length, ')' ); break; case SIGSUBPKT_KEY_FLAGS: - p = "key flags"; + fputs ( "key flags:", stdout ); + for( i=0; i < length; i++ ) + printf(" %02X", buffer[i] ); break; case SIGSUBPKT_SIGNERS_UID: p = "signer's user ID"; diff --git a/po/ChangeLog b/po/ChangeLog index 58fa5dc41..73ff61453 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 14 17:45:11 CEST 2000 Werner Koch + + * eo.po: Updated. + Wed Jul 12 13:32:06 CEST 2000 Werner Koch * da.po: New from the TP server diff --git a/po/da.po b/po/da.po index fd998d315..06b15dac4 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-03-07 22:51+01:00\n" "Last-Translator: Birger Langkjer \n" "Language-Team: Danish \n" @@ -309,11 +309,11 @@ msgstr "kan ikke msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "ADVARSEL: bruger usikker tilfældig-nummer-generator!!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -694,187 +694,191 @@ msgstr "brug: gpg [flag] " msgid "conflicting commands\n" msgstr "konfliktende kommandoer\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "alternativfil`%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "læser indstillinger fra `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s er ikke et gyldigt tegnsæt\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTITS: %s er ikke til normal brug!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ikke tilladt med %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er meningsløs sammen med %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "valgte resuméalgoritme er ugyldig\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: simpel S2K modus (0) frarådes på det skarpeste\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K modus; skal være 0, 1 el. 3\n" # er det klogt at oversætte TrustDB? -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [filnavn (som gemmes)]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn (som krypteres)]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [filnavn (som signeres)]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn (som dekrypteres)]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key bruger-id" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key bruger-id" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key bruger-id [kommandoer]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key bruger-id" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key bruger-id" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "kan ikke åbne %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [bruger-id] [nøglering]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "påklædning af beskyttelse fejlede: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hash-algoritme `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[filnavn]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Gå til sagen og skriv meddelelsen ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke åbne `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "første bogstav af en notationsnavn skal være et bogstave eller en " "understregning\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" msgstr "" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "en notationsværdi må ikke bruge nogen kontroltegn\n" @@ -2582,20 +2586,16 @@ msgstr "gammeldags (PGP 2.x) signatur\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan ikke slå core-dump fra: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" @@ -2736,11 +2736,11 @@ msgstr "hemmelig n msgid "protection algorithm %d is not supported\n" msgstr "" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" @@ -2825,7 +2825,7 @@ msgstr "" msgid "%s: directory does not exist!\n" msgstr "" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "" @@ -3234,26 +3234,26 @@ msgstr "" msgid "%s: can't create keyring: %s\n" msgstr "" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "" diff --git a/po/de.po b/po/de.po index 78c92b025..4ea6cba24 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-06-12 12:50+0200\n" "Last-Translator: Walter Koch \n" "Language-Team: German \n" @@ -310,11 +310,11 @@ msgstr "kann '%s' nicht schliessen: %s\n" msgid "too many random bits requested; the limit is %d\n" msgstr "Zu viele Zufallswerte angefordert: Die Grenze liegt bei %d\n" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "WARNUNG: Der Zufallsgenerator erzeugt keine echten Zufallszahlen!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -704,176 +704,180 @@ msgstr "Aufruf: gpg [Optionen] " msgid "conflicting commands\n" msgstr "Widersprüchliche Befehle\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "Optionendatei '%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s ist kein gültiger Zeichensatz.\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "Hinweis: %s ist nicht für den üblichen Gebrauch gedacht!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s kann nicht zusammen mit %s verwendet werden!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s zusammen mit %s ist nicht sinnvoll!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "Das ausgewählte Verschlüsslungsverfahren ist ungültig\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "Die angegebene URL für Richtlinien ist ungültig\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "Das Komprimierverfahren muß im Bereich %d bis %d liegen\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed müssen größer als 0 sein\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed müssen größer als 1 sein\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth muß im Bereich 1 bis 255 liegen\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ungültiger \"simple S2K\"-Modus; Wert muß 0, 1 oder 3 sein\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [Dateiname]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [Dateiname]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [Dateiname]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [Dateiname]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [Dateiname]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [Dateiname]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [Dateiname]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key User-ID" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key User-ID" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key User-ID [Befehle]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key User-ID" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key User-ID" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "'%s' kann nicht geöffnet werden: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [User-ID] [Schlüsselbund]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "Entfernen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "Anbringen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "Ungültiges Hashverfahren '%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[Dateiname]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Auf geht's - Botschaft eintippen ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "'%s' kann nicht geöffnet werden\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "Das erste Zeichen eines \"notation\"-Namens muß ein Buchstabe oder\n" "ein Unterstrich sein\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -881,12 +885,12 @@ msgstr "" "Ein \"notation\"-Name darf nur Buchstaben, Zahlen, Punkte oder Unterstriche " "enthalten und muß mit einem '=' enden\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "" "Punkte in einem \"notation\"-Namen müssen von anderen Zeichen umgeben sein\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "Ein \"notation\"-Wert darf keine Kontrollzeichen verwenden\n" @@ -2693,20 +2697,16 @@ msgstr "Unterschrift nach alter (PGP 2.x) Art\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "ungültiges root-Paket in proc_tree() entdeckt\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "core-dump-Dateierzeugung kann nicht abgeschaltet werden: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Experimentiermethoden sollten nicht benutzt werden!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "Diese Verschlüsselungsmethode taugt nicht mehr viel; verwenden Sie eine " @@ -2852,11 +2852,11 @@ msgstr "Teile des geheimen Schl msgid "protection algorithm %d is not supported\n" msgstr "Schutzverfahren %d wird nicht unterstützt\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Ungültiges Mantra; versuchen Sie's doch noch einmal ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "WARNUNG: Unsicherer Schlüssel entdeckt -\n" @@ -2950,7 +2950,7 @@ msgstr "%s: kann nicht zugegriffen werden: %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: Verzeichnis existiert nicht!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: kann nicht erzeugt werden: %s\n" @@ -3371,26 +3371,26 @@ msgstr "Eingabezeile %u ist zu lang oder es fehlt ein LF\n" msgid "%s: can't create keyring: %s\n" msgstr "%s: Schlüsselbund kann nicht erzeugt werden: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: Schlüsselbund erstellt\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "Warnung: Zwei Dateien mit vertraulichem Inhalt vorhanden.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s ist der Unveränderte\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s ist der Neue\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Bitte diesen potentiellen Sicherheitsmangel beseitigen\n" diff --git a/po/eo.po b/po/eo.po index 9feb4ebf2..b0a5e07ac 100644 --- a/po/eo.po +++ b/po/eo.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.1e\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" -"PO-Revision-Date: 2000-06-02 21:04+01:00\n" +"POT-Creation-Date: 2000-07-12 12:13+0200\n" +"PO-Revision-Date: 2000-08-16 23:19+01:00\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" @@ -255,7 +255,7 @@ msgstr "... msgid "you found a bug ... (%s:%d)\n" msgstr "vi trovis cimon ... (%s:%d)\n" -#: cipher/random.c:311 g10/import.c:128 g10/keygen.c:1255 +#: cipher/random.c:311 g10/import.c:127 g10/keygen.c:1249 #, c-format msgid "can't open `%s': %s\n" msgstr "ne povas malfermi '%s': %s\n" @@ -325,7 +325,7 @@ msgstr "" "NE UZU DATENOJN KREITAJN DE ÆI TIU PROGRAMO!!\n" "\n" -#: cipher/rndlinux.c:142 +#: cipher/rndlinux.c:141 #, c-format msgid "" "\n" @@ -336,7 +336,7 @@ msgstr "" "Nesufiæe da stokastaj datenoj. Bonvolu fari ion por ebligi al la\n" "mastruma sistemo kolekti pli da entropio! (Mankas %d bitokoj)\n" -#: g10/g10.c:206 +#: g10/g10.c:197 msgid "" "@Commands:\n" " " @@ -344,139 +344,139 @@ msgstr "" "@Komandoj:\n" " " -#: g10/g10.c:208 +#: g10/g10.c:199 msgid "|[file]|make a signature" msgstr "|[dosiero]|fari subskribon" -#: g10/g10.c:209 +#: g10/g10.c:200 msgid "|[file]|make a clear text signature" msgstr "|[dosiero]|fari klartekstan subskribon" -#: g10/g10.c:210 +#: g10/g10.c:201 msgid "make a detached signature" msgstr "fari apartan subskribon" -#: g10/g10.c:211 +#: g10/g10.c:202 msgid "encrypt data" msgstr "æifri datenojn" -#: g10/g10.c:212 +#: g10/g10.c:203 msgid "encryption only with symmetric cipher" msgstr "æifri nur kun simetria æifro" -#: g10/g10.c:213 +#: g10/g10.c:204 msgid "store only" msgstr "nur skribi" -#: g10/g10.c:214 +#: g10/g10.c:205 msgid "decrypt data (default)" msgstr "malæifri datenojn (implicita elekto)" -#: g10/g10.c:215 +#: g10/g10.c:206 msgid "verify a signature" msgstr "kontroli subskribon" -#: g10/g10.c:217 +#: g10/g10.c:208 msgid "list keys" msgstr "listigi þlosilojn" -#: g10/g10.c:219 +#: g10/g10.c:210 msgid "list keys and signatures" msgstr "listigi þlosilojn kaj subskribojn" -#: g10/g10.c:220 +#: g10/g10.c:211 msgid "check key signatures" msgstr "kontroli þlosilsubskribojn" -#: g10/g10.c:221 +#: g10/g10.c:212 msgid "list keys and fingerprints" msgstr "listigi þlosilojn kaj fingroþpurojn" -#: g10/g10.c:222 +#: g10/g10.c:213 msgid "list secret keys" msgstr "listigi sekretajn þlosilojn" -#: g10/g10.c:223 +#: g10/g10.c:214 msgid "generate a new key pair" msgstr "krei novan þlosilparon" -#: g10/g10.c:224 +#: g10/g10.c:215 msgid "remove key from the public keyring" msgstr "forigi þlosilon de la publika þlosilaro" -#: g10/g10.c:226 +#: g10/g10.c:217 msgid "remove key from the secret keyring" msgstr "forigi þlosilon de la sekreta þlosilaro" -#: g10/g10.c:227 +#: g10/g10.c:218 msgid "sign a key" msgstr "subskribi þlosilon" -#: g10/g10.c:228 +#: g10/g10.c:219 msgid "sign a key locally" msgstr "subskribi þlosilon loke" -#: g10/g10.c:229 +#: g10/g10.c:220 msgid "sign or edit a key" msgstr "subskribi aý redakti þlosilon" -#: g10/g10.c:230 +#: g10/g10.c:221 msgid "generate a revocation certificate" msgstr "krei revokatestilon" -#: g10/g10.c:231 +#: g10/g10.c:222 msgid "export keys" msgstr "eksporti þlosilojn" -#: g10/g10.c:232 +#: g10/g10.c:223 msgid "export keys to a key server" msgstr "eksporti þlosilojn al þlosilservilo" -#: g10/g10.c:233 +#: g10/g10.c:224 msgid "import keys from a key server" msgstr "importi þlosilojn de þlosilservilo" -#: g10/g10.c:237 +#: g10/g10.c:228 msgid "import/merge keys" msgstr "importi/kunfandi þlosilojn" -#: g10/g10.c:239 +#: g10/g10.c:230 msgid "list only the sequence of packets" msgstr "listigi nur la sinsekvon de paketoj" -#: g10/g10.c:241 +#: g10/g10.c:232 msgid "export the ownertrust values" msgstr "eksporti la posedantofido-valorojn" -#: g10/g10.c:243 +#: g10/g10.c:234 msgid "import ownertrust values" msgstr "importi posedantofido-valorojn" -#: g10/g10.c:245 +#: g10/g10.c:236 msgid "update the trust database" msgstr "aktualigi la fido-datenaron" -#: g10/g10.c:247 +#: g10/g10.c:238 msgid "|[NAMES]|check the trust database" msgstr "|[NOMOJ]|kontroli la fido-datenaron" -#: g10/g10.c:248 +#: g10/g10.c:239 msgid "fix a corrupted trust database" msgstr "ripari fuþitan fido-datenaron" -#: g10/g10.c:249 +#: g10/g10.c:240 msgid "De-Armor a file or stdin" msgstr "elkirasigi dosieron aý la normalan enigon" -#: g10/g10.c:251 +#: g10/g10.c:242 msgid "En-Armor a file or stdin" msgstr "enkirasigi dosieron aý la normalan enigon" -#: g10/g10.c:253 +#: g10/g10.c:244 msgid "|algo [files]|print message digests" msgstr "|metodo [dosieroj]|presi mesaøo-kompendiojn" -#: g10/g10.c:257 +#: g10/g10.c:248 msgid "" "@\n" "Options:\n" @@ -486,152 +486,148 @@ msgstr "" "Opcioj:\n" " " -#: g10/g10.c:259 +#: g10/g10.c:250 msgid "create ascii armored output" msgstr "krei eligon en askia kiraso" -#: g10/g10.c:261 +#: g10/g10.c:252 msgid "|NAME|encrypt for NAME" msgstr "|NOMO|æifri por NOMO" -#: g10/g10.c:264 +#: g10/g10.c:255 msgid "|NAME|use NAME as default recipient" msgstr "|NOMO|uzi NOMOn kiel implicitan ricevonton" -#: g10/g10.c:266 +#: g10/g10.c:257 msgid "use the default key as default recipient" msgstr "uzi la implicitan þlosilon kiel implicitan ricevonton" -#: g10/g10.c:270 +#: g10/g10.c:261 msgid "use this user-id to sign or decrypt" msgstr "uzi æi tiun uzantidentigilon por subskribi aý malæifri" -#: g10/g10.c:271 +#: g10/g10.c:262 msgid "|N|set compress level N (0 disables)" msgstr "|N|difini densig-nivelon N (0=nenia)" -#: g10/g10.c:273 +#: g10/g10.c:264 msgid "use canonical text mode" msgstr "uzi tekstan reøimon" -#: g10/g10.c:274 +#: g10/g10.c:265 msgid "use as output file" msgstr "uzi dosieron por eligo" -#: g10/g10.c:275 +#: g10/g10.c:266 msgid "verbose" msgstr "detala eligo" -#: g10/g10.c:276 +#: g10/g10.c:267 msgid "be somewhat more quiet" msgstr "iom malpli da informoj" -#: g10/g10.c:277 +#: g10/g10.c:268 msgid "don't use the terminal at all" msgstr "tute ne uzi la terminalon" -#: g10/g10.c:278 +#: g10/g10.c:269 msgid "force v3 signatures" msgstr "devigi v3-subskribojn" -#: g10/g10.c:279 +#: g10/g10.c:270 msgid "always use a MDC for encryption" msgstr "æiam uzi sigelon (MDC) por æifrado" -#: g10/g10.c:280 +#: g10/g10.c:271 msgid "do not make any changes" msgstr "fari neniajn þanøojn" #. { oInteractive, "interactive", 0, N_("prompt before overwriting") }, -#: g10/g10.c:282 +#: g10/g10.c:273 msgid "batch mode: never ask" msgstr "neinteraga reøimo: neniam demandi" -#: g10/g10.c:283 +#: g10/g10.c:274 msgid "assume yes on most questions" msgstr "supozi \"jes\" æe la plej multaj demandoj" -#: g10/g10.c:284 +#: g10/g10.c:275 msgid "assume no on most questions" msgstr "supozi \"ne\" æe la plej multaj demandoj" -#: g10/g10.c:285 +#: g10/g10.c:276 msgid "add this keyring to the list of keyrings" msgstr "aldoni æi tiun þlosilaron al la listo de þlosilaroj" -#: g10/g10.c:286 +#: g10/g10.c:277 msgid "add this secret keyring to the list" msgstr "aldoni æi tiun sekretan þlosilaron al la listo" -#: g10/g10.c:287 +#: g10/g10.c:278 msgid "|NAME|use NAME as default secret key" msgstr "|NOMO|uzi NOMOn kiel la implicitan sekretan þlosilon" -#: g10/g10.c:288 +#: g10/g10.c:279 msgid "|HOST|use this keyserver to lookup keys" msgstr "|SERVILO|uzi æi tiun þlosilservilon por seræi þlosilojn" -#: g10/g10.c:289 +#: g10/g10.c:280 msgid "|NAME|set terminal charset to NAME" msgstr "|NOMO|difini NOMOn kiel la signaron de la terminalo" -#: g10/g10.c:290 +#: g10/g10.c:281 msgid "read options from file" msgstr "legi la opciojn el dosiero" -#: g10/g10.c:294 +#: g10/g10.c:285 msgid "|FD|write status info to this FD" msgstr "|FD|skribi statusinformojn al FD (dosierpriskribilo)" -#: g10/g10.c:299 -msgid "|KEYID|ulimately trust this key" -msgstr "" - -#: g10/g10.c:300 +#: g10/g10.c:290 msgid "|FILE|load extension module FILE" msgstr "|DOSIERO|legi aldonan bibliotekon DOSIERO" -#: g10/g10.c:301 +#: g10/g10.c:291 msgid "emulate the mode described in RFC1991" msgstr "imiti la reøimon priskribitan en RFC 1991" -#: g10/g10.c:302 +#: g10/g10.c:292 msgid "set all packet, cipher and digest options to OpenPGP behavior" msgstr "þalti æiujn paket-, æifrad- kaj kompendi-opciojn al OpenPGP-konduto" -#: g10/g10.c:303 +#: g10/g10.c:293 msgid "|N|use passphrase mode N" msgstr "|N|uzi pasfraz-reøimon N" -#: g10/g10.c:305 +#: g10/g10.c:295 msgid "|NAME|use message digest algorithm NAME for passphrases" msgstr "|NOMO|uzi kompendi-metodon NOMO por pasfrazoj" -#: g10/g10.c:307 +#: g10/g10.c:297 msgid "|NAME|use cipher algorithm NAME for passphrases" msgstr "|NOMO|uzi æifrad-metodon NOMO por pasfrazoj" -#: g10/g10.c:308 +#: g10/g10.c:298 msgid "|NAME|use cipher algorithm NAME" msgstr "|NOMO|uzi æifrad-metodon NOMO" -#: g10/g10.c:309 +#: g10/g10.c:299 msgid "|NAME|use message digest algorithm NAME" msgstr "|NOMO|uzi kompendi-metodon NOMO" -#: g10/g10.c:310 +#: g10/g10.c:300 msgid "|N|use compress algorithm N" msgstr "|N|uzi densig-metodon N" -#: g10/g10.c:311 +#: g10/g10.c:301 msgid "throw keyid field of encrypted packets" msgstr "forigi la þlosilidentigilon de æifritaj paketoj" -#: g10/g10.c:312 +#: g10/g10.c:302 msgid "|NAME=VALUE|use this notation data" msgstr "|NOMO=VALORO|uzi æi tiun notacian datenon" -#: g10/g10.c:315 +#: g10/g10.c:305 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -639,7 +635,7 @@ msgstr "" "@\n" "(Vidu la manpaøon por kompleta listo de æiuj komandoj kaj opcioj)\n" -#: g10/g10.c:318 +#: g10/g10.c:308 msgid "" "@\n" "Examples:\n" @@ -659,15 +655,15 @@ msgstr "" " --list-keys [nomoj] montri þlosilojn\n" " --fingerprint [nomoj] montri fingroþpurojn\n" -#: g10/g10.c:418 +#: g10/g10.c:403 msgid "Please report bugs to .\n" msgstr "Bonvolu raporti cimojn al .\n" -#: g10/g10.c:422 +#: g10/g10.c:407 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)" -#: g10/g10.c:425 +#: g10/g10.c:410 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -677,7 +673,7 @@ msgstr "" "subskribi, kontroli, æifri aý malæifri\n" "implicita operacio dependas de la enigataj datenoj\n" -#: g10/g10.c:432 +#: g10/g10.c:417 msgid "" "\n" "Supported algorithms:\n" @@ -685,182 +681,182 @@ msgstr "" "\n" "Realigitaj metodoj:\n" -#: g10/g10.c:511 +#: g10/g10.c:496 msgid "usage: gpg [options] " msgstr "uzado: gpg [opcioj] " -#: g10/g10.c:564 +#: g10/g10.c:549 msgid "conflicting commands\n" msgstr "malkongruaj komandoj\n" -#: g10/g10.c:703 +#: g10/g10.c:692 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: g10/g10.c:707 +#: g10/g10.c:696 #, c-format msgid "option file `%s': %s\n" msgstr "opcio-dosiero '%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:703 #, c-format msgid "reading options from `%s'\n" msgstr "legas opciojn el '%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:893 #, c-format msgid "%s is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:949 g10/g10.c:958 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTO: %s ne estas por normala uzado!\n" -#: g10/g10.c:970 +#: g10/g10.c:951 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ne eblas kun %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:954 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:973 g10/g10.c:985 msgid "selected cipher algorithm is invalid\n" msgstr "elektita æifrad-metodo ne validas\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:979 g10/g10.c:991 msgid "selected digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/g10.c:1014 +#: g10/g10.c:995 msgid "the given policy URL is invalid\n" msgstr "la donita gvidlinia URL ne validas\n" -#: g10/g10.c:1017 +#: g10/g10.c:998 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "la densig-metodo devas esti inter %d kaj %d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1000 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed devas esti pli granda ol 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1002 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed devas esti pli granda ol 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1004 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth devas esti inter 1 kaj 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1007 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTO: simpla S2K-reøimo (0) estas forte malrekomendata\n" -#: g10/g10.c:1030 +#: g10/g10.c:1011 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "nevalida S2K-reøimo; devas esti 0, 1 aý 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1096 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1102 msgid "--store [filename]" msgstr "--store [dosiero]" -#: g10/g10.c:1128 +#: g10/g10.c:1109 msgid "--symmetric [filename]" msgstr "--symmetric [dosiero]" -#: g10/g10.c:1136 +#: g10/g10.c:1117 msgid "--encrypt [filename]" msgstr "--encrypt [dosiero]" -#: g10/g10.c:1149 +#: g10/g10.c:1130 msgid "--sign [filename]" msgstr "--sign [dosiero]" -#: g10/g10.c:1162 +#: g10/g10.c:1143 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/g10.c:1176 +#: g10/g10.c:1157 msgid "--clearsign [filename]" msgstr "--clearsign [dosiero]" -#: g10/g10.c:1193 +#: g10/g10.c:1174 msgid "--decrypt [filename]" msgstr "--decrypt [dosiero]" -#: g10/g10.c:1201 +#: g10/g10.c:1182 msgid "--sign-key user-id" msgstr "--sign-key uzantidentigilo" -#: g10/g10.c:1209 +#: g10/g10.c:1190 msgid "--lsign-key user-id" msgstr "--lsign-key uzantidentigilo" -#: g10/g10.c:1217 +#: g10/g10.c:1198 msgid "--edit-key user-id [commands]" msgstr "--edit-key uzantidentigilo [komandoj]" -#: g10/g10.c:1233 +#: g10/g10.c:1214 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key uzantidentigilo" -#: g10/g10.c:1236 +#: g10/g10.c:1217 msgid "--delete-key user-id" msgstr "--delete-key uzantidentigilo" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "ne povas malfermi %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1269 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [uzantidentigilo] [þlosilaro]" -#: g10/g10.c:1354 +#: g10/g10.c:1335 #, c-format msgid "dearmoring failed: %s\n" msgstr "elkirasigo malsukcesis: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1343 #, c-format msgid "enarmoring failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1411 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1492 msgid "[filename]" msgstr "[dosiero]" -#: g10/g10.c:1518 +#: g10/g10.c:1496 msgid "Go ahead and type your message ...\n" msgstr "Ektajpu vian mesaøon ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1499 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "ne povas malfermi '%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1669 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "la unua signo de notacia nomo devas esti litero aý substreko\n" -#: g10/g10.c:1700 +#: g10/g10.c:1675 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -868,11 +864,11 @@ msgstr "" "notacia nomo devas enhavi nur literojn, ciferojn, punktojn aý substrekojn " "kaj fini per '='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1681 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "punktoj en notacia nomo devas esti inter aliaj signoj\n" -#: g10/g10.c:1714 +#: g10/g10.c:1689 msgid "a notation value must not use any control characters\n" msgstr "notacia valoro ne povas enhavi stirsignojn\n" @@ -982,7 +978,6 @@ msgid "Key is no longer used" msgstr "Þlosilo estas ne plu uzata" #: g10/pkclist.c:124 -#, fuzzy msgid "User ID is no longer valid" msgstr "Uzantidentigilo ne plu validas" @@ -1251,58 +1246,58 @@ msgstr "skribas mem-subskribon\n" msgid "writing key binding signature\n" msgstr "skribas þlosilbindan subskribon\n" -#: g10/keygen.c:261 g10/keygen.c:345 g10/keygen.c:435 +#: g10/keygen.c:261 g10/keygen.c:345 g10/keygen.c:433 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "þlosilgrando nevalida; uzas %u bitojn\n" -#: g10/keygen.c:266 g10/keygen.c:350 g10/keygen.c:440 +#: g10/keygen.c:266 g10/keygen.c:350 g10/keygen.c:438 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "þlosilgrando rondigita øis %u bitoj\n" -#: g10/keygen.c:539 +#: g10/keygen.c:537 msgid "Please select what kind of key you want:\n" msgstr "Bonvolu elekti, kian þlosilon vi deziras:\n" -#: g10/keygen.c:541 +#: g10/keygen.c:539 #, c-format msgid " (%d) DSA and ElGamal (default)\n" msgstr " (%d) DSA kaj ElGamal (implicita elekto)\n" -#: g10/keygen.c:542 +#: g10/keygen.c:540 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (nur subskribi)\n" -#: g10/keygen.c:544 +#: g10/keygen.c:542 #, c-format msgid " (%d) ElGamal (encrypt only)\n" msgstr " (%d) ElGamal (nur æifri)\n" -#: g10/keygen.c:545 +#: g10/keygen.c:543 #, c-format msgid " (%d) ElGamal (sign and encrypt)\n" msgstr " (%d) ElGamal (subskribi kaj æifri)\n" -#: g10/keygen.c:547 -#, fuzzy, c-format +#: g10/keygen.c:545 +#, c-format msgid " (%d) RSA (sign and encrypt)\n" -msgstr " (%d) ElGamal (subskribi kaj æifri)\n" +msgstr " (%d) RSA (subskribi kaj æifri)\n" -#: g10/keygen.c:551 +#: g10/keygen.c:549 msgid "Your selection? " msgstr "Via elekto? " -#: g10/keygen.c:562 g10/keygen.c:570 +#: g10/keygen.c:560 g10/keygen.c:568 msgid "Do you really want to create a sign and encrypt key? " msgstr "Æu vi vere volas krei subskriban kaj æifran þlosilon? " -#: g10/keygen.c:584 +#: g10/keygen.c:582 msgid "Invalid selection.\n" msgstr "Nevalida elekto.\n" -#: g10/keygen.c:596 +#: g10/keygen.c:594 #, c-format msgid "" "About to generate a new %s keypair.\n" @@ -1315,22 +1310,21 @@ msgstr "" " implicita þlosilgrando estas 1024 bitoj\n" " plej granda rekomendata þlosilgrando estas 2048 bitoj\n" -#: g10/keygen.c:603 +#: g10/keygen.c:601 msgid "What keysize do you want? (1024) " msgstr "Kiun þlosilgrandon vi deziras? (1024) " -#: g10/keygen.c:608 +#: g10/keygen.c:606 msgid "DSA only allows keysizes from 512 to 1024\n" msgstr "DSA permesas þlosilgrandon nur inter 512 kaj 1024\n" -#: g10/keygen.c:610 +#: g10/keygen.c:608 msgid "keysize too small; 768 is smallest value allowed.\n" msgstr "þlosilgrando tro malgranda; 768 estas plej eta permesata valoro.\n" -#: g10/keygen.c:612 -#, fuzzy +#: g10/keygen.c:610 msgid "keysize too small; 1024 is smallest value allowed for RSA.\n" -msgstr "þlosilgrando tro malgranda; 768 estas plej eta permesata valoro.\n" +msgstr "þlosilgrando tro malgranda; 1024 estas plej eta valoro por RSA.\n" #. It is ridiculous and an annoyance to use larger key sizes! #. * GnuPG can handle much larger sizes; but it takes an eternity @@ -1340,12 +1334,12 @@ msgstr " #. * So, before you complain about this limitation, I suggest that #. * you start a discussion with Marvin about this theme and then #. * do whatever you want. -#: g10/keygen.c:623 +#: g10/keygen.c:621 #, c-format msgid "keysize too large; %d is largest value allowed.\n" msgstr "þlosilgrando tro granda; %d estas plej granda permesata valoro.\n" -#: g10/keygen.c:628 +#: g10/keygen.c:626 msgid "" "Keysizes larger than 2048 are not suggested because\n" "computations take REALLY long!\n" @@ -1353,11 +1347,11 @@ msgstr "" "Þlosilgrandoj pli grandaj ol 2048 ne estas rekomendataj,\n" "æar la komputado daýras TRE longe!\n" -#: g10/keygen.c:631 +#: g10/keygen.c:629 msgid "Are you sure that you want this keysize? " msgstr "Æu vi estas certa, ke vi deziras æi tiun þlosilgrandon? " -#: g10/keygen.c:632 +#: g10/keygen.c:630 msgid "" "Okay, but keep in mind that your monitor and keyboard radiation is also very " "vulnerable to attacks!\n" @@ -1365,21 +1359,21 @@ msgstr "" "Bone, sed pripensu, ke la elradiado de viaj ekrano kaj klavaro estas tre " "facile kaptebla!\n" -#: g10/keygen.c:640 +#: g10/keygen.c:638 msgid "Do you really need such a large keysize? " msgstr "Æu vi vere bezonas tiom grandan þlosilgrandon? " -#: g10/keygen.c:646 +#: g10/keygen.c:644 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Petita þlosilgrando estas %u bitoj\n" -#: g10/keygen.c:649 g10/keygen.c:653 +#: g10/keygen.c:647 g10/keygen.c:651 #, c-format msgid "rounded up to %u bits\n" msgstr "rondigita øis %u bitoj\n" -#: g10/keygen.c:701 +#: g10/keygen.c:699 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -1395,25 +1389,25 @@ msgstr "" " m = þlosilo eksvalidiøos post n monatoj\n" " y = þlosilo eksvalidiøos post n jaroj\n" -#: g10/keygen.c:716 +#: g10/keygen.c:714 msgid "Key is valid for? (0) " msgstr "Þlosilo validu ...? (0) " -#: g10/keygen.c:721 +#: g10/keygen.c:719 msgid "invalid value\n" msgstr "nevalida valoro\n" -#: g10/keygen.c:726 +#: g10/keygen.c:724 msgid "Key does not expire at all\n" msgstr "Þlosilo neniam eksvalidiøos\n" #. print the date when the key expires -#: g10/keygen.c:732 +#: g10/keygen.c:730 #, c-format msgid "Key expires at %s\n" msgstr "Þlosilo eksvalidiøos je %s\n" -#: g10/keygen.c:735 +#: g10/keygen.c:733 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -1421,11 +1415,11 @@ msgstr "" "Via sistemo ne povas montri datojn post 2038.\n" "Tamen, øi estos øuste traktata øis 2106.\n" -#: g10/keygen.c:740 +#: g10/keygen.c:738 msgid "Is this correct (y/n)? " msgstr "Æu tio estas øusta (j/n)? " -#: g10/keygen.c:783 +#: g10/keygen.c:781 msgid "" "\n" "You need a User-ID to identify your key; the software constructs the user " @@ -1440,44 +1434,44 @@ msgstr "" " \"Heinrich Heine (la poeto) \"\n" "\n" -#: g10/keygen.c:795 +#: g10/keygen.c:793 msgid "Real name: " msgstr "Vera nomo: " -#: g10/keygen.c:803 +#: g10/keygen.c:797 msgid "Invalid character in name\n" msgstr "Nevalida signo en nomo\n" -#: g10/keygen.c:805 +#: g10/keygen.c:799 msgid "Name may not start with a digit\n" msgstr "Nomo ne povas komenciøi per cifero\n" -#: g10/keygen.c:807 +#: g10/keygen.c:801 msgid "Name must be at least 5 characters long\n" msgstr "Nomo devas havi almenaý 5 signojn\n" -#: g10/keygen.c:815 +#: g10/keygen.c:809 msgid "Email address: " msgstr "Retadreso: " -#: g10/keygen.c:826 +#: g10/keygen.c:820 msgid "Not a valid email address\n" msgstr "Nevalida retadreso\n" -#: g10/keygen.c:834 +#: g10/keygen.c:828 msgid "Comment: " msgstr "Komento: " -#: g10/keygen.c:840 +#: g10/keygen.c:834 msgid "Invalid character in comment\n" msgstr "Nevalida signo en komento\n" -#: g10/keygen.c:863 +#: g10/keygen.c:857 #, c-format msgid "You are using the `%s' character set.\n" msgstr "Vi uzas la signaron '%s'.\n" -#: g10/keygen.c:869 +#: g10/keygen.c:863 #, c-format msgid "" "You selected this USER-ID:\n" @@ -1488,27 +1482,27 @@ msgstr "" " \"%s\"\n" "\n" -#: g10/keygen.c:873 +#: g10/keygen.c:867 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Bonvolu ne meti la retadreson en la veran nomon aý la komenton\n" -#: g10/keygen.c:878 +#: g10/keygen.c:872 msgid "NnCcEeOoQq" msgstr "NnKkAaBbFf" -#: g10/keygen.c:888 +#: g10/keygen.c:882 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Þanøu (N)omon, (K)omenton, (A)adreson, aý (F)ini? " -#: g10/keygen.c:889 +#: g10/keygen.c:883 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Þanøu (N)omon, (K)omenton, (A)adreson, aý (B)one/(F)ini? " -#: g10/keygen.c:908 +#: g10/keygen.c:902 msgid "Please correct the error first\n" msgstr "Bonvolu korekti la eraron unue\n" -#: g10/keygen.c:946 +#: g10/keygen.c:940 msgid "" "You need a Passphrase to protect your secret key.\n" "\n" @@ -1516,11 +1510,11 @@ msgstr "" "Vi bezonas pasfrazon por protekti vian sekretan þlosilon.\n" "\n" -#: g10/keyedit.c:468 g10/keygen.c:954 +#: g10/keyedit.c:468 g10/keygen.c:948 msgid "passphrase not correctly repeated; try again.\n" msgstr "la pasfrazo ne estis øuste ripetita; provu denove.\n" -#: g10/keygen.c:960 +#: g10/keygen.c:954 msgid "" "You don't want a passphrase - this is probably a *bad* idea!\n" "I will do it anyway. You can change your passphrase at any time,\n" @@ -1532,7 +1526,7 @@ msgstr "" "uzante æi tiun programon kun la opcio \"--edit-key\".\n" "\n" -#: g10/keygen.c:981 +#: g10/keygen.c:975 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -1544,29 +1538,29 @@ msgstr "" "kreado de la primoj; tio donas al la stokastilo pli bonan þancon\n" "akiri sufiæe da entropio.\n" -#: g10/keygen.c:1430 +#: g10/keygen.c:1424 msgid "DSA keypair will have 1024 bits.\n" msgstr "DSA-þlosilparo havos 1024 bitojn.\n" -#: g10/keygen.c:1473 +#: g10/keygen.c:1467 msgid "Key generation canceled.\n" msgstr "Kreado de þlosiloj nuligita.\n" -#: g10/keygen.c:1570 +#: g10/keygen.c:1564 #, c-format msgid "writing public key to `%s'\n" msgstr "skribas publikan þlosilon al '%s'\n" -#: g10/keygen.c:1571 +#: g10/keygen.c:1565 #, c-format msgid "writing secret key to `%s'\n" msgstr "skribas sekretan þlosilon al '%s'\n" -#: g10/keygen.c:1667 +#: g10/keygen.c:1661 msgid "public and secret key created and signed.\n" msgstr "publika kaj sekreta þlosiloj kreitaj kaj subskribitaj.\n" -#: g10/keygen.c:1672 +#: g10/keygen.c:1666 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a secondary key for this purpose.\n" @@ -1574,12 +1568,12 @@ msgstr "" "Notu, ke æi tiu þlosilo ne estas uzebla por æifrado. Vi eble volos\n" "uzi la komandon \"--edit-key\" por krei flankan þlosilon por tiu celo.\n" -#: g10/keygen.c:1689 g10/keygen.c:1790 +#: g10/keygen.c:1683 g10/keygen.c:1784 #, c-format msgid "Key generation failed: %s\n" msgstr "Kreado de þlosiloj malsukcesis: %s\n" -#: g10/keygen.c:1733 g10/sig-check.c:315 g10/sign.c:112 +#: g10/keygen.c:1727 g10/sig-check.c:318 g10/sign.c:112 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -1587,7 +1581,7 @@ msgstr "" "þlosilo estis kreita %lu sekundon en la estonteco (tempotordo aý " "horloøeraro)\n" -#: g10/keygen.c:1735 g10/sig-check.c:317 g10/sign.c:114 +#: g10/keygen.c:1729 g10/sig-check.c:320 g10/sign.c:114 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -1595,11 +1589,11 @@ msgstr "" "þlosilo estis kreita %lu sekundojn en la estonteco (tempotordo aý " "horloøeraro)\n" -#: g10/keygen.c:1768 +#: g10/keygen.c:1762 msgid "Really create? " msgstr "Æu vere krei? " -#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454 +#: g10/encode.c:91 g10/openfile.c:168 g10/openfile.c:277 g10/tdbio.c:454 #: g10/tdbio.c:515 #, c-format msgid "%s: can't open: %s\n" @@ -1610,17 +1604,17 @@ msgstr "%s: ne povas malfermi: %s\n" msgid "error creating passphrase: %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: g10/encode.c:171 g10/encode.c:324 +#: g10/encode.c:171 g10/encode.c:319 #, c-format msgid "%s: WARNING: empty file\n" msgstr "%s: AVERTO: malplena dosiero\n" -#: g10/encode.c:271 +#: g10/encode.c:266 #, c-format msgid "reading from `%s'\n" msgstr "legas el '%s'\n" -#: g10/encode.c:492 +#: g10/encode.c:483 #, c-format msgid "%s/%s encrypted for: %s\n" msgstr "%s/%s-æifrita por: %s\n" @@ -1675,251 +1669,240 @@ msgid "using secondary key %08lX instead of primary key %08lX\n" msgstr "uzas flankan þlosilon %08lX anstataý la æefa þlosilo %08lX\n" #: g10/getkey.c:2017 -#, fuzzy msgid "[User id not found]" -msgstr "%s: uzanto ne trovita\n" +msgstr "[Uzantidentigilo ne trovita]" -#: g10/import.c:182 +#: g10/import.c:181 #, c-format msgid "skipping block of type %d\n" msgstr "ignoras blokon de speco %d\n" -#: g10/import.c:189 g10/trustdb.c:1806 g10/trustdb.c:1847 +#: g10/import.c:188 g10/trustdb.c:1740 g10/trustdb.c:1781 #, c-format msgid "%lu keys so far processed\n" msgstr "%lu þlosiloj jam traktitaj\n" -#: g10/import.c:194 +#: g10/import.c:193 #, c-format msgid "error reading `%s': %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: g10/import.c:204 +#: g10/import.c:203 #, c-format msgid "Total number processed: %lu\n" msgstr " Nombro traktita entute: %lu\n" -#: g10/import.c:206 -#, fuzzy, c-format -msgid " skipped new keys: %lu\n" -msgstr " novaj subþlosiloj: %lu\n" - -#: g10/import.c:209 +#: g10/import.c:205 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sen uzantidentigilo: %lu\n" -#: g10/import.c:211 +#: g10/import.c:207 #, c-format msgid " imported: %lu" msgstr " importitaj: %lu" -#: g10/import.c:217 +#: g10/import.c:213 #, c-format msgid " unchanged: %lu\n" msgstr " neþanøitaj: %lu\n" -#: g10/import.c:219 +#: g10/import.c:215 #, c-format msgid " new user IDs: %lu\n" msgstr " novaj uzantidentigiloj: %lu\n" -#: g10/import.c:221 +#: g10/import.c:217 #, c-format msgid " new subkeys: %lu\n" msgstr " novaj subþlosiloj: %lu\n" -#: g10/import.c:223 +#: g10/import.c:219 #, c-format msgid " new signatures: %lu\n" msgstr " novaj subskriboj: %lu\n" -#: g10/import.c:225 +#: g10/import.c:221 #, c-format msgid " new key revocations: %lu\n" msgstr " novaj þlosilrevokoj: %lu\n" -#: g10/import.c:227 +#: g10/import.c:223 #, c-format msgid " secret keys read: %lu\n" msgstr " sekretaj þlosiloj legitaj: %lu\n" -#: g10/import.c:229 +#: g10/import.c:225 #, c-format msgid " secret keys imported: %lu\n" msgstr "sekretaj þlosiloj importitaj: %lu\n" -#: g10/import.c:231 +#: g10/import.c:227 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "sekretaj þlosiloj neþanøitaj: %lu\n" -#: g10/import.c:391 g10/import.c:590 +#: g10/import.c:386 g10/import.c:578 #, c-format msgid "key %08lX: no user ID\n" msgstr "þlosilo %08lX: mankas uzantidentigilo\n" -#: g10/import.c:405 +#: g10/import.c:400 #, c-format msgid "key %08lX: no valid user IDs\n" msgstr "þlosilo %08lX: mankas valida uzantidentigilo\n" -#: g10/import.c:407 +#: g10/import.c:402 msgid "this may be caused by a missing self-signature\n" msgstr "tio povas esti kaýzata de mankanta mem-subskribo\n" -#: g10/import.c:418 g10/import.c:657 +#: g10/import.c:413 g10/import.c:645 #, c-format msgid "key %08lX: public key not found: %s\n" msgstr "þlosilo %08lX: publika þlosilo ne trovita: %s\n" -#: g10/import.c:423 -#, fuzzy, c-format -msgid "key %08lX: new key - skipped\n" -msgstr "þlosilo %08lX: ne estas RFC-2440-þlosilo - ignorita\n" - -#: g10/import.c:431 +#: g10/import.c:419 msgid "no default public keyring\n" msgstr "mankas implicita publika þlosilaro\n" -#: g10/import.c:435 g10/openfile.c:230 g10/sign.c:295 g10/sign.c:615 +#: g10/import.c:423 g10/openfile.c:220 g10/sign.c:295 g10/sign.c:611 #, c-format msgid "writing to `%s'\n" msgstr "skribas al '%s'\n" -#: g10/import.c:438 g10/import.c:496 g10/import.c:605 g10/import.c:706 +#: g10/import.c:426 g10/import.c:484 g10/import.c:593 g10/import.c:694 #, c-format msgid "can't lock keyring `%s': %s\n" msgstr "ne povas þlosi la þlosilaron '%s': %s\n" -#: g10/import.c:441 g10/import.c:499 g10/import.c:608 g10/import.c:709 +#: g10/import.c:429 g10/import.c:487 g10/import.c:596 g10/import.c:697 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "eraro dum skribado de þlosilaro '%s': %s\n" -#: g10/import.c:446 +#: g10/import.c:434 #, c-format msgid "key %08lX: public key imported\n" msgstr "þlosilo %08lX: publika þlosilo importita\n" -#: g10/import.c:463 +#: g10/import.c:451 #, c-format msgid "key %08lX: doesn't match our copy\n" msgstr "þlosilo %08lX: diferencas de nia kopio\n" -#: g10/import.c:472 g10/import.c:665 +#: g10/import.c:460 g10/import.c:653 #, c-format msgid "key %08lX: can't locate original keyblock: %s\n" msgstr "þlosilo %08lX: ne povas trovi originalan þlosilblokon: %s\n" -#: g10/import.c:478 g10/import.c:671 +#: g10/import.c:466 g10/import.c:659 #, c-format msgid "key %08lX: can't read original keyblock: %s\n" msgstr "þlosilo %08lX: ne povas legi originalan þlosilblokon: %s\n" -#: g10/import.c:505 +#: g10/import.c:493 #, c-format msgid "key %08lX: 1 new user ID\n" msgstr "þlosilo %08lX: 1 nova uzantidentigilo\n" -#: g10/import.c:508 +#: g10/import.c:496 #, c-format msgid "key %08lX: %d new user IDs\n" msgstr "þlosilo %08lX: %d novaj uzantidentigiloj\n" -#: g10/import.c:511 +#: g10/import.c:499 #, c-format msgid "key %08lX: 1 new signature\n" msgstr "þlosilo %08lX: 1 nova subskribo\n" -#: g10/import.c:514 +#: g10/import.c:502 #, c-format msgid "key %08lX: %d new signatures\n" msgstr "þlosilo %08lX: %d novaj subskriboj\n" -#: g10/import.c:517 +#: g10/import.c:505 #, c-format msgid "key %08lX: 1 new subkey\n" msgstr "þlosilo %08lX: 1 nova subþlosilo\n" -#: g10/import.c:520 +#: g10/import.c:508 #, c-format msgid "key %08lX: %d new subkeys\n" msgstr "þlosilo %08lX: %d novaj subþlosiloj\n" -#: g10/import.c:530 +#: g10/import.c:518 #, c-format msgid "key %08lX: not changed\n" msgstr "þlosilo %08lX: ne þanøita\n" -#: g10/import.c:613 +#: g10/import.c:601 #, c-format msgid "key %08lX: secret key imported\n" msgstr "þlosilo %08lX: sekreta þlosilo importita\n" #. we can't merge secret keys -#: g10/import.c:617 +#: g10/import.c:605 #, c-format msgid "key %08lX: already in secret keyring\n" msgstr "þlosilo %08lX: jam en sekreta þlosilaro\n" -#: g10/import.c:622 +#: g10/import.c:610 #, c-format msgid "key %08lX: secret key not found: %s\n" msgstr "þlosilo %08lX: sekreta þlosilo ne trovita: %s\n" -#: g10/import.c:651 +#: g10/import.c:639 #, c-format msgid "key %08lX: no public key - can't apply revocation certificate\n" msgstr "" "þlosilo %08lX: publika þlosilo mankas - ne povas apliki revokatestilon\n" -#: g10/import.c:682 +#: g10/import.c:670 #, c-format msgid "key %08lX: invalid revocation certificate: %s - rejected\n" msgstr "þlosilo %08lX: nevalida revokatestilo: %s - malakceptita\n" -#: g10/import.c:714 +#: g10/import.c:702 #, c-format msgid "key %08lX: revocation certificate imported\n" msgstr "þlosilo %08lX: revokatestilo importita\n" -#: g10/import.c:756 +#: g10/import.c:744 #, c-format msgid "key %08lX: no user ID for signature\n" msgstr "þlosilo %08lX: mankas uzantidentigilo por subskribo\n" -#: g10/import.c:763 g10/import.c:787 +#: g10/import.c:751 g10/import.c:775 #, c-format msgid "key %08lX: unsupported public key algorithm\n" msgstr "þlosilo %08lX: nerealigita publikþlosila metodo\n" -#: g10/import.c:764 +#: g10/import.c:752 #, c-format msgid "key %08lX: invalid self-signature\n" msgstr "þlosilo %08lX: nevalida mem-subskribo\n" -#: g10/import.c:779 +#: g10/import.c:767 #, c-format msgid "key %08lX: no subkey for key binding\n" msgstr "þlosilo %08lX: mankas subþlosilo por þlosilbindado\n" -#: g10/import.c:788 +#: g10/import.c:776 #, c-format msgid "key %08lX: invalid subkey binding\n" msgstr "þlosilo %08lX: nevalida subþlosila bindado\n" -#: g10/import.c:815 +#: g10/import.c:803 #, c-format msgid "key %08lX: accepted non self-signed user ID '" msgstr "þlosilo %08lX: akceptis ne-mem-subskribitan uzantidentigilon '" -#: g10/import.c:844 +#: g10/import.c:832 #, c-format msgid "key %08lX: skipped user ID '" msgstr "þlosilo %08lX: ignoris uzantidentigilon '" -#: g10/import.c:867 +#: g10/import.c:855 #, c-format msgid "key %08lX: skipped subkey\n" msgstr "þlosilo %08lX: ignoris subþlosilon\n" @@ -1928,32 +1911,32 @@ msgstr " #. * to import non-exportable signature when we have the #. * the secret key used to create this signature - it #. * seems that this makes sense -#: g10/import.c:892 +#: g10/import.c:880 #, c-format msgid "key %08lX: non exportable signature (class %02x) - skipped\n" msgstr "þlosilo %08lX: neeksportebla subskribo (klaso %02x) - ignorita\n" -#: g10/import.c:901 +#: g10/import.c:889 #, c-format msgid "key %08lX: revocation certificate at wrong place - skipped\n" msgstr "þlosilo %08lX: revokatestilo en maløusta loko - ignorita\n" -#: g10/import.c:909 +#: g10/import.c:897 #, c-format msgid "key %08lX: invalid revocation certificate: %s - skipped\n" msgstr "þlosilo %08lX: nevalida revokatestilo: %s - ignorita\n" -#: g10/import.c:1009 +#: g10/import.c:997 #, c-format msgid "key %08lX: duplicated user ID detected - merged\n" msgstr "þlosilo %08lX: trovis ripetitan uzantidentigilon - kunfandita\n" -#: g10/import.c:1060 +#: g10/import.c:1048 #, c-format msgid "key %08lX: revocation certificate added\n" msgstr "þlosilo %08lX: revokatestilo aldonita\n" -#: g10/import.c:1174 g10/import.c:1227 +#: g10/import.c:1162 g10/import.c:1215 #, c-format msgid "key %08lX: our copy has no self-signature\n" msgstr "þlosilo %08lX: nia kopio ne havas mem-subskribon\n" @@ -2397,31 +2380,30 @@ msgstr "Nevalida komando (provu per \"helpo\")\n" #: g10/keyedit.c:1080 g10/keyedit.c:1106 #, c-format msgid "%s%c %4u%c/%08lX created: %s expires: %s" -msgstr "" +msgstr "%s%c %4u%c/%08lX kreita: %s eksvalidiøos: %s" #: g10/keyedit.c:1089 #, c-format msgid " trust: %c/%c" -msgstr "" +msgstr " fido: %c/%c" #: g10/keyedit.c:1093 msgid "This key has been disabled" msgstr "Æi tiu þlosilo estas malþaltita" #: g10/keyedit.c:1122 -#, fuzzy, c-format +#, c-format msgid "rev! subkey has been revoked: %s\n" -msgstr "þlosilo %08lX: subþlosilo estas revokita!\n" +msgstr "rev! subþlosilo estas revokita: %s\n" #: g10/keyedit.c:1125 -#, fuzzy msgid "rev- faked revocation found\n" -msgstr " novaj þlosilrevokoj: %lu\n" +msgstr "rev- falsita revoko trovita\n" #: g10/keyedit.c:1127 #, c-format msgid "rev? problem checking revocation: %s\n" -msgstr "" +msgstr "rev? problemo en kontrolo de revoko: %s\n" #: g10/keyedit.c:1365 msgid "Delete this good signature? (y/N/q)" @@ -2531,18 +2513,8 @@ msgstr " msgid "no secret key\n" msgstr "mankas sekreta þlosilo\n" -#: g10/keylist.c:158 -#, fuzzy -msgid "invalid" -msgstr "nevalida kiraso" - -#: g10/keylist.c:178 -#, fuzzy -msgid "revoked" -msgstr "rev" - #. of subkey -#: g10/keylist.c:400 g10/mainproc.c:760 +#: g10/keylist.c:318 g10/mainproc.c:742 #, c-format msgid " [expires: %s]" msgstr " [eksvalidiøos: %s]" @@ -2552,104 +2524,104 @@ msgstr " [eksvalidi msgid "public key is %08lX\n" msgstr "publika þlosilo estas %08lX\n" -#: g10/mainproc.c:257 +#: g10/mainproc.c:248 msgid "public key encrypted data: good DEK\n" msgstr "publikþlosile æifritaj datenoj: bona DEK\n" -#: g10/mainproc.c:299 +#: g10/mainproc.c:281 #, c-format msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n" msgstr "æifrita per %u-bita %s-þlosilo, %08lX, kreita je %s\n" -#: g10/mainproc.c:309 +#: g10/mainproc.c:291 #, c-format msgid "encrypted with %s key, ID %08lX\n" msgstr "æifrita per %s-þlosilo, %08lX\n" -#: g10/mainproc.c:315 +#: g10/mainproc.c:297 msgid "no secret key for decryption available\n" msgstr "mankas sekreta þlosilo por malæifrado\n" -#: g10/mainproc.c:324 +#: g10/mainproc.c:306 #, c-format msgid "public key decryption failed: %s\n" msgstr "publikþlosila malæifrado malsukcesis: %s\n" -#: g10/mainproc.c:361 +#: g10/mainproc.c:343 msgid "decryption okay\n" msgstr "malæifrado sukcesis\n" -#: g10/mainproc.c:366 +#: g10/mainproc.c:348 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "AVERTO: æifrita mesaøo estis manipulita!\n" -#: g10/mainproc.c:371 +#: g10/mainproc.c:353 #, c-format msgid "decryption failed: %s\n" msgstr "malæifrado malsukcesis: %s\n" -#: g10/mainproc.c:390 +#: g10/mainproc.c:372 msgid "NOTE: sender requested \"for-your-eyes-only\"\n" msgstr "NOTO: sendinto petis konfidencon (\"for-your-eyes-only\")\n" -#: g10/mainproc.c:392 +#: g10/mainproc.c:374 #, c-format msgid "original file name='%.*s'\n" msgstr "originala dosiernomo='%.*s'\n" -#: g10/mainproc.c:544 +#: g10/mainproc.c:526 msgid "standalone revocation - use \"gpg --import\" to apply\n" msgstr "memstara revoko - uzu \"gpg --import\" por apliki øin\n" -#: g10/mainproc.c:631 g10/mainproc.c:640 +#: g10/mainproc.c:613 g10/mainproc.c:622 msgid "WARNING: invalid notation data found\n" msgstr "AVERTO: nevalida notacia dateno trovita\n" -#: g10/mainproc.c:643 +#: g10/mainproc.c:625 msgid "Notation: " msgstr "Notacio: " -#: g10/mainproc.c:650 +#: g10/mainproc.c:632 msgid "Policy: " msgstr "Gvidlinio: " -#: g10/mainproc.c:1080 +#: g10/mainproc.c:1062 msgid "signature verification suppressed\n" msgstr "kontrolo de subskribo estas malþaltita\n" -#: g10/mainproc.c:1086 +#: g10/mainproc.c:1068 #, c-format msgid "Signature made %.*s using %s key ID %08lX\n" msgstr "Subskribo farita je %.*s per %s, þlosilo %08lX\n" #. just in case that we have no userid -#: g10/mainproc.c:1112 g10/mainproc.c:1123 +#: g10/mainproc.c:1094 g10/mainproc.c:1105 msgid "BAD signature from \"" msgstr "MALBONA subskribo de \"" -#: g10/mainproc.c:1113 g10/mainproc.c:1124 +#: g10/mainproc.c:1095 g10/mainproc.c:1106 msgid "Good signature from \"" msgstr "Bona subskribo de \"" -#: g10/mainproc.c:1115 +#: g10/mainproc.c:1097 msgid " aka \"" msgstr " alinome \"" -#: g10/mainproc.c:1171 +#: g10/mainproc.c:1153 #, c-format msgid "Can't check signature: %s\n" msgstr "Ne povas kontroli subskribon: %s\n" -#: g10/mainproc.c:1235 +#: g10/mainproc.c:1217 #, c-format msgid "standalone signature of class 0x%02x\n" msgstr "memstara subskribo de klaso 0x%02x\n" -#: g10/mainproc.c:1281 +#: g10/mainproc.c:1263 msgid "old style (PGP 2.x) signature\n" msgstr "malnovstila subskribo (PGP 2.x)\n" -#: g10/mainproc.c:1286 +#: g10/mainproc.c:1268 msgid "invalid root packet detected in proc_tree()\n" msgstr "nevalida radikpaketo trovita en proc_tree()\n" @@ -2666,7 +2638,15 @@ msgstr "AVERTO: programo povas krei core-dosieron!\n" msgid "Experimental algorithms should not be used!\n" msgstr "Eksperimentaj metodoj ne estu uzataj!\n" -#: g10/misc.c:232 +#: g10/misc.c:219 +msgid "" +"RSA keys are deprecated; please consider creating a new key and use this key " +"in the future\n" +msgstr "" +"RSA-þlosiloj estas malrekomendataj; bonvolu pripensi krei novan þlosilon kaj " +"uzi tiun en la estonteco\n" + +#: g10/misc.c:241 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "æi tiu æifrad-metodo estas malrekomendata; bonvolu uzi pli normalan!\n" @@ -2675,7 +2655,7 @@ msgstr " msgid "can't handle public key algorithm %d\n" msgstr "ne povas trakti publikþlosilan metodon %d\n" -#: g10/parse-packet.c:972 +#: g10/parse-packet.c:965 #, c-format msgid "subpacket of type %d has critical bit set\n" msgstr "subpaketo de speco %d havas þaltitan \"critical bit\"\n" @@ -2712,51 +2692,51 @@ msgstr "Donu pasfrazon: " msgid "Repeat passphrase: " msgstr "Ripetu pasfrazon: " -#: g10/plaintext.c:67 +#: g10/plaintext.c:63 msgid "data not saved; use option \"--output\" to save it\n" msgstr "datenoj ne savitaj; uzu la opcion \"--output\" por savi ilin\n" -#: g10/plaintext.c:324 +#: g10/plaintext.c:317 msgid "Detached signature.\n" msgstr "Aparta subskribo.\n" -#: g10/plaintext.c:328 +#: g10/plaintext.c:321 msgid "Please enter name of data file: " msgstr "Bonvolu doni la nomon de la dosiero: " -#: g10/plaintext.c:349 +#: g10/plaintext.c:342 msgid "reading stdin ...\n" msgstr "legas la normalan enigon ...\n" -#: g10/plaintext.c:392 +#: g10/plaintext.c:385 #, c-format msgid "can't open signed data `%s'\n" msgstr "ne povas malfermi subskribitan dosieron '%s'\n" -#: g10/pubkey-enc.c:76 +#: g10/pubkey-enc.c:79 #, c-format msgid "anonymous receiver; trying secret key %08lX ...\n" msgstr "nenomita ricevonto; provas per sekreta þlosilo %08lX ...\n" -#: g10/pubkey-enc.c:82 +#: g10/pubkey-enc.c:85 msgid "okay, we are the anonymous recipient.\n" msgstr "bone; ni estas la nenomita ricevonto.\n" -#: g10/pubkey-enc.c:134 +#: g10/pubkey-enc.c:137 msgid "old encoding of the DEK is not supported\n" msgstr "malnova kodado de DEK ne estas realigita\n" -#: g10/pubkey-enc.c:153 +#: g10/pubkey-enc.c:156 #, c-format msgid "cipher algorithm %d is unknown or disabled\n" msgstr "æifrad-metodo %d estas nekonata aý malþaltita\n" -#: g10/pubkey-enc.c:192 +#: g10/pubkey-enc.c:195 #, c-format msgid "NOTE: cipher algorithm %d not found in preferences\n" msgstr "NOTO: æifrad-metodo %d ne trovita en preferoj\n" -#: g10/pubkey-enc.c:198 +#: g10/pubkey-enc.c:201 #, c-format msgid "NOTE: secret key %08lX expired at %s\n" msgstr "NOTO: sekreta þlosilo %08lX eksvalidiøis je %s\n" @@ -2818,33 +2798,33 @@ msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "AVERTO: Malforta þlosilo trovita - bonvolu þanøi la pasfrazon denove.\n" -#: g10/sig-check.c:199 +#: g10/sig-check.c:202 msgid "assuming bad MDC due to an unknown critical bit\n" msgstr "supozas malbonan sigelon (MDC) pro nekonata \"critical bit\"\n" -#: g10/sig-check.c:297 +#: g10/sig-check.c:300 msgid "" "this is a PGP generated ElGamal key which is NOT secure for signatures!\n" msgstr "" "æi tio estas PGP-kreita ElGamal-þlosilo, kiu NE estas sekura por " "subskribado!\n" -#: g10/sig-check.c:305 +#: g10/sig-check.c:308 #, c-format msgid "public key is %lu second newer than the signature\n" msgstr "la publika þlosilo estas %lu sekundon pli nova ol la subskribo\n" -#: g10/sig-check.c:306 +#: g10/sig-check.c:309 #, c-format msgid "public key is %lu seconds newer than the signature\n" msgstr "la publika þlosilo estas %lu sekundojn pli nova ol la subskribo\n" -#: g10/sig-check.c:324 +#: g10/sig-check.c:327 #, c-format msgid "NOTE: signature key expired %s\n" msgstr "NOTO: subskribo-þlosilo eksvalidiøis je %s\n" -#: g10/sig-check.c:393 +#: g10/sig-check.c:396 msgid "assuming bad signature due to an unknown critical bit\n" msgstr "supozas malbonan subskribon pro nekonata \"critical bit\"\n" @@ -2853,7 +2833,7 @@ msgstr "supozas malbonan subskribon pro nekonata \"critical bit\"\n" msgid "%s signature from: %s\n" msgstr "%s-subskribo de: %s\n" -#: g10/sign.c:290 g10/sign.c:610 +#: g10/sign.c:290 g10/sign.c:606 #, c-format msgid "can't create %s: %s\n" msgstr "ne povas krei %s: %s\n" @@ -2901,7 +2881,7 @@ msgstr "%s: ne povas aliri: %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: dosierujo ne ekzistas!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:216 g10/openfile.c:284 g10/ringedit.c:1363 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: ne povas krei: %s\n" @@ -3001,296 +2981,286 @@ msgstr "%s: malsukcesis aldoni registron: %s\n" msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "la fido-datenaro estas fuþita; bonvolu ruli \"gpg --fix-trustdb\".\n" -#: g10/trustdb.c:169 +#: g10/trustdb.c:168 #, c-format msgid "trust record %lu, req type %d: read failed: %s\n" msgstr "fido-datenaro loko %lu, petospeco %d: lego malsukcesis: %s\n" -#: g10/trustdb.c:184 +#: g10/trustdb.c:183 #, c-format msgid "trust record %lu, type %d: write failed: %s\n" msgstr "fido-datenaro %lu, speco %d: skribo malsukcesis: %s\n" -#: g10/trustdb.c:198 +#: g10/trustdb.c:197 #, c-format msgid "trust record %lu: delete failed: %s\n" msgstr "fido-registro %lu: forviþo malsukcesis: %s\n" -#: g10/trustdb.c:212 +#: g10/trustdb.c:211 #, c-format msgid "trustdb: sync failed: %s\n" msgstr "fido-datenaro: sync malsukcesis: %s\n" -#: g10/trustdb.c:377 +#: g10/trustdb.c:376 #, c-format msgid "error reading dir record for LID %lu: %s\n" msgstr "eraro dum legado de dosieruja registro por LID %lu: %s\n" -#: g10/trustdb.c:384 +#: g10/trustdb.c:383 #, c-format msgid "lid %lu: expected dir record, got type %d\n" msgstr "lid %lu: atendis dosierujan registron, trovis specon %d\n" -#: g10/trustdb.c:389 +#: g10/trustdb.c:388 #, c-format msgid "no primary key for LID %lu\n" msgstr "mankas æefa þlosilo por LID %lu\n" -#: g10/trustdb.c:394 +#: g10/trustdb.c:393 #, c-format msgid "error reading primary key for LID %lu: %s\n" msgstr "eraro dum legado de æefa þlosilo por LID %lu: %s\n" -#: g10/trustdb.c:433 +#: g10/trustdb.c:432 #, c-format msgid "get_dir_record: search_record failed: %s\n" msgstr "get_dir_record: search_record malsukcesis: %s\n" -#: g10/trustdb.c:474 -#, fuzzy, c-format -msgid "'%s' is not a valid long keyID\n" -msgstr "%s: ne valida þlosilidentigilo\n" - -#: g10/trustdb.c:501 -#, c-format -msgid "key %08lX: can't put it into the trustdb\n" -msgstr "þlosilo %08lX: ne povas meti øin en la fido-datenaron\n" - -#: g10/trustdb.c:507 -#, c-format -msgid "key %08lX: query record failed\n" -msgstr "þlosilo %08lX: peto-registro malsukcesis\n" - -#: g10/trustdb.c:516 -#, c-format -msgid "key %08lX: already in trusted key table\n" -msgstr "þlosilo %08lX: jam en tabelo de fidataj þlosiloj\n" - -#: g10/trustdb.c:519 -#, c-format -msgid "key %08lX: accepted as trusted key.\n" -msgstr "þlosilo %08lX: akceptita kiel fidata þlosilo.\n" - -#: g10/trustdb.c:546 -#, fuzzy, c-format -msgid "key %08lX: no public key for trusted key - skipped\n" -msgstr "þlosilo %08lX: ne protektita - ignorita\n" - -#: g10/trustdb.c:565 +#: g10/trustdb.c:487 #, c-format msgid "NOTE: secret key %08lX is NOT protected.\n" msgstr "NOTO: sekreta þlosilo %08lX NE estas protektita.\n" -#: g10/trustdb.c:577 +#: g10/trustdb.c:495 #, c-format msgid "key %08lX: secret key without public key - skipped\n" msgstr "þlosilo %08lX: sekreta þlosilo sen publika þlosilo - ignorita\n" -#: g10/trustdb.c:584 +#: g10/trustdb.c:502 #, c-format msgid "key %08lX: secret and public key don't match\n" msgstr "þlosilo %08lX: sekreta kaj publika þlosiloj ne kongruas\n" -#: g10/trustdb.c:597 +#: g10/trustdb.c:514 +#, c-format +msgid "key %08lX: can't put it into the trustdb\n" +msgstr "þlosilo %08lX: ne povas meti øin en la fido-datenaron\n" + +#: g10/trustdb.c:520 +#, c-format +msgid "key %08lX: query record failed\n" +msgstr "þlosilo %08lX: peto-registro malsukcesis\n" + +#: g10/trustdb.c:529 +#, c-format +msgid "key %08lX: already in trusted key table\n" +msgstr "þlosilo %08lX: jam en tabelo de fidataj þlosiloj\n" + +#: g10/trustdb.c:532 +#, c-format +msgid "key %08lX: accepted as trusted key.\n" +msgstr "þlosilo %08lX: akceptita kiel fidata þlosilo.\n" + +#: g10/trustdb.c:540 #, c-format msgid "enumerate secret keys failed: %s\n" msgstr "listigo de sekretaj þlosiloj malsukcesis: %s\n" -#: g10/trustdb.c:987 +#: g10/trustdb.c:921 #, c-format msgid "key %08lX.%lu: Good subkey binding\n" msgstr "þlosilo %08lX.%lu: Bona subþlosila bindado\n" -#: g10/trustdb.c:993 g10/trustdb.c:1028 +#: g10/trustdb.c:927 g10/trustdb.c:962 #, c-format msgid "key %08lX.%lu: Invalid subkey binding: %s\n" msgstr "þlosilo %08lX.%lu: Nevalida subþlosila bindado: %s\n" -#: g10/trustdb.c:1005 +#: g10/trustdb.c:939 #, c-format msgid "key %08lX.%lu: Valid key revocation\n" msgstr "þlosilo %08lX.%lu: Valida þlosilrevoko\n" -#: g10/trustdb.c:1011 +#: g10/trustdb.c:945 #, c-format msgid "key %08lX.%lu: Invalid key revocation: %s\n" msgstr "þlosilo %08lX.%lu: Nevalida þlosilrevoko: %s\n" -#: g10/trustdb.c:1022 +#: g10/trustdb.c:956 #, c-format msgid "key %08lX.%lu: Valid subkey revocation\n" msgstr "þlosilo %08lX.%lu: Valida subþlosilrevoko\n" -#: g10/trustdb.c:1133 +#: g10/trustdb.c:1067 msgid "Good self-signature" msgstr "Bona mem-subskribo" -#: g10/trustdb.c:1143 +#: g10/trustdb.c:1077 msgid "Invalid self-signature" msgstr "Nevalida mem-subskribo" -#: g10/trustdb.c:1170 +#: g10/trustdb.c:1104 msgid "Valid user ID revocation skipped due to a newer self signature" msgstr "Valida uzantidentigil-revoko ignorita pro pli nova mem-subskribo" -#: g10/trustdb.c:1176 +#: g10/trustdb.c:1110 msgid "Valid user ID revocation" msgstr "Valida uzantidentigil-revoko" -#: g10/trustdb.c:1181 +#: g10/trustdb.c:1115 msgid "Invalid user ID revocation" msgstr "Nevalida uzantidentigil-revoko" -#: g10/trustdb.c:1223 +#: g10/trustdb.c:1157 msgid "Valid certificate revocation" msgstr "Valida atestilrevoko" -#: g10/trustdb.c:1224 +#: g10/trustdb.c:1158 msgid "Good certificate" msgstr "Bona atestilo" -#: g10/trustdb.c:1252 +#: g10/trustdb.c:1186 msgid "Invalid certificate revocation" msgstr "Nevalida atestilrevoko" -#: g10/trustdb.c:1253 +#: g10/trustdb.c:1187 msgid "Invalid certificate" msgstr "Nevalida atestilo" -#: g10/trustdb.c:1270 g10/trustdb.c:1274 +#: g10/trustdb.c:1204 g10/trustdb.c:1208 #, c-format msgid "sig record %lu[%d] points to wrong record.\n" msgstr "subskribo-registro %lu[%d] montras al maløusta registro.\n" -#: g10/trustdb.c:1333 +#: g10/trustdb.c:1267 msgid "duplicated certificate - deleted" msgstr "ripetita atestilo - forviþita" -#: g10/trustdb.c:1650 +#: g10/trustdb.c:1584 #, c-format msgid "tdbio_search_dir failed: %s\n" msgstr "tdbio_search_dir malsukcesis: %s\n" -#: g10/trustdb.c:1784 +#: g10/trustdb.c:1718 #, c-format msgid "lid ?: insert failed: %s\n" msgstr "lid ?: enþovo malsukcesis: %s\n" -#: g10/trustdb.c:1789 +#: g10/trustdb.c:1723 #, c-format msgid "lid %lu: insert failed: %s\n" msgstr "lid %lu: enþovo malsukcesis: %s\n" -#: g10/trustdb.c:1795 +#: g10/trustdb.c:1729 #, c-format msgid "lid %lu: inserted\n" msgstr "lid %lu: enþovita\n" -#: g10/trustdb.c:1800 +#: g10/trustdb.c:1734 #, c-format msgid "error reading dir record: %s\n" msgstr "eraro dum legado de dosieruja registro: %s\n" -#: g10/trustdb.c:1808 g10/trustdb.c:1871 +#: g10/trustdb.c:1742 g10/trustdb.c:1805 #, c-format msgid "%lu keys processed\n" msgstr "%lu þlosiloj traktitaj\n" -#: g10/trustdb.c:1810 g10/trustdb.c:1877 +#: g10/trustdb.c:1744 g10/trustdb.c:1811 #, c-format msgid "\t%lu keys with errors\n" msgstr "\t%lu þlosiloj kun eraroj\n" -#: g10/trustdb.c:1812 +#: g10/trustdb.c:1746 #, c-format msgid "\t%lu keys inserted\n" msgstr "\t%lu þlosiloj enþovitaj\n" -#: g10/trustdb.c:1815 +#: g10/trustdb.c:1749 #, c-format msgid "enumerate keyblocks failed: %s\n" msgstr "listigo de þlosilblokoj malsukcesis: %s\n" -#: g10/trustdb.c:1863 +#: g10/trustdb.c:1797 #, c-format msgid "lid %lu: dir record w/o key - skipped\n" msgstr "lid %lu: dosieruja registro sen þlosilo - ignorita\n" -#: g10/trustdb.c:1873 +#: g10/trustdb.c:1807 #, c-format msgid "\t%lu due to new pubkeys\n" msgstr "\t%lu pro novaj publikaj þlosiloj\n" -#: g10/trustdb.c:1875 +#: g10/trustdb.c:1809 #, c-format msgid "\t%lu keys skipped\n" msgstr "\t%lu þlosiloj ignoritaj\n" -#: g10/trustdb.c:1879 +#: g10/trustdb.c:1813 #, c-format msgid "\t%lu keys updated\n" msgstr "\t%lu þlosiloj aktualigitaj\n" -#: g10/trustdb.c:2224 +#: g10/trustdb.c:2158 msgid "Ooops, no keys\n" msgstr "Hu, mankas þlosiloj\n" -#: g10/trustdb.c:2228 +#: g10/trustdb.c:2162 msgid "Ooops, no user IDs\n" msgstr "Hu, mankas uzantidentigiloj\n" -#: g10/trustdb.c:2386 +#: g10/trustdb.c:2320 #, c-format msgid "check_trust: search dir record failed: %s\n" msgstr "check_trust: seræo pri dosieruja registro malsukcesis: %s\n" -#: g10/trustdb.c:2395 +#: g10/trustdb.c:2329 #, c-format msgid "key %08lX: insert trust record failed: %s\n" msgstr "þlosilo %08lX: enþovo de fidoregistro malsukcesis: %s\n" -#: g10/trustdb.c:2399 +#: g10/trustdb.c:2333 #, c-format msgid "key %08lX.%lu: inserted into trustdb\n" msgstr "þlosilo %08lX.%lu: enþovis en fido-datenaron\n" -#: g10/trustdb.c:2407 +#: g10/trustdb.c:2341 #, c-format msgid "key %08lX.%lu: created in future (time warp or clock problem)\n" msgstr "" "þlosilo %08lX.%lu: kreita en la estonteco (tempotordo aý horloøeraro)\n" -#: g10/trustdb.c:2422 +#: g10/trustdb.c:2356 #, c-format msgid "key %08lX.%lu: expired at %s\n" msgstr "þlosilo %08lX.%lu: eksvalidiøis je %s\n" -#: g10/trustdb.c:2430 +#: g10/trustdb.c:2364 #, c-format msgid "key %08lX.%lu: trust check failed: %s\n" msgstr "þlosilo %08lX.%lu: fido-kontrolo malsukcesis: %s\n" -#: g10/trustdb.c:2581 +#: g10/trustdb.c:2515 #, c-format msgid "user '%s' not found: %s\n" msgstr "uzanto '%s' ne trovita: %s\n" -#: g10/trustdb.c:2583 +#: g10/trustdb.c:2517 #, c-format msgid "problem finding '%s' in trustdb: %s\n" msgstr "problemo dum trovo de '%s' en fido-datenaro: %s\n" -#: g10/trustdb.c:2586 +#: g10/trustdb.c:2520 #, c-format msgid "user '%s' not in trustdb - inserting\n" msgstr "uzanto '%s' ne estas en fido-datenaro - enþovas\n" -#: g10/trustdb.c:2589 +#: g10/trustdb.c:2523 #, c-format msgid "failed to put '%s' into trustdb: %s\n" msgstr "malsukcesis meti '%s' en fido-datenaron: %s\n" -#: g10/trustdb.c:2775 g10/trustdb.c:2805 +#: g10/trustdb.c:2709 g10/trustdb.c:2739 msgid "WARNING: can't yet handle long pref records\n" msgstr "AVERTO: ne povas trakti longajn preferoregistrojn\n" @@ -3358,49 +3328,49 @@ msgstr "" "por subskribado!\n" #. do not overwrite -#: g10/openfile.c:84 +#: g10/openfile.c:79 #, c-format msgid "File `%s' exists. " msgstr "Dosiero '%s' ekzistas. " -#: g10/openfile.c:86 +#: g10/openfile.c:81 msgid "Overwrite (y/N)? " msgstr "Æu surskribi (j/N)? " -#: g10/openfile.c:119 +#: g10/openfile.c:109 #, c-format msgid "%s: unknown suffix\n" msgstr "%s: nekonata sufikso\n" -#: g10/openfile.c:141 +#: g10/openfile.c:131 msgid "Enter new filename" msgstr "Donu novan dosiernomon" -#: g10/openfile.c:182 +#: g10/openfile.c:172 msgid "writing to stdout\n" msgstr "skribas al la normala eligo\n" -#: g10/openfile.c:261 +#: g10/openfile.c:250 #, c-format msgid "assuming signed data in `%s'\n" msgstr "supozas subskribitajn datenojn en '%s'\n" -#: g10/openfile.c:311 +#: g10/openfile.c:300 #, c-format msgid "%s: new options file created\n" msgstr "%s: nova opcio-dosiero kreita\n" -#: g10/openfile.c:338 +#: g10/openfile.c:313 #, c-format msgid "%s: can't create directory: %s\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: g10/openfile.c:341 +#: g10/openfile.c:316 #, c-format msgid "%s: directory created\n" msgstr "%s: dosierujo kreita\n" -#: g10/openfile.c:343 +#: g10/openfile.c:318 msgid "you have to start GnuPG again, so it can read the new options file\n" msgstr "" "vi devas restartigi GnuPG, por ke øi povu legi la novan opcio-dosieron\n" @@ -3664,7 +3634,6 @@ msgstr "" "dosiero (montrita en parentezo) estos uzata." #: g10/helptext.c:229 -#, fuzzy msgid "" "You should specify a reason for the certification. Depending on the\n" "context you have the ability to choose from this list:\n" @@ -3710,10 +3679,3 @@ msgstr "Nenia helpo disponata" #, c-format msgid "No help available for `%s'" msgstr "Nenia helpo disponata por '%s'" - -#~ msgid "" -#~ "RSA keys are deprecated; please consider creating a new key and use this key " -#~ "in the future\n" -#~ msgstr "" -#~ "RSA-þlosiloj estas malrekomendataj; bonvolu pripensi krei novan þlosilon kaj " -#~ "uzi tiun en la estonteco\n" diff --git a/po/es_ES.po b/po/es_ES.po index c54f129d0..90457d887 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: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\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" @@ -317,12 +317,12 @@ msgstr "no puede abrirse `%s': %s\n" msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "" "ATENCIÓN: ¡se está usando un generador de números aleatorios inseguro!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -710,174 +710,178 @@ msgstr "uso: gpg [opciones] " msgid "conflicting commands\n" msgstr "comandos incompatibles\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "fichero de opciones `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "leyendo opciones desde `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s no es un juego de caracteres válido\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "ATENCIÓN: ¡el programa podría crear un fichero core dump!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: ¡%s no es para uso normal!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "¡%s no permitido con %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "¡%s no tiene sentido con %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "el algoritmo de cifrado seleccionado no es válido\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "el algoritmo de resumen seleccionado no es válido\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "URL de política no válida\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "el algoritmo de compresión debe estar en el rango %d-%d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser mayor que 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser mayor que 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth debe estar en el rango 1-255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el modo S2K simple (0) no es nada recomendable\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K incorrecto; debe ser 0, 1 o 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicialización de la base de datos de confianza fallida: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [nombre_fichero]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [nombre_fichero]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [nombre_fichero]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [nombre_fichero]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nombre_fichero]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [nombre_fichero]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [nombre_fichero]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key id-usuario" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key id-usuario" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usuario [comandos]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key id-usuario" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key id-usuario" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "no puede abrirse `%s': %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-usuario] [anillo]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminación de armadura fallida: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "creación de armadura fallida: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de distribución no válido `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[nombre_fichero]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Adelante, teclee su mensaje...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "no puede abrirse `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "El primer caracter de una notación debe ser una letra o un subrayado\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -885,11 +889,11 @@ msgstr "" "un nombre de notación debe tener sólo letras, dígitos, puntos o subrayados, " "y acabar con un '='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "los puntos en una notación deben estar rodeados por otros caracteres\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 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" @@ -2680,20 +2684,16 @@ msgstr "firma viejo estilo (PGP 2.x)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "paquete raíz no válido detectado en proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "no se pueden desactivar los core dumps: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "ATENCIÓN: ¡el programa podría crear un fichero core dump!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "¡No se deberían usar algoritmos experimentales!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "este algoritmo de cifrado está en desuso, considere el uso de uno más " @@ -2840,11 +2840,11 @@ msgstr "Clave secreta no disponible" msgid "protection algorithm %d is not supported\n" msgstr "el algoritmo de protección %d no está soportado\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Contraseña incorrecta, inténtelo de nuevo...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "ATENCIÓN: detectada clave débil - por favor cambie la contraseña.\n" @@ -2932,7 +2932,7 @@ msgstr "%s: no puede abrirse: %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: ¡el directorio no existe!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: no puede crearse: %s\n" @@ -3346,26 +3346,26 @@ msgstr "" msgid "%s: can't create keyring: %s\n" msgstr "%s: no se puede crear el anillo: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: anillo creado\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ATENCIÓN: existen 2 ficheros con información confidencial.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s es el que no se ha modificado\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s es el nuevo\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Por favor arregle este posible fallo de seguridad\n" diff --git a/po/fr.po b/po/fr.po index 7f93465d6..d56ef290e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.1h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-06-28 18:41+02:00\n" "Last-Translator: Gaël Quéri \n" "Language-Team: French \n" @@ -318,12 +318,12 @@ msgstr "" "une quantité de données aléatoires trop importante a été demandée.\n" "La limite est %d bits.\n" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "" "ATTENTION: utilisation d'un générateur de nombres aléatoires peu sûr !!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -707,176 +707,180 @@ msgstr "utilisation: gpg [options] " msgid "conflicting commands\n" msgstr "commandes en conflit\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTE: pas de fichier d'options par défaut `%s'\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "fichier d'options `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "lire les options de `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s n'est pas une table de caractères valide\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "ATTENTION: Le programme peut créer un fichier «core» !\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTE: %s n'est pas pour une utilisation normale !\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n'est pas permis avec %s !\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n'a aucun sens avec %s !\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorithme de chiffrement sélectionné est invalide\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "la fonction de hachage sélectionnée est invalide\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "l'URL de politique donnée est invalide\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "l'algorithme de compression doit faire partie de l'intervalle %d..%d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "«completes-needed» doit être supérieur à 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "«marginals-needed» doit être supérieur à 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "«max-cert-depth» doit être compris entre 1 et 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: le mode S2K simple (0) est fortement déconseillé\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K invalide; ce doit être 0, 1 ou 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "impossible d'initialiser la base de confiance: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [nom du fichier]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [nom du fichier]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [nom du fichier]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [nom du fichier]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom du fichier]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [nom du fichier]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [nom du fichier]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key utilisateur" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key utilisateur" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key utilisateur [commandes]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key utilisateur" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key utilisateur" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "impossible d'ouvrir %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [utilisateur] [porte-clés]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "la suppression d'une armure a échoué: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "la construction d'une armure a échoué: %s \n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algorithme de hachage `%s' invalide\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[nom du fichier]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Continuez et tapez votre message...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "impossible d'ouvrir `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "le premier caractère du nom d'une notation doit être un lettre ou un trait\n" "de soulignement\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -885,13 +889,13 @@ msgstr "" "des points ou des traits de soulignement et doit se terminer par un signe " "égal\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "" "les points dans le nom d'une notation doivent être entourés d'autes " "caractères\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 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" @@ -2682,20 +2686,16 @@ msgstr "signature d'un ancien style (PGP 2.x)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "paquet racine invalide détecté dans proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossible d'empêcher la génération de fichiers «core»: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "ATTENTION: Le programme peut créer un fichier «core» !\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Les algorithmes expérimentaux ne devraient pas être utilisés !\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "Cet algorithme de chiffrement est déconseillé; utilisez-en un\n" @@ -2844,11 +2844,11 @@ msgstr "les parties secr msgid "protection algorithm %d is not supported\n" msgstr "l'algorithme de protection %d n'est pas supporté\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Mot de passe invalide; réessayez...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "ATTENTION: Clé faible détectée - changez encore le mot de passe.\n" @@ -2938,7 +2938,7 @@ msgstr "%s: impossible d'acc msgid "%s: directory does not exist!\n" msgstr "%s: le répertoire n'existe pas !\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: impossible de créer: %s\n" @@ -3367,27 +3367,27 @@ msgstr "" msgid "%s: can't create keyring: %s\n" msgstr "%s: impossible de créer le porte-clés: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: porte-clés créé\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "" "ATTENTION: 2 fichiers avec des informations confidentielles existent.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s est le fichier original\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s est le nouveau\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Réparez ce problème de sécurité possible\n" diff --git a/po/id.po b/po/id.po index 371772701..c81182b8b 100644 --- a/po/id.po +++ b/po/id.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU Privacy Guard 1.0.1\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-02-06 18:04+07:00\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesia \n" @@ -308,11 +308,11 @@ msgstr "tidak dapat membuka `%s': %s\n" msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "PERINGATAN: menggunakan random number generator yang tidak aman!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -693,174 +693,178 @@ msgstr "pemakaian: gpg [pilihan] " msgid "conflicting commands\n" msgstr "perintah saling konflik\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "CATATAN: tidak ada file pilihan baku `%s'\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "file pilihan `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "membaca pilihan dari `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "PERINGATAN: program mungkin membuat file core!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "CATATAN: %s tidak untuk pemakaian normal!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s tidak dibolehkan dengan %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s tidak masuk akal dengan %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "algoritma digest yang dipilih tidak valid\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "kebijakan URL yang diberikan tidak valid\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "algoritma kompresi harus di antara %d..%d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed harus lebih dari 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed harus lebih dari 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth harus di antara 1 hingga 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K yang tidak valid; harus 0, 1 atau 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [namafile]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [namafile]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [namafile]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [namafile]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [namafile]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [namafile]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key id-user" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key id-user" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-user [perintah]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key id-user" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key id-user" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "tidak dapat membuka %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-user] [keyring]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "gagal dearmoring: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[namafile]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Teruskan dan ketikkan pesan anda ....\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "tidak dapat membuka `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "karakter pertama nama notasi harus huruf atau garis bawah\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -868,11 +872,11 @@ msgstr "" "nama notasi hanya terdiri dari huruf, digit, titik atau garis bawah dan " "diakhiri dengan sebuah '='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "titik dalam nama notasi harus diapit oleh karakter lain\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "nilai notasi tidak boleh menggunakan karakter kendali\n" @@ -2647,20 +2651,16 @@ msgstr "signature model lama (PGP 2.X)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "terdeteksi root paket tidak valid dalam proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "tidak dapat meniadakan core dump: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "PERINGATAN: program mungkin membuat file core!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Algoritma eksperimental sebaiknya tidak dipakai!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "algoritma cipher ini didepresiasi; silakan gunakan yang lebih standar!\n" @@ -2806,11 +2806,11 @@ msgstr "kunci rahasia tidak ada" msgid "protection algorithm %d is not supported\n" msgstr "algoritma proteksi %d tidak didukung\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Passphrase tidak valid; silakan coba lagi ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "PERINGATAN: terdeteksi kunci lemah - silakan rubah passphrase lagi.\n" @@ -2896,7 +2896,7 @@ msgstr "%s: tidak dapat akses: %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: direktori tidak ada!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: tidak dapat membuat: %s\n" @@ -3306,26 +3306,26 @@ msgstr "" msgid "%s: can't create keyring: %s\n" msgstr "%s: tidak dapat membuat keyring: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: keyring tercipta\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "PERINGATAN: terdapat 2 file dengan informasi penting.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s adalah yang tidak berubah\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s adalah yang baru\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Silakan perbaikan kemungkinan lubang keamanan\n" diff --git a/po/it.po b/po/it.po index 5f95e640e..008682acd 100644 --- a/po/it.po +++ b/po/it.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.0.0h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 1999-12-08 15:51+02:00\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -308,12 +308,12 @@ msgstr "impossibile aprire `%s': %s\n" msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "" "ATTENZIONE: si sta usando un generatore di numeri casuali non sicuro!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -696,176 +696,180 @@ msgstr "uso: gpg [opzioni] " msgid "conflicting commands\n" msgstr "comandi in conflitto\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: manca il file `%s' con le opzioni predefinite\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "file con le opzioni `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "lettura delle opzioni da `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s non è un set di caratteri valido\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s normalmente non deve essere usato!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "Non è permesso usare %s con %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "Non ha senso usare %s con %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non è valido\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non è valido\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "L'URL della policy indicato non è valido\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "l'algoritmo di compressione deve essere tra %d e %d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve essere maggiore di 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve essere maggiore di 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth deve essere tra 1 e 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: l'uso del modo S2K semplice (0) è fortemente scoraggiato\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non valido; deve essere 0, 1 o 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [nomefile]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [nomefile]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [nomefile]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [nomefile]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [nomefile]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [nomefile]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [comandi]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key user-id" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key user-id" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "impossibile aprire `%s': %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [user-id] [portachiavi]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "rimozione dell'armatura fallita: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo di hash non valido `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[nomefile]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Vai avanti e scrivi il messaggio...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "impossibile aprire `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "il primo carattere del nome di una nota deve essere una lettera o un\n" "underscore\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -873,11 +877,11 @@ msgstr "" "il nome di una nota deve essere formato solo da lettere, numeri, punti o\n" "underscore e deve finire con `='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "nel nome di una nota i punti devono avere altri caratteri intorno\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "il valore di una nota non deve usare caratteri di controllo\n" @@ -2664,20 +2668,16 @@ msgstr "firma vecchio stile (PGP 2.x)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "individuato un pacchetto radice non valido in proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossibile disabilitare i core dump: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Gli algoritmi sperimentali non dovrebbero essere usati!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "questo algoritmo di cifratura è deprecato; usane uno più standard!\n" @@ -2823,11 +2823,11 @@ msgstr "la chiave segreta non msgid "protection algorithm %d is not supported\n" msgstr "l'algoritmo di protezione %d non è gestito\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Passphrase non valida; riprova...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "ATTENZIONE: Individuata una chiave debole - per favore cambia ancora la\n" @@ -2916,7 +2916,7 @@ msgstr "%s: impossibile acedere a: %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: la directory non esiste!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: impossibile creare: %s\n" @@ -3333,26 +3333,26 @@ msgstr "linea di input %u troppo lunga o LF mancante\n" msgid "%s: can't create keyring: %s\n" msgstr "%s: impossibile creare il portachiavi: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: portachiavi creato\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ATTENZIONE: esistono due file con informazioni confidenziali.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s è quello non modificato\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s è quello nuovo\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Per favore risolvete questo possibile problema di sicurezza\n" diff --git a/po/ja.po b/po/ja.po index c79e2e0f3..0ed6fa221 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-02-16 20:10+09:00\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" @@ -309,11 +309,11 @@ msgstr "`%s' msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "·Ù¹ð: °ÂÁ´¤Ç¤Ê¤¤Íð¿ôÀ¸À®ÁõÃÖ¤¬»È¤ï¤ì¤Æ¤¤¤Þ¤¹!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -693,174 +693,178 @@ msgstr " msgid "conflicting commands\n" msgstr "¥³¥Þ¥ó¥É¤Î¾×ÆÍ\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Ãí°Õ: ¥Ç¥Õ¥©¥ë¥È¥ª¥×¥·¥ç¥ó¥Õ¥¡¥¤¥ë `%s' ¤¬¤¢¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "¥ª¥×¥·¥ç¥ó¥Õ¥¡¥¤¥ë `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "`%s' ¤«¤é¥ª¥×¥·¥ç¥ó¤òÆɤ߹þ¤ß¤Þ¤¹\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s ¤ÏÀµ¤·¤¤Ê¸»ú¥³¡¼¥É¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "·Ù¹ð: ¥×¥í¥°¥é¥à¤Ï¥³¥¢¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "Ãí°Õ: %s ¤ÏÄ̾ï¤ÏÍѤ¤¤Þ¤»¤ó!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ¤Ï %s ¤È¶¦¤ËÍѤ¤¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ¤Ï %s ¤È¶¦¤ËÍѤ¤¤Æ¤â°ÕÌ£¤¬¤¢¤ê¤Þ¤»¤ó!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "ÁªÂò¤µ¤ì¤¿°Å¹æ¥¢¥ë¥´¥ê¥º¥à¤Ï̵¸ú¤Ç¤¹\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "ÁªÂò¤µ¤ì¤¿Í×Ì󥢥르¥ê¥º¥à¤Ï̵¸ú¤Ç¤¹\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "Í¿¤¨¤é¤ì¤¿¥Ý¥ê¥·¡¼ URL ¤Ï̵¸ú¤Ç¤¹\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "°µ½Ì¥¢¥ë¥´¥ê¥º¥à¤Ï %d..%d ¤ÎÈϰϤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ¤Ï 0 ¤è¤êÂ礭¤ÊÃͤ¬É¬ÍפǤ¹\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ¤Ï 1 ¤è¤êÂ礭¤ÊÃͤ¬É¬ÍפǤ¹\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth ¤Ï 1 ¤«¤é 255 ¤ÎÈϰϤǤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Ãí°Õ: ñ½ã¤Ê S2K ¥â¡¼¥É (0) ¤Î»ÈÍѤˤ϶¯¤¯È¿ÂФ·¤Þ¤¹\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "̵¸ú¤Ê S2K ¥â¡¼¥É¡£0, 1 ¤Þ¤¿¤Ï 3 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "¿®Íѥǡ¼¥¿¥Ù¡¼¥¹¤Î½é´ü²½¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [¥³¥Þ¥ó¥É]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key user-id" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key user-id" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "%s ¤¬³«¤±¤Þ¤»¤ó: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [user-id] [¸°¥ê¥ó¥°]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "Áõ¹Ã½üµî¤Ë¼ºÇÔ: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "Áõ¹Ã²½¤Ë¼ºÇÔ: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "¥Ï¥Ã¥·¥å¥¢¥ë¥´¥ê¥º¥à `%s' ¤Ï̵¸ú¤Ç¤¹\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[¥Õ¥¡¥¤¥ë̾]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "³«»Ï¤·¤Þ¤¹¡£¥á¥Ã¥»¡¼¥¸¤ò¥¿¥¤¥×¤·¤Æ²¼¤µ¤¤ ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "`%s' ¤¬³«¤±¤Þ¤»¤ó\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "Ãí¼á̾¤ÎÀèƬ¤Ïʸ»ú¤«¥¢¥ó¥À¡¼¥¹¥³¥¢(_)¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -868,11 +872,11 @@ msgstr "" "Ãí¼á̾¤Ë¤Ïʸ»ú¡¢¿ô»ú¡¢¥É¥Ã¥È¡¢¥¢¥ó¥À¡¼¥¹¥³¥¢(_)¤Î¤ß¤òÍѤ¤¡¢'=' " "¤òȼ¤ï¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "Ãí¼á̾¤Î¥É¥Ã¥È¤Ï¾¤Îʸ»ú¤Ç°Ï¤Þ¤ì¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "Ãí¼á̾¤ÎÃͤËÀ©¸æʸ»ú¤òÍѤ¤¤Æ¤Ï¤¤¤±¤Þ¤»¤ó\n" @@ -2642,20 +2646,16 @@ msgstr " msgid "invalid root packet detected in proc_tree()\n" msgstr "proc_tree() ¤ÎÃæ¤Ë̵¸ú¤Ê¥Ñ¥±¥Ã¥È¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "¥³¥¢¥À¥ó¥×¤ò̵¸ú¤Ë¤Ç¤­¤Þ¤»¤ó: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "·Ù¹ð: ¥×¥í¥°¥é¥à¤Ï¥³¥¢¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "¼Â¸³Ãæ¤Î¥¢¥ë¥´¥ê¥º¥à¤Ï»ÈÍѤ¹¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "¤³¤Î°Å¹æ¥¢¥ë¥´¥ê¥º¥à¤ÏÈ¿ÂФµ¤ì¤Æ¤¤¤Þ¤¹¡£°ìÈÌŪ¤ÊÊýË¡¤òÍѤ¤¤Æ²¼¤µ¤¤!\n" @@ -2801,11 +2801,11 @@ msgstr " msgid "protection algorithm %d is not supported\n" msgstr "Êݸ¥ë¥´¥ê¥º¥à %d ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "̵¸ú¤Ê¥Ñ¥¹¥Õ¥ì¡¼¥º¤Ç¤¹¡£ºÆÆþÎϤ·¤Æ²¼¤µ¤¤ ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "·Ù¹ð: ¼å¤¤¸°¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿¡£¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÊѹ¹¤·¤Æ²¼¤µ¤¤¡£\n" @@ -2892,7 +2892,7 @@ msgstr "%s: msgid "%s: directory does not exist!\n" msgstr "%s: ¼­½ñ¤¬¤¢¤ê¤Þ¤»¤ó!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: ºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" @@ -3306,26 +3306,26 @@ msgstr " msgid "%s: can't create keyring: %s\n" msgstr "%s: ¸°¥ê¥ó¥°¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: ¸°¥ê¥ó¥°¤òºîÀ®¤·¤Þ¤·¤¿\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "·Ù¹ð: ¿®ÍѾðÊó¤ò»ý¤Ã¤¿ 2 ¤Ä¤Î¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹¡£\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s ¤ÏÊѹ¹¤µ¤ì¤Æ¤¤¤Ê¤¤Êý¤Ç¤¹\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s ¤Ï¿·¤·¤¤Êý¤Ç¤¹\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "¤³¤Î°ÂÁ´¾å¤Î·ç´Ù¤ò½¤Àµ¤·¤Æ²¼¤µ¤¤\n" diff --git a/po/nl.po b/po/nl.po index 544780db4..f7245c9ac 100644 --- a/po/nl.po +++ b/po/nl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-02-20 21:30+01:00\n" "Last-Translator: Ivo Timmermans \n" "Language-Team: Dutch \n" @@ -307,11 +307,11 @@ msgstr "kan `%s' niet openen: %s\n" msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "LET OP: de willekeurige getallengenerator is niet veilig!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -695,176 +695,180 @@ msgstr "gebruik: gpg [opties] " msgid "conflicting commands\n" msgstr "tegenstrijdige commando's\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "LET OP: geen bestand `%s' met standaardopties\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "optiebestand `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "opties inlezen van `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s is een onbekende tekenverzameling\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "LET OP: programma zou een geheugendump kunnen maken!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "LET OP: %s is niet voor gewoon gebruik!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s is niet toegestaan met deze %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s heeft geen betekenis met %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "geselecteerd versleutelalgoritme is ongeldig\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "geselecteerd controle-algoritme is ongeldig\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "de gegeven beleids-URL is ongeldig\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "compressie-algoritme moet in het bereik %d..%d liggen\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed(?) moet groter zijn dan 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed(?) moet groter zijn dan 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth moet tussen de 1 en de 255 (inclusief) liggen\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "LET OP: simpele S2K mode (0) wordt met klem afgeraden\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ongeldige S2K modus; moet 0, 1 of 3 zijn\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "fout bij het initialiseren van de vertrouwensdatabase: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [bestandsnaam]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [bestandsnaam]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [bestandsnaam]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [bestandsnaam]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [bestandsnaam]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [bestandsnaam]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [bestandsnaam]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key gebruikersidentificatie" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key gebruikers-identificatie" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key gebruikersidentificatie [opdrachten]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key gebruikersidentificatie" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key gebruikersidentificatie" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "kan %s niet openen: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [gebruikersidentificatie] [sleutelbos]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "opheffen van beveiliging mislukt: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "beveiligen mislukt: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ongeldig frommelalgoritme `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[bestandsnaam]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Gaat uw gang, type het bericht ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "kan `%s' niet openen\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "het eerste teken van een notitienaam moet een letter of laag liggend steepje " "zijn\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -872,11 +876,11 @@ msgstr "" "een notitienaam mag alleen letters, cijfers, punten of underscores bevatten " "en eindig met een =\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "punten in notitienamen moeten omgeven zijn door andere tekens\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "een notitienaam mag geen controletekens bevatten\n" @@ -2684,20 +2688,16 @@ msgstr "oude stijl (PGP 2.x) ondertekening\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "ongeldig hoofdpakket gevonden in proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan geheugendumps niet uitzetten: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "LET OP: programma zou een geheugendump kunnen maken!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Experimentele algoritmes dienen niet gebruikt te worden!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "dit versleutelalgoritme is verouderd; gebruik een meer algemene!\n" @@ -2842,11 +2842,11 @@ msgstr "geheime sleutel niet beschikbaar" msgid "protection algorithm %d is not supported\n" msgstr "beschermingsalgoritme %d wordt niet ondersteund\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Foutieve sleuteltekst; probeer a.u.b. opnieuw ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "LET OP: Kwetsbare sleutel gevonden - verander a.u.b. de sleuteltekst " @@ -2936,7 +2936,7 @@ msgstr "%s: kan er niet bij: %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: map bestaat niet!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: kan hem niet aanmaken: %s\n" @@ -3356,26 +3356,26 @@ msgstr "invoerregel %u is te lang, of ontbrekende LF\n" msgid "%s: can't create keyring: %s\n" msgstr "%s: kan sleutelbos niet aanmaken: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: sleutelbos aangemaakt\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "LET OP: er zijn 2 bestanden met vertrouwelijke informatie.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s is de onveranderde\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s is de nieuwe\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Dicht dit mogelijke beveiligingsgat\n" diff --git a/po/pl.po b/po/pl.po index 9b4e2aafe..890a23cf1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 1999-12-05 21:29+01:00\n" "Last-Translator: Janusz A. Urbanowicz \n" "Language-Team: Polish \n" @@ -317,13 +317,13 @@ msgstr "nie mo msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "" "OSTRZE¯ENIE: u¿ywany generator liczb losowych\n" "nie jest kryptograficznie bezpieczny!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -705,174 +705,178 @@ msgstr "wywo msgid "conflicting commands\n" msgstr "sprzeczne polecenia\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "UWAGA: brak domy¶lnego pliku opcji '%s'\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "plik opcji '%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "odczyt opcji z '%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s nie jest poprawn± nazw± zestawu znaków\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "OSTRZE¯ENIE: program mo¿e stworzyæ plik zrzutu pamiêci!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "UWAGA: %s nie jest do normalnego u¿ytku!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s jest niedozwolony z %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nie ma sensu z %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "wybrany algorytm szyfruj±cy jest niepoprawny\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "wybrany algorytm geenracji skrótów wiadomo¶ci jest niepoprawny\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "podany URL regulaminu jest niepoprawny\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "ustawienie algortytmu kompresji musi pochodziæ z zakresu %d..%d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "warto¶æ completes-needed musi byæ wiêksza od 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "warto¶æ marginals-needed musi byæ wiêksza od 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "warto¶æ max-cert-depth musi mie¶ciæ siê w zakresie od 1 do 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "UWAGA: prosty tryb S2K (0) jest stanowczo odradzany\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "niepoprawny tryb S2K; musi mieæ warto¶æ 0, 1 lub 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicjowanie Bazy Zaufania nie powiod³o siê: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [plik]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [plik]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [plik]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [plik]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [plik]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [plik]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [plik]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key nazwa u¿ytkownika" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key nazwa u¿ytkownika" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key nazwa u¿ytkownika [polecenia]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key nazwa u¿ytkownika" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key nazwa u¿ytkownika" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [identyfikator] [zbiór kluczy]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "usuniêcie opakowania ASCII nie powiod³o siê: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "opakowywanie ASCII nie powiod³o siê: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "niew³a¶ciwy algorytm skrótu '%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[nazwa pliku]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Wpisz tutaj swoj± wiadomo¶æ ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "nie mo¿na otworzyæ '%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "adnotacja musi zaczynaæ siê od litery lub podkre¶lenia\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -880,11 +884,11 @@ msgstr "" "nazwa adnotacji mo¿e zawieraæ tylko litery, cyfry, kropki,\n" "podkre¶lenia, i musi koñczyæ siê '='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "kropki w adnotacji musz± znajdowaæ siê pomiêdzy innymi znakami\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "warto¶æ adnotacji nie mo¿e zawieraæ znaków steruj±cych\n" @@ -2692,20 +2696,16 @@ msgstr "podpis starego typu (PGP 2.x)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "wykryto niepoprawny pakiet pierwotny w proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nie mo¿na wy³±czyæ zrzutów pamiêci: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "OSTRZE¯ENIE: program mo¿e stworzyæ plik zrzutu pamiêci!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Nie nale¿y u¿ywaæ algorytmów do¶wiadczalnych!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "ten algorytm szyfruj±cy jest odradzany; proszê u¿ywaæ bardziej " @@ -2854,12 +2854,12 @@ msgstr "klucz tajny nie jest dost msgid "protection algorithm %d is not supported\n" msgstr "%d - algorytm ochrony nie obs³ugiwany\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "" "Niepoprawne wyra¿enie przej¶ciowe (has³o); proszê spróbowaæ ponownie ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "OSTRZE¯ENIE: Wykryto klucz s³aby algorytmu - nale¿y ponownie zmieniæ \n" @@ -2950,7 +2950,7 @@ msgstr "%s: dost msgid "%s: directory does not exist!\n" msgstr "%s: katalog nie istnieje!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: nie mo¿na utworzyæ: %s\n" @@ -3368,26 +3368,26 @@ msgstr "linia wej msgid "%s: can't create keyring: %s\n" msgstr "%s: stworzenie zbioru kluczy jest niemo¿liwe: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: zbiór kluczy utworzony\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "OSTRZE¯ENIE: Istniej± dwa pliki z poufnymi informacjami.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s pozosta³ bez zmian\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s zosta³ utworzony\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Proszê usun±æ to naruszenie zasad bezpieczeñstwa.\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 4214a5335..3123d8c69 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Date: 1998-11-20 23:46:36-0200\n" "From: Thiago Jung Bauermann \n" @@ -313,11 +313,11 @@ msgstr "imposs msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "AVISO: usando gerador de números aleatórios inseguro!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -720,177 +720,181 @@ msgstr "uso: gpg [op msgid "conflicting commands\n" msgstr "comandos conflitantes\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: arquivo de opções padrão `%s' inexistente\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de opções `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "lendo opções de `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "AVISO: O programa pode criar um arquivo core!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s não é para uso normal!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s não é permitido com %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s não faz sentido com %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado não é válido\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado não é válido\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "a URL de política dada é inválida\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "o algoritmo de compressão deve estar na faixa %d..%d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) não é recomendável\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K inválido: deve ser 0, 1 ou 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar o banco de dados de confiabilidade: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [nome_do_arquivo]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_arquivo]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [nome_do_arquivo]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_arquivo]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_arquivo]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key id-usuário" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key id-usuário" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usuário [comandos]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key id-usuário" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key id-usuário" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "impossível abrir %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-usuário] [chaveiro]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "criação de armadura falhou: %s\n" # "hash" poderia ser "espalhamento", mas não fica claro -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash inválido `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[nome_do_arquivo]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Vá em frente e digite sua mensagem ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "impossível abrir `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "o primeiro caractere de um nome de notação deve ser uma letra ou um " "sublinhado\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -898,12 +902,12 @@ msgstr "" "um nome de notação deve ter apenas letras, dígitos, pontos ou sublinhados e " "terminar com '='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "" "pontos em um nome de notação devem estar cercados por outros caracteres\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 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" @@ -2690,20 +2694,16 @@ msgstr "formato de assinatura antigo (PGP2.x)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "pacote raiz inválido detectado em proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossível desativar core dumps: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "AVISO: O programa pode criar um arquivo core!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Algoritmos experimentais não devem ser usados!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "este algoritmo de criptografia é depreciado; por favor use algum\n" @@ -2849,11 +2849,11 @@ msgstr "chave secreta n msgid "protection algorithm %d is not supported\n" msgstr "algoritmo de proteção %d não é suportado\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Frase secreta inválida; por favor tente novamente ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "AVISO: Chave fraca detectada - por favor mude a frase secreta novamente.\n" @@ -2940,7 +2940,7 @@ msgstr "%s: imposs msgid "%s: directory does not exist!\n" msgstr "%s: diretório inexistente!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: impossível criar: %s\n" @@ -3358,26 +3358,26 @@ msgstr "linha %u muito longa ou sem LF\n" msgid "%s: can't create keyring: %s\n" msgstr "%s: impossível criar chaveiro: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: chaveiro criado\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVISO: existem 2 arquivos com informações confidenciais.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s é o não modificado\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s é o novo\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Por favor conserte este possível furo de segurança\n" diff --git a/po/pt_PT.po b/po/pt_PT.po index dbc50ceef..924f115c8 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: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 1999-09-09 20:28+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt\n" @@ -310,11 +310,11 @@ msgstr "imposs msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "AVISO: a utilizar gerador de números aleatórios inseguro!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -712,177 +712,181 @@ msgstr "uso: gpg [op msgid "conflicting commands\n" msgstr "comandos em conflito\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: ficheiro de opções por omissão `%s' inexistente\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opções `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "a ler opções de `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "AVISO: O programa pode criar um ficheiro core!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s não é para uso normal!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s não é permitido com %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s não faz sentido com %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado não é válido\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado não é válido\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "a URL de política dada é inválida\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "o algoritmo de compressão deve estar na faixa %d..%d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) não é recomendável\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K inválido: deve ser 0, 1 ou 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar a base de dados de confiança: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [nome_do_ficheiro]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_ficheiro]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_ficheiro]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [nome_do_ficheiro]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_ficheiro]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_ficheiro]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key id-utilizador" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizador" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizador [comandos]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key id-utilizador" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key id-utilizador" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "impossível abrir %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-utilizador] [porta-chaves]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "criação de armadura falhou: %s\n" # "hash" poderia ser "espalhamento", mas não fica claro -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash inválido `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[nome_do_ficheiro]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Digite a sua mensagem ...\n" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "impossível abrir `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "o primeiro caracter de um nome de notação deve ser uma letra ou um " "sublinhado\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -890,12 +894,12 @@ msgstr "" "um nome de notação deve ter apenas letras, dígitos, pontos ou sublinhados e " "terminar com '='\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "" "pontos num nome de notação devem estar cercados por outros caracteres\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 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" @@ -2684,20 +2688,16 @@ msgstr "formato de assinatura antigo (PGP2.x)\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "pacote raiz inválido detectado em proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossível desactivar core dumps: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "AVISO: O programa pode criar um ficheiro core!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Algoritmos experimentais não devem ser usados!\n" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "este algoritmo de criptografia não é recomendado;\n" @@ -2843,11 +2843,11 @@ msgstr "chave secreta n msgid "protection algorithm %d is not supported\n" msgstr "algoritmo de protecção %d não é suportado\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Frase secreta inválida; por favor tente novamente ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "" "AVISO: Chave fraca detectada - por favor mude a frase secreta novamente.\n" @@ -2934,7 +2934,7 @@ msgstr "%s: imposs msgid "%s: directory does not exist!\n" msgstr "%s: diretoria inexistente!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: impossível criar: %s\n" @@ -3351,26 +3351,26 @@ msgstr "linha de entrada %u demasiado longa ou falta o LF\n" msgid "%s: can't create keyring: %s\n" msgstr "%s: impossível criar porta-chaves: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: porta-chaves criado\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVISO: existem 2 ficheiros com informações confidenciais.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s é o não modificado\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s é o novo\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Por favor conserte esta possível falha de segurança\n" diff --git a/po/ru.po b/po/ru.po index c2926f364..6e0b19fb0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9,7 +9,7 @@ # QingLong (couldn't send an email to let you know) msgid "" msgstr "" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "Content-Type: text/plain; charset=\n" "Date: 1998-01-26 22:08:36+0100\n" "From: Gregory Steuck \n" @@ -365,12 +365,12 @@ msgstr " msgid "too many random bits requested; the limit is %d\n" msgstr "" -#: cipher/random.c:647 +#: cipher/random.c:650 #, fuzzy msgid "WARNING: using insecure random number generator!!\n" msgstr "÷ÎÉÍÁÎÉÅ: ÉÓÐÏÌØÚÕÅÔÓÑ ÎÅÎÁÄÅÖÎÙÊ ÇÅÎÅÒÁÔÏÒ ÓÌÕÞÁÊÎÙÈ ÞÉÓÅÌ!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -771,190 +771,194 @@ msgstr " msgid "conflicting commands\n" msgstr "Widersprüchliche Kommandos\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, fuzzy, c-format msgid "NOTE: no default option file `%s'\n" msgstr "ÚÁÍÅÞÁÎÉÅ: ÆÁÊÌ ÐÁÒÁÍÅÔÒÏ× ÐÏ ÕÍÏÌÞÁÎÉÀ `%s' ÏÔÓÕÔÓÔ×ÕÅÔ\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "ÆÁÊÌ ÐÁÒÁÍÅÔÒÏ× `%s': %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "ÞÉÔÁÀÔÓÑ ÐÁÒÁÍÅÔÒÙ ÉÚ `%s'\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, fuzzy, c-format msgid "%s is not a valid character set\n" msgstr "îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ × ËÏÍÍÅÎÔÁÒÉÉ.\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "×ÙÂÒÁÎ ÎÅÄÏÐÕÓÔÉÍÙÊ ÁÌÇÏÒÉÔÍ ÛÉÆÒÏ×ÁÎÉÑ\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "×ÙÂÒÁÎ ÎÅÄÏÐÕÓÔÉÍÙÊ ÄÁÊÄÖÅÓÔ-ÁÌÇÏÒÉÔÍ\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "ÁÌÇÏÒÉÔÍ ÕÐÁËÏ×ËÉ ÍÏÖÅÔ ÉÍÅÔØ ÚÎÁÞÅÎÉÑ ÏÔ %d ÄÏ %d\n" -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ÄÏÌÖÅÎ ÂÙÔØ ÂÏÌØÛÅ 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ÄÏÌÖÅÎ ÂÙÔØ ÂÏÌØÛÅ 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "" -#: g10/g10.c:1026 +#: g10/g10.c:1032 #, fuzzy msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "ÚÁÍÅÞÁÎÉÅ: ÐÒÏÓÔÏÊ S2K ÒÅÖÉÍ (0) ÏÞÅÎØ ÎÅ ÒÅËÏÍÅÎÄÕÅÔÓÑ\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ÒÅÖÉÍ S2K: ÄÏÌÖÅÎ ÂÙÔØ 0, 1 ÉÌÉ 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "ïÛÉÂËÁ ÉÎÉÃÉÁÌÉÚÁÃÉÉ ÂÁÚÙ ÄÁÎÎÙÈ ÄÏ×ÅÒÉÑ: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "" -#: g10/g10.c:1209 +#: g10/g10.c:1215 #, fuzzy msgid "--lsign-key user-id" msgstr "--delete-key ÉÍÑ-ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: g10/g10.c:1217 +#: g10/g10.c:1223 #, fuzzy msgid "--edit-key user-id [commands]" msgstr "--edit-key ÉÍÑ-ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: g10/g10.c:1233 +#: g10/g10.c:1239 #, fuzzy msgid "--delete-secret-key user-id" msgstr "--delete-secret-key ÉÍÑ-ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: g10/g10.c:1236 +#: g10/g10.c:1242 #, fuzzy msgid "--delete-key user-id" msgstr "--delete-key ÉÍÑ-ÐÏÌØÚÏ×ÁÔÅÌÑ" -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ `%s': %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 #, fuzzy msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÏÌØÚÏ×ÁÔÅÌÑ] [Ó×ÑÚËÁ ËÌÀÞÅÊ]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "ÏÛÉÂËÁ ÄÅËÏÄÉÒÏ×ÁÎÉÑ: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "ÏÛÉÂËÁ ËÏÄÉÒÏ×ÁÎÉÑ: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ÎÅÄÏÐÕÓÔÉÍÙÊ ÈÜÛ-ÁÌÇÏÒÉÔÍ `%s'\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[ÉÍÑ ÆÁÊÌÁ]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "" -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ `%s'\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" msgstr "" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "" @@ -2804,20 +2808,16 @@ msgstr "" msgid "invalid root packet detected in proc_tree()\n" msgstr "" -#: g10/misc.c:94 +#: g10/misc.c:96 #, fuzzy, c-format msgid "can't disable core dumps: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ `%s': %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "" -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" @@ -2967,11 +2967,11 @@ msgstr " msgid "protection algorithm %d is not supported\n" msgstr "ÁÌÇÏÒÉÔÍ ÚÁÝÉÔÙ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "îÅÐÒÁ×ÉÌØÎÁÑ ËÌÀÞÅ×ÁÑ ÆÒÁÚÁ, ÐÏÐÒÏÂÕÊÔÅ ÓÎÏ×Á ...\n" -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 #, fuzzy msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "ðÒÅÄÕÐÒÅÖÄÅÎÉÅ: ÏÂÎÁÒÕÖÅÎ ÓÌÁÂÙÊ ËÌÀÞ - ÓÍÅÎÉÔÅ ËÌÀÞÅ×ÕÀ ÆÒÁÚÕ.\n" @@ -3058,7 +3058,7 @@ msgstr "%s: msgid "%s: directory does not exist!\n" msgstr "" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, fuzzy, c-format msgid "%s: can't create: %s\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ: %s\n" @@ -3479,26 +3479,26 @@ msgstr "" msgid "%s: can't create keyring: %s\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, fuzzy, c-format msgid "%s: keyring created\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ: %s\n" -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, fuzzy, c-format msgid "%s is the unchanged one\n" msgstr "éÓÐÏÌØÚÏ×ÁÎ ÎÅÐÒÁ×ÉÌØÎÙÊ ÓÅËÒÅÔÎÙÊ ËÌÀÞ" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index 4e918b811..4f86093c7 100644 --- a/po/sv.po +++ b/po/sv.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.1e\n" -"POT-Creation-Date: 2000-09-06 17:28+0200\n" +"POT-Creation-Date: 2000-09-14 13:26+0200\n" "PO-Revision-Date: 2000-04-23 16:43+02:00\n" "Last-Translator: Daniel Resare \n" "Language-Team: Swedish \n" @@ -320,11 +320,11 @@ msgstr "kan inte st msgid "too many random bits requested; the limit is %d\n" msgstr "för många slumpmässiga bitar efterfrågades; maximalt antal är %d\n" -#: cipher/random.c:647 +#: cipher/random.c:650 msgid "WARNING: using insecure random number generator!!\n" msgstr "VARNING: använder en osäker slumptalsgenerator!!\n" -#: cipher/random.c:648 +#: cipher/random.c:651 msgid "" "The random number generator is only a kludge to let\n" "it run - it is in no way a strong RNG!\n" @@ -710,54 +710,58 @@ msgstr "anv msgid "conflicting commands\n" msgstr "motstridiga kommandon\n" -#: g10/g10.c:703 +#: g10/g10.c:704 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTERA: inställningsfilen \"%s\" saknas\n" -#: g10/g10.c:707 +#: g10/g10.c:708 #, c-format msgid "option file `%s': %s\n" msgstr "inställningsfil \"%s\": %s\n" -#: g10/g10.c:714 +#: g10/g10.c:715 #, c-format msgid "reading options from `%s'\n" msgstr "läser flaggor från \"%s\"\n" -#: g10/g10.c:904 +#: g10/g10.c:905 #, c-format msgid "%s is not a valid character set\n" msgstr "%s är ingen giltig teckentabell\n" -#: g10/g10.c:968 g10/g10.c:977 +#: g10/g10.c:970 +msgid "WARNING: program may create a core file!\n" +msgstr "VARNING: programmet kan komma att skapa en minnesutskrift!\n" + +#: g10/g10.c:974 g10/g10.c:983 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTERA: %s är inte för normal användning!\n" -#: g10/g10.c:970 +#: g10/g10.c:976 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s är inte tillåten tillsammans med %s!\n" -#: g10/g10.c:973 +#: g10/g10.c:979 #, c-format msgid "%s makes no sense with %s!\n" msgstr "det är ingen poäng att använda %s tillsammans med %s!\n" -#: g10/g10.c:992 g10/g10.c:1004 +#: g10/g10.c:998 g10/g10.c:1010 msgid "selected cipher algorithm is invalid\n" msgstr "den valda chifferalgoritmen är ogiltig\n" -#: g10/g10.c:998 g10/g10.c:1010 +#: g10/g10.c:1004 g10/g10.c:1016 msgid "selected digest algorithm is invalid\n" msgstr "den valda kontrollsummealgoritmen är ogiltig\n" -#: g10/g10.c:1014 +#: g10/g10.c:1020 msgid "the given policy URL is invalid\n" msgstr "angiven URL är ogiltig\n" -#: g10/g10.c:1017 +#: g10/g10.c:1023 #, c-format msgid "compress algorithm must be in range %d..%d\n" msgstr "kompressionsalgoritmen måste vara i intervallet %d..%d\n" @@ -768,127 +772,127 @@ msgstr "kompressionsalgoritmen m # är ändå litet. Eventuellt borde meddelandena inte alls # översättas för att göra eventuell felsökning lättare # för internationella felsökare -#: g10/g10.c:1019 +#: g10/g10.c:1025 msgid "completes-needed must be greater than 0\n" msgstr "variabeln \"completes-needed\" måste ha ett värde som är större än 0\n" -#: g10/g10.c:1021 +#: g10/g10.c:1027 msgid "marginals-needed must be greater than 1\n" msgstr "variabeln \"marginals-needed\" måste vara större än 1\n" -#: g10/g10.c:1023 +#: g10/g10.c:1029 msgid "max-cert-depth must be in range 1 to 255\n" msgstr "variabeln \"max-cert-depth\" måste ha ett värde mellan 1 och 255\n" -#: g10/g10.c:1026 +#: g10/g10.c:1032 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTERA: enkelt S2K-läge (0) rekommenderas inte\n" -#: g10/g10.c:1030 +#: g10/g10.c:1036 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ogiltigt S2K-läge; måste vara 0, 1 eller 3\n" -#: g10/g10.c:1115 +#: g10/g10.c:1121 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: g10/g10.c:1121 +#: g10/g10.c:1127 msgid "--store [filename]" msgstr "--store [filnamn]" -#: g10/g10.c:1128 +#: g10/g10.c:1134 msgid "--symmetric [filename]" msgstr "--symmetric [filnamn]" -#: g10/g10.c:1136 +#: g10/g10.c:1142 msgid "--encrypt [filename]" msgstr "--encrypt [filnamn]" -#: g10/g10.c:1149 +#: g10/g10.c:1155 msgid "--sign [filename]" msgstr "--sign [filnamn]" -#: g10/g10.c:1162 +#: g10/g10.c:1168 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnamn]" -#: g10/g10.c:1176 +#: g10/g10.c:1182 msgid "--clearsign [filename]" msgstr "--clearsign [filnamn]" -#: g10/g10.c:1193 +#: g10/g10.c:1199 msgid "--decrypt [filename]" msgstr "--decrypt [filnamn]" -#: g10/g10.c:1201 +#: g10/g10.c:1207 msgid "--sign-key user-id" msgstr "--sign-key användaridentitet" -#: g10/g10.c:1209 +#: g10/g10.c:1215 msgid "--lsign-key user-id" msgstr "--lsign-key användaridentitet" -#: g10/g10.c:1217 +#: g10/g10.c:1223 msgid "--edit-key user-id [commands]" msgstr "--edit-key användaridentitet [kommandon]" -#: g10/g10.c:1233 +#: g10/g10.c:1239 msgid "--delete-secret-key user-id" msgstr "--delete-secret-key användaridentitet" -#: g10/g10.c:1236 +#: g10/g10.c:1242 msgid "--delete-key user-id" msgstr "--delete-key användaridentitet" # Filnamn både med och utan fnuttar finns. lite ologiskt. Vill någon # fixa en patch? -#: g10/encode.c:265 g10/g10.c:1273 g10/sign.c:393 +#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393 #, c-format msgid "can't open %s: %s\n" msgstr "kan inte öppna %s: %s\n" -#: g10/g10.c:1288 +#: g10/g10.c:1294 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [användaridentitet] [nyckelring]" -#: g10/g10.c:1354 +#: g10/g10.c:1360 #, c-format msgid "dearmoring failed: %s\n" msgstr "misslyckades med att ta bort skalet: %s\n" -#: g10/g10.c:1362 +#: g10/g10.c:1368 #, c-format msgid "enarmoring failed: %s\n" msgstr "misslyckades med att skapa skal: %s\n" -#: g10/g10.c:1433 +#: g10/g10.c:1439 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "felaktig hash-algoritm \"%s\"\n" -#: g10/g10.c:1514 +#: g10/g10.c:1520 msgid "[filename]" msgstr "[filnamn]" -#: g10/g10.c:1518 +#: g10/g10.c:1524 msgid "Go ahead and type your message ...\n" msgstr "Skriv ditt meddelande här ...\n" # se förra kommentaren -#: g10/decrypt.c:59 g10/g10.c:1521 g10/verify.c:68 g10/verify.c:113 +#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113 #, c-format msgid "can't open `%s'\n" msgstr "kan inte öppna \"%s\"\n" -#: g10/g10.c:1694 +#: g10/g10.c:1700 msgid "" "the first character of a notation name must be a letter or an underscore\n" msgstr "" "det första tecknet i ett notationsnamn måste vara en bokstav eller\n" "ett understrykningstecken (_)\n" -#: g10/g10.c:1700 +#: g10/g10.c:1706 msgid "" "a notation name must have only letters, digits, dots or underscores and end " "with an '='\n" @@ -896,11 +900,11 @@ msgstr "" "ett notationsnamn kan bara innehålla bokstäver, siffror, punkter eller\n" "understrykningstecken och sluta med ett likhetstecken\n" -#: g10/g10.c:1706 +#: g10/g10.c:1712 msgid "dots in a notation name must be surrounded by other characters\n" msgstr "punkter i ett notationsnamn måste vara omgivna av andra tecken\n" -#: g10/g10.c:1714 +#: g10/g10.c:1720 msgid "a notation value must not use any control characters\n" msgstr "ett notationsvärde får inte inehålla några kontrolltecken\n" @@ -2706,21 +2710,17 @@ msgstr "signatur av den gamla (PGP 2.x) typen\n" msgid "invalid root packet detected in proc_tree()\n" msgstr "felaktigt rotpaket hittades i proc_tree()\n" -#: g10/misc.c:94 +#: g10/misc.c:96 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan inte deaktivera minnesutskrifter: %s\n" -#: g10/misc.c:97 -msgid "WARNING: program may create a core file!\n" -msgstr "VARNING: programmet kan komma att skapa en minnesutskrift!\n" - -#: g10/misc.c:205 +#: g10/misc.c:206 msgid "Experimental algorithms should not be used!\n" msgstr "Experimentella algoritmer bör inte användas!\n" # XXX -#: g10/misc.c:232 +#: g10/misc.c:233 msgid "this cipher algorithm is depreciated; please use a more standard one!\n" msgstr "" "avråder från denna chifferalgoritm, använd istället en mer normal algoritm!\n" @@ -2864,12 +2864,12 @@ msgstr "de hemliga nyckeldelarna msgid "protection algorithm %d is not supported\n" msgstr "skyddsalgoritmen %d stöds inte\n" -#: g10/seckey-cert.c:175 +#: g10/seckey-cert.c:184 msgid "Invalid passphrase; please try again ...\n" msgstr "Ogiltig lösenordsfras, försök igen ...\n" # är det nyckeln som är svag, konstigt -#: g10/seckey-cert.c:231 +#: g10/seckey-cert.c:240 msgid "WARNING: Weak key detected - please change passphrase again.\n" msgstr "VARNING: Upptäckte en svag nyckel - byt lösenordsfras igen.\n" @@ -2957,7 +2957,7 @@ msgstr "%s: ingen msgid "%s: directory does not exist!\n" msgstr "%s: katalogen finns inte!\n" -#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1363 g10/tdbio.c:444 +#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444 #, c-format msgid "%s: can't create: %s\n" msgstr "%s: kan inte skapa: %s\n" @@ -3379,27 +3379,27 @@ msgstr "raden %u msgid "%s: can't create keyring: %s\n" msgstr "%s: kan inte skapa nyckelring: %s\n" -#: g10/ringedit.c:319 g10/ringedit.c:1368 +#: g10/ringedit.c:319 g10/ringedit.c:1374 #, c-format msgid "%s: keyring created\n" msgstr "%s: nyckelring skapad\n" # märkligt felmeddelande, kolla upp -#: g10/ringedit.c:1545 +#: g10/ringedit.c:1551 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "VARNING: det finns 2 filer med konfidentiell information.\n" -#: g10/ringedit.c:1546 +#: g10/ringedit.c:1552 #, c-format msgid "%s is the unchanged one\n" msgstr "%s är den oförändrade\n" -#: g10/ringedit.c:1547 +#: g10/ringedit.c:1553 #, c-format msgid "%s is the new one\n" msgstr "%s är den nya\n" -#: g10/ringedit.c:1548 +#: g10/ringedit.c:1554 msgid "Please fix this possible security flaw\n" msgstr "Lös detta potentiella säkerhetsproblem\n" diff --git a/scripts/ChangeLog b/scripts/ChangeLog index b51e728bc..ae43d4519 100644 --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 14 17:45:11 CEST 2000 Werner Koch + + * gnupg.spec.in: Updated. + Wed Sep 6 17:55:47 CEST 2000 Werner Koch * config.guess, config.sub: Replaced with the latest version from the diff --git a/scripts/gnupg.spec.in b/scripts/gnupg.spec.in index 5ee69276c..425e0149a 100644 --- a/scripts/gnupg.spec.in +++ b/scripts/gnupg.spec.in @@ -8,6 +8,7 @@ Summary: GNU Utility for data encryption and digital signatures Summary(it): Utility GNU per la sicurezza nelle comunicazioni e nell'archiviazione dei dati. Summary(cs): GNU nástroj pro ¹ifrovanou komunikaci a bezpeèné ukládání dat Summary(fr): Utilitaire GNU de chiffrement et d'authentification des communications et des données +Summary(pl): Narzedzie GNU do szyfrowania i podpisywania danych Vendor: GNU Privacy Guard Project Name: %{name} Version: %{version} @@ -16,15 +17,23 @@ Copyright: GPL Group: Applications/Cryptography Group(cs): Aplikace/©ifrování Group(fr): Applications/Cryptographie +Group(it): Applicazioni/Crittografia Source: ftp://ftp.gnupg.org/pub/gcrypt/%{name}-%{version}.tar.gz URL: http://www.gnupg.org Provides: gpg openpgp BuildRoot: /tmp/rpmbuild_%{name} %changelog +* Wed Sep 06 2000 Fabio Coatti +- Added Polish description and summary (Kindly provided by + Lukasz Stelmach ) + +* Thu Jul 13 2000 Fabio Coatti +- Added a * to catch all formats for man pages (plain, gz, bz2...) + * Mon May 01 2000 Fabio Coatti - Some corrections in French description, thanks to Gaël Quéri -; Some corrections to Italian descriptions. + ; Some corrections to Italian descriptions. * Tue Apr 25 2000 Fabio Coatti - Removed the no longer needed patch for man page by Keith Owens @@ -43,7 +52,7 @@ BuildRoot: /tmp/rpmbuild_%{name} * Mon May 17 1999 Fabio Coatti - Added French description, provided by -Christophe Labouisse + Christophe Labouisse * Thu May 06 1999 Fabio Coatti - Upgraded for 0.9.6 (removed gpgm) @@ -58,7 +67,7 @@ Christophe Labouisse * Sat Dec 19 1998 Fabio Coatti - Modified the spec file provided by Caskey L. Dickson - Now it can be built also by non-root. Installation has to be done as -root, gpg is suid. + root, gpg is suid. - Added some changes by Ross Golder - Updates for version 0.4.5 of GnuPG (.mo files) @@ -101,6 +110,14 @@ kompatibiln celosvìtovì) a RSA (patentováno ve Spojených státech do 20. záøí 2000). Tyto algoritmy lze zavést do GnuPG pomocí externích modulù. +%description -l pl +GnuPG (GNU Privacy Guard) jest nazedziem do szfrowania danych i tworzenia +cyfrowych podpisów. GnuPG posiada zaawansowane mozliwosci obslugi kluczy +i jest zgodne z OpenPGP, proponowanym standardem internetowym opisanym +w RFC2440. Poniewaz GnuPG nie uzywa zadnych opatentowanych algorytmów +nie jest wiec zgodne z jaka kolwiek wersja PGP2 (PGP2.x kozysta jedynie +z algorytmów: IDEA, opatentowanego na calym swiecie, oraz RSA, którego +patent na terenie Stanów Zjednoczonych wygasa 20 wrzesnia 2000). %prep rm -rf $RPM_BUILD_ROOT @@ -136,7 +153,7 @@ make install-strip prefix=$RPM_BUILD_ROOT/usr %doc %attr (-,root,root) g10/pubring.asc %doc %attr (-,root,root) g10/OPTIONS -%attr (-,root,root) /usr/man/man1/gpg.1 +%attr (-,root,root) /usr/man/man1/gpg.1* %attr (4755,root,root) /usr/bin/gpg %attr (-,root,root) /usr/share/locale/*/*/%{name}.mo