aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2000-09-14 15:45:03 +0000
committerWerner Koch <[email protected]>2000-09-14 15:45:03 +0000
commit0f10fea8da46e372d344a42507c01b31b7b75670 (patch)
treec1d9a4f3fec3255bc0c939ce95d0dbc76d666089
parentSee ChangeLog: Thu Sep 14 14:20:38 CEST 2000 Werner Koch (diff)
downloadgnupg-0f10fea8da46e372d344a42507c01b31b7b75670.tar.gz
gnupg-0f10fea8da46e372d344a42507c01b31b7b75670.zip
See ChangeLog: Thu Sep 14 17:45:11 CEST 2000 Werner Koch
-rw-r--r--doc/Makefile.am9
-rw-r--r--g10/ChangeLog8
-rw-r--r--g10/getkey.c35
-rw-r--r--g10/parse-packet.c16
-rw-r--r--po/ChangeLog4
-rw-r--r--po/da.po118
-rw-r--r--po/de.po118
-rw-r--r--po/eo.po804
-rw-r--r--po/es_ES.po118
-rw-r--r--po/fr.po118
-rw-r--r--po/id.po118
-rw-r--r--po/it.po118
-rw-r--r--po/ja.po118
-rw-r--r--po/nl.po118
-rw-r--r--po/pl.po118
-rw-r--r--po/pt_BR.po118
-rw-r--r--po/pt_PT.po118
-rw-r--r--po/ru.po118
-rw-r--r--po/sv.po118
-rw-r--r--scripts/ChangeLog4
-rw-r--r--scripts/gnupg.spec.in25
21 files changed, 1243 insertions, 1196 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 <[email protected]>
+
+ * 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 <[email protected]>
* 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 <[email protected]>
+
+ * eo.po: Updated.
+
Wed Jul 12 13:32:06 CEST 2000 Werner Koch <wk@>
* 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 <[email protected]>\n"
"Language-Team: Danish <[email protected]>\n"
@@ -309,11 +309,11 @@ msgstr "kan ikke �bne '%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 "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�gle ikke tilg�ngelig"
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 <[email protected]>\n"
"Language-Team: German <[email protected]>\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�ssels sind nicht vorhanden\n"
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 <[email protected]>\n"
"Language-Team: Esperanto <[email protected]>\n"
"MIME-Version: 1.0\n"
@@ -255,7 +255,7 @@ msgstr "... �i tio estas cimo (%s:%d:%s)\n"
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 <[email protected]>.\n"
msgstr "Bonvolu raporti cimojn al <[email protected]>.\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 "�losilgrando tro malgranda; 768 estas plej eta permesata valoro.\n"
#. * 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 ""
" <n>m = �losilo eksvalidi�os post n monatoj\n"
" <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) <[email protected]>\"\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 "�losilo %08lX: ignoris sub�losilon\n"
#. * 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 "�u vere krei la revokatestilojn? (j/N)"
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�os: %s]"
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 "�i tiu �ifrad-metodo estas malrekomendata; bonvolu uzi pli normalan!\n"
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:487
+#, c-format
+msgid "NOTE: secret key %08lX is NOT protected.\n"
+msgstr "NOTO: sekreta �losilo %08lX NE estas protektita.\n"
+
+#: 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: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:501
+#: 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:507
+#: g10/trustdb.c:520
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "�losilo %08lX: peto-registro malsukcesis\n"
-#: g10/trustdb.c:516
+#: 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:519
+#: 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: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
-#, c-format
-msgid "NOTE: secret key %08lX is NOT protected.\n"
-msgstr "NOTO: sekreta �losilo %08lX NE estas protektita.\n"
-
-#: g10/trustdb.c:577
-#, 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
-#, 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: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 <[email protected]>\n"
"Language-Team: French <[email protected]>\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�tes ne sont pas disponibles\n"
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�der: %s\n"
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 <[email protected]>\n"
"Language-Team: Indonesia <[email protected]>\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 <[email protected]>\n"
"Language-Team: Italian <[email protected]>\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 � disponibile"
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 <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\n"
@@ -309,11 +309,11 @@ msgstr "`%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 "�ٹ�: �����Ǥʤ�����������֤��Ȥ��Ƥ��ޤ�!!\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 "�Ȥ���: gpg [options] "
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 "�Ť����� (PGP 2.x) �ˤ���̾\n"
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: ���������Ǥ��ޤ���: %s\n"
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 "���Ϥ�%u���ܤ�Ĺ�᤮�뤫��LF���ʤ��褦�Ǥ�\n"
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 <[email protected]>\n"
"Language-Team: Dutch <[email protected]>\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 <[email protected]>\n"
"Language-Team: Polish <[email protected]>\n"
@@ -317,13 +317,13 @@ msgstr "nie mo�na otworzy� %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 ""
"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�anie: gpg [opcje]"
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�pny"
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�p niemo�liwy: %s\n"
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�ciowa %u jest zbyt d�uga lub brakuje jej zako�czenia\n"
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 <[email protected]>\n"
@@ -313,11 +313,11 @@ msgstr "imposs�vel abrir `%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 "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��es] "
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�o dispon�vel"
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�vel acessar: %s\n"
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 <[email protected]>\n"
"Language-Team: pt\n"
@@ -310,11 +310,11 @@ msgstr "imposs�vel abrir `%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 "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��es] "
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�o dispon�vel"
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�vel aceder: %s\n"
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 <qinglong@Bolizm> (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 <[email protected]>\n"
@@ -365,12 +365,12 @@ msgstr "���������� ������� ���� `%s': %s\n"
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 "�������������: gpg [���������] "
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: ���������� �������: %s\n"
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 <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
@@ -320,11 +320,11 @@ msgstr "kan inte st�nga \"%s\": %s\n"
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�ndning: gpg [flaggor] "
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�ste vara i intervallet %d..%d\n"
# �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 �r inte tillg�nliga\n"
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 �tkomst: %s\n"
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 �r f�r l�ng, eller saknar nyradstecken\n"
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 <[email protected]>
+
+ * gnupg.spec.in: Updated.
+
Wed Sep 6 17:55:47 CEST 2000 Werner Koch <[email protected]>
* 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 <[email protected]>
+- Added Polish description and summary (Kindly provided by
+ Lukasz Stelmach <[email protected]>)
+
+* Thu Jul 13 2000 Fabio Coatti <[email protected]>
+- Added a * to catch all formats for man pages (plain, gz, bz2...)
+
* Mon May 01 2000 Fabio Coatti <[email protected]>
- Some corrections in French description, thanks to Ga�l Qu�ri
-<[email protected]>; Some corrections to Italian descriptions.
+ <[email protected]>; Some corrections to Italian descriptions.
* Tue Apr 25 2000 Fabio Coatti <[email protected]>
- 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 <[email protected]>
- Added French description, provided by
-Christophe Labouisse <[email protected]>
+ Christophe Labouisse <[email protected]>
* Thu May 06 1999 Fabio Coatti <[email protected]>
- Upgraded for 0.9.6 (removed gpgm)
@@ -58,7 +67,7 @@ Christophe Labouisse <[email protected]>
* Sat Dec 19 1998 Fabio Coatti <[email protected]>
- Modified the spec file provided by Caskey L. Dickson <caskey-at-technocage.com>
- 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 <[email protected]>
- Updates for version 0.4.5 of GnuPG (.mo files)
@@ -101,6 +110,14 @@ kompatibiln� s PGP verze 2. PGP 2.x pou��v� algoritmy IDEA (patentov�no
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