aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS3
-rw-r--r--TODO3
-rw-r--r--cipher/ChangeLog6
-rw-r--r--cipher/rndunix.c44
-rw-r--r--configure.in3
-rw-r--r--doc/gpg.sgml10
-rw-r--r--g10/ChangeLog6
-rw-r--r--g10/g10.c4
-rw-r--r--g10/mainproc.c2
-rw-r--r--g10/options.h1
-rw-r--r--po/de.po244
-rw-r--r--po/eo.po244
-rw-r--r--po/es_ES.po244
-rw-r--r--po/fr.po244
-rw-r--r--po/id.po244
-rw-r--r--po/it.po244
-rw-r--r--po/ja.po244
-rw-r--r--po/nl.po244
-rw-r--r--po/pl.po244
-rw-r--r--po/pt_BR.po244
-rw-r--r--po/pt_PT.po244
-rw-r--r--po/ru.po244
-rw-r--r--po/sv.po244
-rw-r--r--util/ChangeLog4
-rw-r--r--util/ttyio.c10
26 files changed, 1678 insertions, 1594 deletions
diff --git a/ChangeLog b/ChangeLog
index f309647f4..af9adea62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 9 10:09:52 CEST 2000 Werner Koch <[email protected]>
+
+ * configure.in: Add check for termio.h, wait unctiosn and sigaction.
+
Wed Jun 7 19:19:09 CEST 2000 Werner Koch <[email protected]>
* acinclude.m4 (MKDIR_TAKES_ONE_ARG): Check some headers. By Ga�l Qu�ri.
diff --git a/NEWS b/NEWS
index 5fa9834c3..9e150aefa 100644
--- a/NEWS
+++ b/NEWS
@@ -50,6 +50,9 @@ Noteworthy changes in the current test release
than 64 bits is to be used. --openpgp currently disables MDC packets
entirely.
+ * New option --no-auto-key-retrieve to disable retrieving of
+ a missing public key from a keyerver, when a keyerver has been set.
+
Noteworthy changes in version 1.0.1 (1999-12-16)
-----------------------------------
diff --git a/TODO b/TODO
index 4ab7e4603..9c70318f8 100644
--- a/TODO
+++ b/TODO
@@ -12,9 +12,6 @@
* Replace Valid/Invalid by Known/Unknown?
- * Add an option to disable automatic key retrieve while verifing
- signatures.
-
Scheduled for 1.1
-----------------
* Rework the whole key selection stuff: Compile a list of valid
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index b26d3f3f1..92b6303a4 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jun 9 10:09:52 CEST 2000 Werner Koch <[email protected]>
+
+ * rndunix.c (waitpid): New. For UTS 2.1. All by Dave Dykstra.
+ (my_popen): Do the FD_CLOEXEC only if it is available
+ (start_gatherer): Cope with missing _SC_OPEN_MAX
+
Sun May 28 13:55:17 CEST 2000 Werner Koch <[email protected]>
* random.c (read_seed_file): Binary open for DOSish system
diff --git a/cipher/rndunix.c b/cipher/rndunix.c
index 59a924e00..905ce9333 100644
--- a/cipher/rndunix.c
+++ b/cipher/rndunix.c
@@ -102,7 +102,13 @@
#include "util.h"
#ifndef EAGAIN
- #define EAGAIN EWOULDBLOCK
+#define EAGAIN EWOULDBLOCK
+#endif
+#ifndef STDIN_FILENO
+#define STDIN_FILENO 0
+#endif
+#ifndef STDOUT_FILENO
+#define STDOUT_FILENO 1
#endif
#define GATHER_BUFSIZE 49152 /* Usually about 25K are filled */
@@ -308,6 +314,34 @@ typedef struct {
char data[500]; /* gathered data */
} GATHER_MSG;
+
+#ifndef HAVE_WAITPID
+pid_t
+waitpid(pid_t pid, int *statptr, int options)
+{
+ #ifdef HAVE_WAIT4
+ return wait4(pid, statptr, options, NULL);
+ #else
+ /* If wait4 is also not available, try wait3 for SVR3 variants */
+ /* Less ideal because can't actually request a specific pid */
+ /* For that reason, first check to see if pid is for an */
+ /* existing process. */
+ int tmp_pid, dummystat;;
+ if (kill(pid, 0) == -1) {
+ errno = ECHILD;
+ return -1;
+ }
+ if (statptr == NULL)
+ statptr = &dummystat;
+ while (((tmp_pid = wait3(statptr, options, 0)) != pid) &&
+ (tmp_pid != -1) && (tmp_pid != 0) && (pid != -1))
+ ;
+ return tmp_pid;
+ #endif
+}
+#endif
+
+
/* Under SunOS popen() doesn't record the pid of the child process. When
* pclose() is called, instead of calling waitpid() for the correct child, it
* calls wait() repeatedly until the right child is reaped. The problem is
@@ -378,7 +412,9 @@ my_popen(struct RI *entry)
* close on exec, so new children won't see it */
close(pipedes[STDOUT_FILENO]);
+#ifdef FD_CLOEXEC
fcntl(pipedes[STDIN_FILENO], F_SETFD, FD_CLOEXEC);
+#endif
stream = fdopen(pipedes[STDIN_FILENO], "r");
@@ -471,8 +507,6 @@ slow_poll(FILE *dbgfp, int dbgall, size_t *nbytes )
maxFD = dataSources[i].pipeFD;
#ifdef O_NONBLOCK /* Ohhh what a hack (used for Atari) */
fcntl(dataSources[i].pipeFD, F_SETFL, O_NONBLOCK);
- #else
- #warning O_NONBLOCK is missing
#endif
FD_SET(dataSources[i].pipeFD, &fds);
dataSources[i].length = 0;
@@ -618,6 +652,7 @@ start_gatherer( int pipefd )
}
/* close all files but the ones we need */
{ int nmax, n1, n2, i;
+ #ifdef _SC_OPEN_MAX
if( (nmax=sysconf( _SC_OPEN_MAX )) < 0 ) {
#ifdef _POSIX_OPEN_MAX
nmax = _POSIX_OPEN_MAX;
@@ -625,6 +660,9 @@ start_gatherer( int pipefd )
nmax = 20; /* assume a reasonable value */
#endif
}
+ #else
+ nmax = 20; /* assume a reasonable value */
+ #endif
n1 = fileno( stderr );
n2 = dbgfp? fileno( dbgfp ) : -1;
for(i=0; i < nmax; i++ ) {
diff --git a/configure.in b/configure.in
index 26dfe361c..dc7c26182 100644
--- a/configure.in
+++ b/configure.in
@@ -361,7 +361,7 @@ AC_SUBST(DYNLINK_MOD_CFLAGS)
dnl Checks for header files.
AC_HEADER_STDC
-AC_CHECK_HEADERS(unistd.h langinfo.h)
+AC_CHECK_HEADERS(unistd.h langinfo.h termio.h)
dnl Checks for typedefs, structures, and compiler characteristics.
@@ -398,6 +398,7 @@ AC_FUNC_VPRINTF
AC_CHECK_FUNCS(strerror stpcpy strlwr stricmp tcgetattr rand strtoul mmap)
AC_CHECK_FUNCS(memmove gettimeofday getrusage gethrtime setrlimit clock_gettime)
AC_CHECK_FUNCS(memicmp atexit raise getpagesize strftime nl_langinfo)
+AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask)
GNUPG_CHECK_MLOCK
GNUPG_FUNC_MKDIR_TAKES_ONE_ARG
diff --git a/doc/gpg.sgml b/doc/gpg.sgml
index fc63bdcb5..b43f6e9a5 100644
--- a/doc/gpg.sgml
+++ b/doc/gpg.sgml
@@ -750,6 +750,16 @@ balancing using round-robin DNS you may notice
that you get different key servers.
</para></listitem></varlistentry>
+
+<varlistentry>
+<term>--no-auto-key-retrieve</term>
+<listitem><para>
+This option disables the automatic retrieving of keys from a keyserver
+while verifying signatures. This option allows to keep a keyserver in
+the options file or the --send-keys and --recv-keys commands.
+</para></listitem></varlistentry>
+
+
<varlistentry>
<term>--honor-http-proxy</term>
<listitem><para>
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 618fb7a04..f684a2075 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jun 9 10:09:52 CEST 2000 Werner Koch <[email protected]>
+
+ * g10.c: New options --no-auto-key-retrieve
+ * options.h (auto_key_retrieve): New.
+ * mainproc.c (check_sig_and_print): Implemented that.
+
Wed Jun 7 19:19:09 CEST 2000 Werner Koch <[email protected]>
* sig-check.c (do_check): Use EMULATE_MDENCODE also on v4 paclets.
diff --git a/g10/g10.c b/g10/g10.c
index ea7f8aaea..7a59b71d3 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -186,6 +186,7 @@ enum cmd_and_opt_values { aNull = 0,
oListOnly,
oIgnoreTimeConflict,
oNoRandomSeedFile,
+ oNoAutoKeyRetrieve,
oEmu3DESS2KBug, /* will be removed in 1.1 */
oEmuMDEncodeBug,
aTest };
@@ -367,6 +368,7 @@ static ARGPARSE_OPTS opts[] = {
{ oListOnly, "list-only", 0, "@"},
{ oIgnoreTimeConflict, "ignore-time-conflict", 0, "@" },
{ oNoRandomSeedFile, "no-random-seed-file", 0, "@" },
+ { oNoAutoKeyRetrieve, "no-auto-key-retrieve", 0, "@" },
{ oEmu3DESS2KBug, "emulate-3des-s2k-bug", 0, "@"},
{ oEmuMDEncodeBug, "emulate-md-encode-bug", 0, "@"},
{0} };
@@ -613,6 +615,7 @@ main( int argc, char **argv )
opt.marginals_needed = 3;
opt.max_cert_depth = 5;
opt.pgp2_workarounds = 1;
+ opt.auto_key_retrieve = 1;
#ifdef __MINGW32__
opt.homedir = read_w32_registry_string( NULL, "Software\\GNU\\GnuPG", "HomeDir" );
#else
@@ -913,6 +916,7 @@ main( int argc, char **argv )
case oListOnly: opt.list_only=1; break;
case oIgnoreTimeConflict: opt.ignore_time_conflict = 1; break;
case oNoRandomSeedFile: use_random_seed = 0; break;
+ case oNoAutoKeyRetrieve: opt.auto_key_retrieve = 0; break;
default : pargs.err = configfp? 1:2; break;
}
diff --git a/g10/mainproc.c b/g10/mainproc.c
index abfdf6bb6..99806313a 100644
--- a/g10/mainproc.c
+++ b/g10/mainproc.c
@@ -1068,7 +1068,7 @@ check_sig_and_print( CTX c, KBNODE node )
(int)strlen(tstr), tstr, astr? astr: "?", (ulong)sig->keyid[1] );
rc = do_check_sig(c, node, NULL );
- if( rc == G10ERR_NO_PUBKEY && opt.keyserver_name ) {
+ if( rc == G10ERR_NO_PUBKEY && opt.keyserver_name && opt.auto_key_retrieve) {
if( !hkp_ask_import( sig->keyid ) )
rc = do_check_sig(c, node, NULL );
}
diff --git a/g10/options.h b/g10/options.h
index f5657f70f..5d80e6771 100644
--- a/g10/options.h
+++ b/g10/options.h
@@ -90,6 +90,7 @@ struct {
int fast_list_mode;
int ignore_time_conflict;
int command_fd;
+ int auto_key_retrieve;
} opt;
diff --git a/po/de.po b/po/de.po
index 856ff7c31..493f44e07 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"PO-Revision-Date: 2000-04-22 21:50+0200\n"
"Last-Translator: Walter Koch <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
@@ -18,11 +18,11 @@ msgstr "Warnung: Sensible Daten k�nnten auf Platte ausgelagert werden.\n"
# " Um dies zu vermeiden, kann das Programm suid(root) installiert werden.\n"
# " Bitte wenden Sie sich hierzu an den Systemadministrator.\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "Vorgang ist ohne sicheren Hauptspeicher nicht m�glich\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr ""
"(m�glicherweise haben Sie das falsche Programm f�r diese Aufgabe benutzt)\n"
@@ -340,7 +340,7 @@ msgstr ""
"Arbeiten durch, damit das Betriebssystem weitere Entropie sammeln kann!\n"
"(Es werden noch %d Byte ben�tigt.)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -348,139 +348,139 @@ msgstr ""
"@Befehle:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[Datei]|Eine Unterschrift erzeugen"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[Datei]|Eine Klartextunterschrift erzeugen"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "Eine abgetrennte Unterschrift erzeugen"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "Daten verschl�sseln"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "Daten symmetrisch verschl�sseln"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "Nur speichern"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "Daten entschl�sseln (Voreinstellung)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "Signatur pr�fen"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "Liste der Schl�ssel"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "Liste der Schl�ssel und ihrer Signaturen"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "Signaturen der Schl�ssel pr�fen"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "Liste der Schl�ssel und ihrer \"Fingerabdr�cke\""
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "Liste der geheimen Schl�ssel"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "Ein neues Schl�sselpaar erzeugen"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "Schl�ssel aus dem �ff. Schl�sselbund entfernen"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "Schl�ssel aus dem geh. Schl�sselbund entfernen"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "Schl�ssel signieren"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "Schl�ssel nur auf diesem Rechner signieren"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "Unterschreiben oder Bearbeiten eines Schl."
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "Ein Schl�sselwiderruf-Zertifikat erzeugen"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "Schl�ssel exportieren"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "Schl�ssel zu einem Schl�.server exportieren"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "Schl�ssel von einem Schl�.server importieren"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "Schl�ssel importieren/kombinieren"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "Lediglich Struktur der Datenpakete anzeigen"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "Exportieren der \"Owner trust\" Werte"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "Importieren der \"Owner trust\" Werte"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "�ndern der \"Trust\"-Datenbank"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMEN]|�berpr�fen der \"Trust\"-Datenbank"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "Reparieren einer besch�digten \"Trust\"-Datenb."
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "Datei oder stdin von der ASCII-H�lle befreien"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "Datei oder stdin in eine ASCII-H�lle einpacken"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [Dateien]|Message-Digests f�r die Dateien ausgeben"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -490,152 +490,152 @@ msgstr ""
"Optionen:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "Ausgabe mit ASCII-H�lle versehen"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NAME|Verschl�sseln f�r NAME"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NAME|NAME als voreingestellten Empf�nger benutzen"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr ""
"Den Standardschl�ssel als voreingestellten\n"
"Empf�nger benutzen"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "Mit dieser User-ID signieren"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "Kompressionsstufe auf N setzen (0=keine)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "Textmodus benutzen"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "Als Ausgabedatei benutzen"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "Detaillierte Informationen"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "Etwas weniger Infos"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "das Terminal gar nicht benutzen"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "v3 Signaturen erzwingen"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "Beim Verschl�sseln ein Siegel (MDC) verwenden"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "Keine wirklichen �nderungen durchf�hren"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "Stapelmodus: Keine Abfragen"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "\"Ja\" als Standardantwort annehmen"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "\"Nein\" als Standardantwort annehmen"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "Als �ffentlichen Schl�sselbund mitbenutzen"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "Als geheimen Schl�sselbund mitbenutzen"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NAME|NAME als voreingestellten Schl�ssel benutzen"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|Schl�ssel bei diesem Server nachschlagen"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAME|Terminalzeichensatz NAME benutzen"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "Optionen aus der Datei lesen"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|Statusinfo auf FD (Dateihandle) ausgeben"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|DATEI|Erweiterungsmodul DATEI laden"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "Den in RFC1991 beschriebenen Modus nachahmen"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
"alle Paket-, Verschl�sselungs- und\n"
"Hashoptionen auf OpenPGP-Verhalten einstellen"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|Verwenden des Mantra-Modus N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAME|Hashverfahren NAME f�r Mantras benutzen"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAME|Verschl�.verfahren NAME f�r Mantras benutzen"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAME|Verschl�.verfahren NAME benutzen"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAME|Hashverfahren NAME benutzen"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|Komprimierverfahren N benutzen"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "Entferne Empf�nger-ID verschl�sselter Pakete"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAME=WERT|verwende diese \"notation\"-Daten"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
@@ -644,7 +644,7 @@ msgstr ""
"(Auf der \"man\"-Seite ist eine vollst�ndige Liste aller Kommandos und "
"Optionen)\n"
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -664,17 +664,17 @@ msgstr ""
" --list-keys [Namen] Schl�ssel anzeigen\n"
" --fingerprint [Namen] \"Fingerabdr�cke\" anzeigen\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"Berichte �ber Bugs (Programmfehler) bitte an <[email protected]>.\n"
"Sinn- oder Schreibfehler in den deutschen Texten bitte an <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Aufruf: gpg [Optionen] [Dateien] (-h f�r Hilfe)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -684,7 +684,7 @@ msgstr ""
"Signieren, pr�fen, verschl�sseln, entschl�sseln\n"
"Die voreingestellte Operation ist abh�ngig von den Eingabedaten\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -692,184 +692,184 @@ msgstr ""
"\n"
"Unterst�tzte Verfahren:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "Aufruf: gpg [Optionen] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "Widerspr�chliche Befehle\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "Optionendatei '%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "Optionen werden aus '%s' gelesen\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s ist kein g�ltiger Zeichensatz.\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, 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:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s kann nicht zusammen mit %s verwendet werden!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s zusammen mit %s ist nicht sinnvoll!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "Das ausgew�hlte Verschl�sslungsverfahren ist ung�ltig\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "Das ausgew�hlte Hashverfahren ist ung�ltig\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "Die angegebene URL f�r Richtlinien ist ung�ltig\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed m�ssen gr��er als 0 sein\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed m�ssen gr��er als 1 sein\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n"
-#: g10/g10.c:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [Dateiname]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [Dateiname]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [Dateiname]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [Dateiname]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [Dateiname]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [Dateiname]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [Dateiname]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key User-ID"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key User-ID"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key User-ID [Befehle]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key User-ID"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key User-ID"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "'%s' kann nicht ge�ffnet werden: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [User-ID] [Schl�sselbund]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "Entfernen der ASCII-H�lle ist fehlgeschlagen: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "Anbringen der ASCII-H�lle ist fehlgeschlagen: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "Ung�ltiges Hashverfahren '%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[Dateiname]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Auf geht's - Botschaft eintippen ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "'%s' kann nicht ge�ffnet werden\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -877,12 +877,12 @@ msgstr ""
"Ein \"notation\"-Name darf nur Buchstaben, Zahlen, Punkte oder Unterstriche "
"enthalten und mu� mit einem '=' enden\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "Ein \"notation\"-Wert darf keine Kontrollzeichen verwenden\n"
diff --git a/po/eo.po b/po/eo.po
index 3be20dffe..a8b251157 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.0h\n"
-"POT-Creation-Date: 2000-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"PO-Revision-Date: 2000-02-16 14:41+00:00\n"
"Last-Translator: Edmund GRIMLEY EVANS <[email protected]>\n"
"Language-Team: Esperanto <[email protected]>\n"
@@ -17,11 +17,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Averto: uzas malsekuran memoron!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "operacio ne eblas sen sekura memoro kun komenca valoro\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(eble vi uzis la mal�ustan programon por �i tiu tasko)\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:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -344,139 +344,139 @@ msgstr ""
"@Komandoj:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[dosiero]|fari subskribon"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[dosiero]|fari klartekstan subskribon"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "fari apartan subskribon"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "�ifri datenojn"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "�ifri nur kun simetria �ifro"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "nur skribi"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "mal�ifri datenojn (implicita elekto)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "kontroli subskribon"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "listigi �losilojn"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "listigi �losilojn kaj subskribojn"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "kontroli �losilsubskribojn"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "listigi �losilojn kaj fingro�purojn"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "listigi sekretajn �losilojn"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "krei novan �losilparon"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "forigi �losilon de la publika �losilaro"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "forigi �losilon de la sekreta �losilaro"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "subskribi �losilon"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "subskribi �losilon loke"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "subskribi a� redakti �losilon"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "krei revokatestilon"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "eksporti �losilojn"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "eksporti �losilojn al �losilservilo"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importi �losilojn de �losilservilo"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importi/kunfandi �losilojn"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "listigi nur la sinsekvon de paketoj"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "eksporti la posedantofido-valorojn"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importi posedantofido-valorojn"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "aktualigi la fido-datenaron"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMOJ]|kontroli la fido-datenaron"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "ripari fu�itan fido-datenaron"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "elkirasigi dosieron a� la normalan enigon"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "enkirasigi dosieron a� la normalan enigon"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|metodo [dosieroj]|presi mesa�o-kompendiojn"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -486,154 +486,154 @@ msgstr ""
"Opcioj:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "krei eligon en askia kiraso"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NOMO|�ifri por NOMO"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NOMO|uzi NOMOn kiel implicitan ricevonton"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "uzi la implicitan �losilon kiel implicitan ricevonton"
-#: g10/g10.c:260
+#: 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:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|difini densig-nivelon N (0=nenia)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "uzi tekstan re�imon"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "uzi dosieron por eligo"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "detala eligo"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "iom malpli da informoj"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "tute ne uzi la terminalon"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "devigi v3-subskribojn"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "�iam uzi sigelon (MDC) por �ifrado"
-#: g10/g10.c:270
+#: 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:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "neinteraga re�imo: neniam demandi"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "supozi \"jes\" �e la plej multaj demandoj"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "supozi \"ne\" �e la plej multaj demandoj"
-#: g10/g10.c:275
+#: 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:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "aldoni �i tiun sekretan �losilaron al la listo"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NOMO|uzi NOMOn kiel la implicitan sekretan �losilon"
-#: g10/g10.c:278
+#: 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:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOMO|difini NOMOn kiel la signaron de la terminalo"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "legi la opciojn el dosiero"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|skribi statusinformojn al FD (dosierpriskribilo)"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|DOSIERO|legi aldonan bibliotekon DOSIERO"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "imiti la re�imon priskribitan en RFC 1991"
-#: g10/g10.c:291
+#: 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:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|uzi pasfraz-re�imon N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NOMO|uzi kompendi-metodon NOMO por pasfrazoj"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NOMO|uzi �ifrad-metodon NOMO por pasfrazoj"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOMO|uzi �ifrad-metodon NOMO"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOMO|uzi kompendi-metodon NOMO"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|uzi densig-metodon N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "forigi la �losilidentigilon de �ifritaj paketoj"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOMO=VALORO|uzi �i tiun notacian datenon"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -653,15 +653,15 @@ msgstr ""
" --list-keys [nomoj] montri �losilojn\n"
" --fingerprint [nomoj] montri fingro�purojn\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Bonvolu raporti cimojn al <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -671,7 +671,7 @@ msgstr ""
"subskribi, kontroli, �ifri a� mal�ifri\n"
"implicita operacio dependas de la enigataj datenoj\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -679,182 +679,182 @@ msgstr ""
"\n"
"Realigitaj metodoj:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "uzado: gpg [opcioj] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "malkongruaj komandoj\n"
-#: g10/g10.c:689
+#: 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:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "opcio-dosiero '%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "legas opciojn el '%s'\n"
-#: g10/g10.c:890
+#: 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:945 g10/g10.c:954
+#: 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:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s ne eblas kun %s!\n"
-#: g10/g10.c:950
+#: 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:969 g10/g10.c:981
+#: 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:975 g10/g10.c:987
+#: 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:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "la donita gvidlinia URL ne validas\n"
-#: g10/g10.c:994
+#: 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:996
+#: 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:998
+#: 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:1000
+#: 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:1003
+#: 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:1007
+#: 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:1092
+#: 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:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [dosiero]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [dosiero]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [dosiero]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [dosiero]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [dosiero]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [dosiero]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [dosiero]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key uzantidentigilo"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key uzantidentigilo"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key uzantidentigilo [komandoj]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key uzantidentigilo"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key uzantidentigilo"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "ne povas malfermi %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [uzantidentigilo] [�losilaro]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "elkirasigo malsukcesis: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "enkirasigo malsukcesis: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "nevalida kompendi-metodo '%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[dosiero]"
-#: g10/g10.c:1492
+#: 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:1495 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:1665
+#: 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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -862,11 +862,11 @@ msgstr ""
"notacia nomo devas enhavi nur literojn, ciferojn, punktojn a� substrekojn "
"kaj fini per '='\n"
-#: g10/g10.c:1677
+#: 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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "notacia valoro ne povas enhavi stirsignojn\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 1bd1e3a62..33e8ecf27 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+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"
@@ -26,11 +26,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "ATENCI�N: �se est� usando memoria insegura!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "operaci�n imposible sin memoria segura inicializada\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(es posible que haya usado el programa incorrecto para esta tarea)\n"
@@ -348,7 +348,7 @@ msgstr ""
"otro trabajo para que el sistema pueda recolectar m�s entrop�a\n"
"(se necesitan %d bytes m�s).\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -356,140 +356,140 @@ msgstr ""
"@Comandos:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[file]|hace una firma"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[file]|hace una firma en texto claro"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "hace una firma separada"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "cifra datos"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "cifra s�lo con un cifrado sim�trico"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "s�lo almacenar"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "descifra datos (predefinido)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "verifica una firma"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "lista claves"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "lista claves y firmas"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "comprueba las firmas de las claves"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "lista claves y huellas dactilares"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "lista claves secretas"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "genera un nuevo par de claves"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "elimina la clave del anillo p�blico"
-#: g10/g10.c:216
+#: g10/g10.c:217
#, fuzzy
msgid "remove key from the secret keyring"
msgstr "elimina la clave del anillo p�blico"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "firma la clave"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "firma la clave localmente"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "firma o modifica una clave"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "genera un certificado de revocaci�n"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "exporta claves"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "exporta claves a un servidor de claves"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importa claves desde un servidor de claves"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importa/fusiona claves"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "lista s�lo la secuencia de paquetes"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "exporta los valores de confianza"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importa los valores de confianza"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "actualiza la base de datos de confianza"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMBRES]|comprueba la base de datos de confianza"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "arregla una base de datos de confianza da�ada"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "quita la armadura de un fichero o stdin"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "crea la armadura a un fichero o stdin"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [ficheros]|imprime res�menes de mensaje"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -499,160 +499,160 @@ msgstr ""
"Opciones:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "crea una salida ascii con armadura"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NOMBRE|cifra para NOMBRE"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NOMBRE|usa NOMBRE como destinatario por defecto"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "usa la clave por defecto como destinatario"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "usa este usuario para firmar o descifrar"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|nivel de compresi�n N (0 no comprime)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "usa modo de texto can�nico"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "usa como fichero de salida"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "prolijo"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "algo m�s discreto"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "no usa la terminal en absoluto"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "fuerza firmas v3"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "siempre usa un MCD para cifrar"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "no hace ning�n cambio"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "proceso por lotes: nunca preguntar"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "asume \"s�\" en casi todas las preguntas"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "asume \"no\" en casi todas las preguntas"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "a�ade este anillo a la lista de anillos"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "a�ade este anillo secreto a la lista"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NOMBRE|usa NOMBRE como clave secreta por defecto"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|SERVIDOR|usa este servidor de claves"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOMBRE|usa el juego de caracteres NOMBRE"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "lee opciones del fichero"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|DF|escribe informaci�n de estado en descriptor DF"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FICHERO|carga m�dulo de extensiones FICHERO"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "emula el modo descrito en la RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
"todas las opciones de paquete, cifrado y\n"
"resumen tipo OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|usa modo de contrase�a N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr ""
"|NOMBRE|usa algoritmo de resumen de mensaje NOMBRE\n"
"para las contrase�as"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr ""
"|NOMBRE|usa el algoritmo de cifrado NOMBRE para las\n"
"contrase�as"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOMBRE|usa el algoritmo de cifrado NOMBRE"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOMBRE|usa algoritmo de resumen de mensaje NOMBRE"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|usa el algoritmo de compresi�n N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "elimina campo keyid de los paquetes cifrados"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOMBRE=VALOR|usa estos datos de notaci�n"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -672,15 +672,15 @@ msgstr ""
" --list-keys [nombres] muestra las claves\n"
" --fingerprint [nombres] muestra las huellas dactilares\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Por favor, informe de posibles \"bugs\" a <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [opciones] [ficheros] (-h para ayuda)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -690,7 +690,7 @@ msgstr ""
"Firma, comprueba, cifra o descifra.\n"
"La operaci�n por defecto depende del tipo de datos de entrada.\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -698,182 +698,182 @@ msgstr ""
"\n"
"Algoritmos soportados:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "uso: gpg [opciones] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "comandos incompatibles\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "fichero de opciones `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "leyendo opciones desde `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, 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:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "NOTA: �%s no es para uso normal!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "�%s no permitido con %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "�%s no tiene sentido con %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "el algoritmo de cifrado seleccionado no es v�lido\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "el algoritmo de resumen seleccionado no es v�lido\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "URL de pol�tica no v�lida\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed debe ser mayor que 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed debe ser mayor que 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
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:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, 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:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [nombre_fichero]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [nombre_fichero]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [nombre_fichero]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [nombre_fichero]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nombre_fichero]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [nombre_fichero]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [nombre_fichero]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key id-usuario"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key id-usuario"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id-usuario [comandos]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key id-usuario"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key id-usuario"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [id-usuario] [anillo]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "eliminaci�n de armadura fallida: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "creaci�n de armadura fallida: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de distribuci�n no v�lido `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[nombre_fichero]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Adelante, teclee su mensaje...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "no puede abrirse `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -881,11 +881,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:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
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"
diff --git a/po/fr.po b/po/fr.po
index c3dbc10b4..28fe9fae9 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.1e\n"
-"POT-Creation-Date: 2000-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"PO-Revision-Date: 2000-06-04 15:40+02:00\n"
"Last-Translator: Ga�l Qu�ri <[email protected]>\n"
"Language-Team: French <[email protected]>\n"
@@ -22,13 +22,13 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Avertissement: l'utilisation de la m�moire n'est pas s�re !\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr ""
"l'op�ration n'est pas possible tant que la m�moire s�re n'est pas\n"
"initialis�e\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(vous avez peut-�tre utilis� un programme non adapt� � cette fin)\n"
@@ -348,7 +348,7 @@ msgstr ""
"Il n'y a pas assez d'octets al�atoires disponibles. Faites autre chose\n"
"pour que l'OS puisse amasser plus d'entropie ! (il faut %d octets de plus)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -356,139 +356,139 @@ msgstr ""
"@Commandes:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[fichier]|faire une signature"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[fichier]|faire une signature en texte clair"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "faire une signature d�tach�e"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "chiffrer les donn�es"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "chiffrement sym�trique seulement"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "pas d'action"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "d�chiffrer les donn�es (d�faut)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "v�rifier une signature"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "lister les cl�s"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "lister les cl�s et les signatures"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "v�rifier les signatures des cl�s"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "lister les cl�s et les empreintes"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "lister les cl�s secr�tes"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "g�n�rer une nouvelle paire de cl�s"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "enlever la cl� du porte-cl�s public"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "enlever la cl� du porte-cl�s secret"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "signer une cl�"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "signer une cl� localement"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "signer ou �diter une cl�"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "g�n�rer un certificat de r�vocation"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "exporter les cl�s"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "exporter les cl�s vers un serveur de cl�s"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importer les cl�s d'un serveur de cl�s"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importer/fusionner les cl�s"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "ne lister que les paquets"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "exporter les indices de confiance"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importer les indices de confiance"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "mettre la base de confiance � jour"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMS]|v�rifier la base de confiance"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "r�parer une base de confiance corrompue"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "Enlever l'armure d'un fichier ou de stdin"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "Mettre une armure � un fichier ou � stdin"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|alg. [fich.]|indiquer les fonctions de hachage"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -498,148 +498,148 @@ msgstr ""
"Options:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "cr�er une sortie ascii avec armure"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NOM|chiffrer pour NOM"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NOM|utiliser NOM comme r�cipient par d�faut"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "utiliser la cl� par d�f. comme r�cipient"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "utiliser ce nom pour signer ou d�chiffrer"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|niveau de compression N (0 d�sactive)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "utiliser le mode texte canonique"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "utiliser comme fichier de sortie"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "bavard"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "devenir beaucoup plus silencieux"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "ne pas utiliser du tout le terminal"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "forcer les signatures en v3"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "toujours utiliser un sceau pour le chiffrement"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "ne rien changer"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "mode automatique: ne jamais rien demander"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "r�pondre oui � la plupart des questions"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "r�pondre non � la plupart des questions"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "ajouter ce porte-cl�s � la liste"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "ajouter ce porte-cl�s secret � la liste"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NOM|utiliser NOM comme cl� secr�te par d�faut"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|H�TE|utiliser ce serveur pour chercher des cl�s"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOM|le terminal utilise la table de caract�res NOM"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "lire les options du fichier"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|�crire l'�tat sur ce descripteur"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FICH|charger le module d'extension FICH"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "imiter le mode d�crit dans la RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "utiliser le comportement d�fini par OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|coder les mots de passe suivant le mode N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NOM|utiliser le hachage NOM pour les mots de passe"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NOM|utiliser le chiffre NOM pour les mots de passe"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOM|utiliser l'algorithme de chiffrement NOM"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOM|utiliser la fonction de hachage NOM"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|utiliser l'algorithme de compression N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "supprimer l'ident. des paquets chiffr�s"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOM=VALEUR|utiliser ces donn�es de notation"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
@@ -647,7 +647,7 @@ msgstr ""
"@\n"
"(Voir la page de manuel pour une liste compl�te des commandes et options)\n"
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -667,17 +667,17 @@ msgstr ""
" --list-keys [utilisateur] montrer les cl�s\n"
" --fingerprint [utilisateur] montrer les empreintes\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"Rapporter toutes anomalies � <[email protected]>,\n"
"et les probl�mes de traduction � <[email protected]>\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Utilisation: gpg [options] [fichiers] (-h pour l'aide)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -687,7 +687,7 @@ msgstr ""
"signer, v�rifier, chiffrer ou d�chiffrer\n"
"l'op�ration par d�faut d�pend des donn�es entr�es\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -695,184 +695,184 @@ msgstr ""
"\n"
"Algorithmes support�s:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "utilisation: gpg [options] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "commandes en conflit\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, 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:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "fichier d'options `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "lire les options de `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, 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:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, 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:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s n'est pas permis avec %s !\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s n'a aucun sens avec %s !\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "l'algorithme de chiffrement s�lectionn� est invalide\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "la fonction de hachage s�lectionn�e est invalide\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "l'URL de politique donn�e est invalide\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "�completes-needed� doit �tre sup�rieur � 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "�marginals-needed� doit �tre sup�rieur � 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
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:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "impossible d'initialiser la base de confiance: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [nom du fichier]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [nom du fichier]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [nom du fichier]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [nom du fichier]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nom du fichier]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [nom du fichier]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [nom du fichier]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key utilisateur"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key utilisateur"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key utilisateur [commandes]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key utilisateur"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key utilisateur"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "impossible d'ouvrir %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [utilisateur] [porte-cl�s]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "la suppression d'une armure a �chou�: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "la construction d'une armure a �chou�: %s \n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algorithme de hachage `%s' invalide\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[nom du fichier]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Continuez et tapez votre message...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "impossible d'ouvrir `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -881,13 +881,13 @@ msgstr ""
"des points ou des traits de soulignement et doit se terminer par un signe "
"�gal\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
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"
diff --git a/po/id.po b/po/id.po
index 4238bb2f6..43d95a230 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+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"
@@ -17,11 +17,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Peringatan: menggunakan memori yang tidak aman!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "operasi tidak mungkin tanpa menginisialisasi memori yang aman\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(anda mungkin menggunakan program yang salah untuk tugas ini)\n"
@@ -337,7 +337,7 @@ msgstr ""
"Tidak tersedia cukup byte random. Silakan melakukan aktivitas lain agar\n"
"memungkinkan SO mengumpulkan lebih banyak entropi! (Perlu %d byte lagi)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -345,140 +345,140 @@ msgstr ""
"@Perintah:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[file]|buat signature"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[file]|buat signature teks"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "buat detached signature"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "enkripsi data"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "enkripsi hanya dengan symmetric cipher"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "hanya disimpan"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "dekripsi data (default)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "verifikasi signature"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "tampilkan kunci"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "tampilkan kunci dan signature"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "periksa signature kunci"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "tampilkan kunci dan fingerprint"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "tampilkan kunci rahasia"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "buat sepasang kunci baru"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "hapus kunci dari keyring publik"
-#: g10/g10.c:216
+#: g10/g10.c:217
#, fuzzy
msgid "remove key from the secret keyring"
msgstr "hapus kunci dari keyring publik"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "tandai kunci"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "tandai kunci secara lokal"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "tandai atau edit kunci"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "buat sertifikat revokasi"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "ekspor kunci"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "ekspor kunci ke key server"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "impor kunci dari key server"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "impor/gabung kunci"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "tampilkan hanya urutan paket"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "ekspor nilai ownertrust"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "impor nilai ownertrust"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "perbarui database trust"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMA]|periksa database trust"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "perbaiki database trust yang terkorupsi"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "De-Armor file atau stdin"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "En-Armor file atau stdin"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [file]|cetak digest pesan"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -488,154 +488,154 @@ msgstr ""
"Pilihan:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "ciptakan output ascii"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NAMA|enkripsi untuk NAMA"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NAMA|gunakan NAMA sebagai penerima baku"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "gunakan kunci baku sebagai penerima baku"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "gunakan id-user ini untuk menandai/dekripsi"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|set tingkat kompresi N (0 tidak ada)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "gunakan mode teks kanonikal"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "gunakan sebagai file output"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "detil"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "lebih diam"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "jangan menggunakan terminal"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "paksa signature v3"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "selalu gunakan MDC untuk enkripsi"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "jangan buat perubahan"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "mode batch: tanpa tanya"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "asumsikan ya untuk seluruh pertanyaan"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "asumsikan tidak untuk seluruh pertanyaan"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "tambah keyring ini ke daftar keyring"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "tambah keyring rahasia ini ke daftar"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NAMA|gunakan NAMA sebagai kunci rahasia baku"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|gunakan keyserver ini utk lihat kunci"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAMA|set charset terminal ke NAMA"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "baca pilihan dari file"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|tulis info status ke FD ini"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FILE|muat modul ekstensi FILE"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "emulasikan mode seperti dalam RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "set pilihan paket, cipher, digest ke OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|gunakan passphrase mode N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAMA|gunakan algoritma digest NAMA utk passphrase"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAMA|gunakan algoritma cipher NAMA untuk passphrase"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAMA|gunakan algoritma cipher NAMA"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAMA|gunakan algoritma digest pesan NAMA"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|gunakan algoritma kompresi N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "buang field keyid paket terenkripsi"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAMA=NILAI|gunakan notasi data ini"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -655,15 +655,15 @@ msgstr ""
" --list-keys [nama] tampilkan kunci\n"
" --fingerprint [nama] tampilkan fingerprint\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Silakan laporkan kesalahan ke <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Pemakaian: gpg [pilihan] [file] (-h untuk bantuan)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -673,7 +673,7 @@ msgstr ""
"tandai, cek, enkripsi atau dekripsi\n"
"operasi baku tergantung pada data input\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -681,182 +681,182 @@ msgstr ""
"\n"
"Algoritma yang didukung:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "pemakaian: gpg [pilihan] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "perintah saling konflik\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "CATATAN: tidak ada file pilihan baku `%s'\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "file pilihan `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "membaca pilihan dari `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s bukanlah set karakter yang valid\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "CATATAN: %s tidak untuk pemakaian normal!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s tidak dibolehkan dengan %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s tidak masuk akal dengan %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "algoritma cipher yang dipilih tidak valid\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "algoritma digest yang dipilih tidak valid\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "kebijakan URL yang diberikan tidak valid\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "algoritma kompresi harus di antara %d..%d\n"
-#: g10/g10.c:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed harus lebih dari 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed harus lebih dari 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n"
-#: g10/g10.c:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "gagal inisialisasi TrustDB: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [namafile]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [namafile]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [namafile]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [namafile]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [namafile]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [namafile]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [namafile]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key id-user"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key id-user"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id-user [perintah]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key id-user"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key id-user"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "tidak dapat membuka %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [id-user] [keyring]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "gagal dearmoring: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "gagal enarmoring: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritma hash tidak valid `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[namafile]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Teruskan dan ketikkan pesan anda ....\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "tidak dapat membuka `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -864,11 +864,11 @@ msgstr ""
"nama notasi hanya terdiri dari huruf, digit, titik atau garis bawah dan "
"diakhiri dengan sebuah '='\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "nilai notasi tidak boleh menggunakan karakter kendali\n"
diff --git a/po/it.po b/po/it.po
index 9d181df71..e2744f705 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+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"
@@ -17,11 +17,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Attenzione: si sta usando memoria insicura!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "l'operazione non � possibile senza memoria sicura inizializzata\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(potresti avere usato il programma sbagliato per questa funzione)\n"
@@ -339,7 +339,7 @@ msgstr ""
"altra cosa per dare all'OS la possibilit� di raccogliere altra entropia!\n"
"(Servono altri %d byte)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -347,139 +347,139 @@ msgstr ""
"@Comandi:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[file]|fai una firma"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[file]|fai una firma mantenendo il testo in chiaro"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "fai una firma separata"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "cifra dati"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "cifra solo con un cifrario simmetrico"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "immagazzina soltanto"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "decifra dati (predefinito)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "verifica una firma"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "elenca le chiavi"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "elenca le chiavi e le firme"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "controlla le firme delle chiavi"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "elenca le chiavi e le impronte digitali"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "elenca le chiavi segrete"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "genera una nuova coppia di chiavi"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "rimuove una chiave dal portachiavi pubblico"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "rimuove una chiave dal portachiavi privato"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "firma una chiave"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "firma localmente una chiave"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "firma o modifica una chiave"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "genera un certificato di revoca"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "esporta delle chiavi"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "esporta le chiavi a un key server"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importa le chiavi da un key server"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importa/aggiungi delle chiavi"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "elenca solo la sequenza dei pacchetti"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "esporta i valori di fiducia"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importa i valori di fiducia"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "aggiorna il database della fiducia"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMI]|controlla il database della fiducia"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "ripara un database della fiducia rovinato"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "rimuovi l'armatura a un file o a stdin"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "crea l'armatura a un file o a stdin"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [files]|stampa tutti i message digests"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -489,156 +489,156 @@ msgstr ""
"Opzioni:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "crea un output ascii con armatura"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NOME|cifra per NOME"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NOME|usa NOME come destinatario predefinito"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "usa la chiave predefinita come destinatario predefinito"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "usa questo user-id per firmare o decifrare"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|imposta il livello di compressione (0 disab.)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "usa il modo testo canonico"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "usa come file di output"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "prolisso"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "meno prolisso"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "non usa per niente il terminale"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "forza l'uso di firme v3"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "usa sempre un MDC per cifrare"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "non fa cambiamenti"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "modo batch: non fa domande"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "assumi \"s�\" per quasi tutte le domande"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "assumi \"no\" per quasi tutte le domande"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "aggiungi questo portachiavi alla lista"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "aggiungi questo portachiavi segreto alla lista"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NOME|usa NOME come chiave segreta predefinita"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|cerca le chiavi in questo keyserver"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOME|imposta il set di caratteri del terminale NOME"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "leggi le opzioni dal file"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|scrivi le informazioni di stato su questo FD"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FILE|carica il modulo di estensione FILE"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "emula il modo descritto in RFC 1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
"imposta tutte le opzioni di pacchetto,\n"
"cifrario e digest per OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|usa il modo N per la passphrase"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NOME|usa l'algoritmo di message digest NOME per le passphrase"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NOME|usa l'alg. di cifratura NOME per le passphrase"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOME|usa l'algoritmo di cifratura NOME"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOME|usa l'algoritmo di message digest NOME"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|usa l'algoritmo di compressione N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "elimina il campo keyid dei pacchetti cifrati"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOME=VALORE|usa questi dati per una nota"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -658,15 +658,15 @@ msgstr ""
" --list-keys [nomi] mostra le chiavi\n"
" --fingerprint [nomi] mostra le impronte digitali\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Per favore segnala i bug a <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [opzioni] [files] (-h per l'aiuto)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -676,7 +676,7 @@ msgstr ""
"firma, controlla, cifra o decifra\n"
"l'operazione predefinita dipende dai dati di input\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -684,184 +684,184 @@ msgstr ""
"\n"
"Algoritmi gestiti:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "uso: gpg [opzioni] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "comandi in conflitto\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: manca il file `%s' con le opzioni predefinite\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "file con le opzioni `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "lettura delle opzioni da `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s non � un set di caratteri valido\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "NOTA: %s normalmente non deve essere usato!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "Non � permesso usare %s con %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "Non ha senso usare %s con %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "l'algoritmo di cifratura selezionato non � valido\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "l'algoritmo di digest selezionato non � valido\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "L'URL della policy indicato non � valido\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed deve essere maggiore di 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed deve essere maggiore di 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
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:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "inizializzazione del trustdb fallita: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [nomefile]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [nomefile]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [nomefile]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [nomefile]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nomefile]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [nomefile]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [nomefile]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key user-id"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key user-id"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key user-id [comandi]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key user-id"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key user-id"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [user-id] [portachiavi]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "rimozione dell'armatura fallita: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "creazione dell'armatura fallita: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo di hash non valido `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[nomefile]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Vai avanti e scrivi il messaggio...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "impossibile aprire `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -869,11 +869,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:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "il valore di una nota non deve usare caratteri di controllo\n"
diff --git a/po/ja.po b/po/ja.po
index 66af175e9..43ac80422 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+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"
@@ -19,11 +19,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "�ٹ�: �����Ǥʤ����꡼����Ѥ��Ƥ��ޤ�!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "��������줿�����ʥ��꡼��̵�����ˤϼ¹ԤǤ��ޤ���\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(������Ū�ˤ���Ŭ�ڤʥץ��������Ѥ����ΤǤ��礦)\n"
@@ -338,7 +338,7 @@ msgstr ""
"��ʬ��Ĺ��������������ޤ��󡣥���ȥ��ԡ������ä�����褦��\n"
"OS ��������ѹ����Ƥ���������(%d bytes �ʾ�μ�����ɬ�פǤ�)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -346,139 +346,139 @@ msgstr ""
"@���ޥ��:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[file]|��̾�����"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[file]|���ꥢ��̾�����"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "ʬΥ��̾�����"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "�ǡ�����Ź沽"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "�Ź沽�ˤ��оΰŹ�ˡ�Τߤ����"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "��¸�Τ�"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "�ǡ��������� (�ǥե����)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "��̾�򸡾�"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "�����"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "���Ƚ�̾�ΰ���"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "���ν�̾�򸡾�"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "���Ȼ���ΰ���"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "��̩���ΰ���"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "���������ڥ������"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "��������󥰤��鸰����"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "��̩����󥰤��鸰����"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "���˽�̾"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "��������ˤƸ��˽�̾"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "���ؤν�̾�ޤ����Խ�"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "�˴�����������"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "����񤭽Ф�"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "�������Ф˸�����Ͽ"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "�������С����鸰���ɤ߹���"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "�����ɤ߹���/�ޡ���"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "�ѥ��å���Τߤΰ���"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "��ͭ�Ԥ��Ѥ����ͤ�񤭽Ф�"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "��ͭ�Ԥ��Ѥ����ͤ��ɤ߹���"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "���ѥǡ����١����򹹿�"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMES]|���ѥǡ����١���������å�"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "���줿���ѥǡ����١�������"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "�ե�����ޤ���ɸ�����Ϥ����ý���"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "�ե�����ޤ���ɸ�����Ϥ����ò�"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [files]|��������������"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -488,154 +488,154 @@ msgstr ""
"���ץ����:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "���������������������"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NAME|NAME �Ѥ˰Ź沽"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NAME|�ǥե���Ȥμ����ԤȤ��� NAME ���Ѥ���"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "�ǥե���Ȥμ����ԤȤ��ƥǥե���Ȥθ����Ѥ���"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "��̾������� ���� user-id ���Ѥ���"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|���̥�٥�� N �����ꤹ�� (0 ���󰵽�)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "ɸ��ƥ����ȥ⡼�ɤ��Ѥ���"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "���ϥե�����Ȥ����Ѥ���"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "��Ĺ"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "����Ť�"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "ü������Ѥ��ʤ�"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "����Ū�� v3 ��̾����"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "�Ź沽�ˤϾ�� MDC �����"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "���Ƥ��ѹ����Ѥ��ʤ�"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "�Хå��⡼��: �䤤��碌��Ԥ�ʤ�"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "���Ƥμ���� yes �ȸ��ʤ�"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "���Ƥμ���� no �ȸ��ʤ�"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "����󥰤ΰ����� ���θ���ä���"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "������ ������̩����󥰤�ä���"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NAME|�ǥե���Ȥ���̩���Ȥ��� NAME ���Ѥ���"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|���θ����� ���θ������Ф��Ѥ���"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAME|ü����ʸ�������ɤ� NAME �����ꤹ��"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "�ե����뤫�饪�ץ������ɤ߹���"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|���� FD �˾��֤�񤭽Ф�"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FILE|��ĥ�⥸�塼�� FILE ���ɤߤ���"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "RFC1991 �˵��Ҥ��줿�⡼�ɤ��Ѥ���"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "���ƤΥѥ��åȤȰŹ�Ƚ�̾�Υ��ץ����� OpenPGP �ο��������"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|�ѥ��ե졼���⡼�� N ���Ѥ���"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAME|�ѥ��ե졼���˥�å��������󥢥르�ꥺ�� NAME ���Ѥ���"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAME|�ѥ��ե졼���˰Ź楢�르�ꥺ�� NAME ���Ѥ���"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAME|�Ź楢�르�ꥺ�� NAME ���Ѥ���"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAME|��å��������󥢥르�ꥺ�� NAME ���Ѥ���"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|NAME|���̥��르�ꥺ�� NAME ���Ѥ���"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "�Ź�ѥ��åȤθ� ID �ե�����ɤ����Ф���"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAME=VALUE|��������ǡ������Ѥ���"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -655,15 +655,15 @@ msgstr ""
" --list-keys [names] ����ɽ��\n"
" --fingerprint [names] �����ɽ��\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "�Х��򸫤Ĥ����� <[email protected]> �ޤǥ�ݡ��Ȥ����äƲ�������\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "�Ȥ���: gpg [���ץ����] [�ե�����] (�إ�פ� -h)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -673,7 +673,7 @@ msgstr ""
"��̾�����ڡ��Ź沽���ޤ��� ����\n"
"�ǥե���Ȥ�ư������ϥǡ����˰�¸\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -681,182 +681,182 @@ msgstr ""
"\n"
"���ݡ��Ȥ��Ƥ��륢�르�ꥺ��:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "�Ȥ���: gpg [options] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "���ޥ�ɤξ���\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "����: �ǥե���ȥ��ץ����ե����� `%s' ������ޤ���\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "���ץ����ե����� `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "`%s' ���饪�ץ������ɤ߹��ߤޤ�\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s ��������ʸ�������ɤǤϤ���ޤ���\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "����: %s ���̾���Ѥ��ޤ���!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s �� %s �ȶ����Ѥ��뤳�ȤϤǤ��ޤ���!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s �� %s �ȶ����Ѥ��Ƥ��̣������ޤ���!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "���򤵤줿�Ź楢�르�ꥺ���̵���Ǥ�\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "���򤵤줿���󥢥르�ꥺ���̵���Ǥ�\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "Ϳ����줿�ݥꥷ�� URL ��̵���Ǥ�\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "���̥��르�ꥺ��� %d..%d ���ϰϤǤʤ���Фʤ�ޤ���\n"
-#: g10/g10.c:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed �� 0 ����礭���ͤ�ɬ�פǤ�\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed �� 1 ����礭���ͤ�ɬ�פǤ�\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
msgid "max-cert-depth must be in range 1 to 255\n"
msgstr "max-cert-depth �� 1 ���� 255 ���ϰϤǤʤ���Фʤ�ޤ���\n"
-#: g10/g10.c:1003
+#: g10/g10.c:1007
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "����: ñ��� S2K �⡼�� (0) �λ��Ѥˤ϶���ȿ�Ф��ޤ�\n"
-#: g10/g10.c:1007
+#: g10/g10.c:1011
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "̵���� S2K �⡼�ɡ�0, 1 �ޤ��� 3 �Ǥʤ���Фʤ�ޤ���\n"
-#: g10/g10.c:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "���ѥǡ����١����ν�����˼��Ԥ��ޤ���: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [�ե�����̾]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [�ե�����̾]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [�ե�����̾]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [�ե�����̾]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [�ե�����̾]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [�ե�����̾]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [�ե�����̾]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key user-id"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key user-id"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key user-id [���ޥ��]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key user-id"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key user-id"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "%s �������ޤ���: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [user-id] [�����]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "���ý���˼���: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "���ò��˼���: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "�ϥå��奢�르�ꥺ�� `%s' ��̵���Ǥ�\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[�ե�����̾]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "���Ϥ��ޤ�����å������򥿥��פ��Ʋ����� ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "`%s' �������ޤ���\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr "����̾����Ƭ��ʸ�����������������(_)�Ǥʤ���Фʤ�ޤ���\n"
-#: g10/g10.c:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -864,11 +864,11 @@ msgstr ""
"����̾�ˤ�ʸ�����������ɥåȡ��������������(_)�Τߤ��Ѥ���'=' "
"��ȼ��ʤ���Фʤ�ޤ���\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr "����̾�ΥɥåȤ�¾��ʸ���ǰϤޤ�ʤ���Фʤ�ޤ���\n"
-#: g10/g10.c:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "����̾���ͤ�����ʸ�����Ѥ��ƤϤ����ޤ���\n"
diff --git a/po/nl.po b/po/nl.po
index f5a9af93c..4cc9cdb49 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+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"
@@ -17,11 +17,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Let op: er wordt onveilig geheugen gebruikt!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "bewerking is niet mogelijk zonder initialisatie van veilig geheugen\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(misschien heb je hiervoor het verkeerde programma gebruikt)\n"
@@ -337,7 +337,7 @@ msgstr ""
"om het besturingssysteem de kans te geven om meer entropie te\n"
"verzamelen! (Nog %d bytes nodig)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -345,139 +345,139 @@ msgstr ""
"@Opdrachten:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[bestand]|maak een ondertekening"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[bestand]|maak een niet versleutelde ondertekening"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "maak een losstaande ondertekening"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "versleutel gegevens"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "versleutel slechts met een symmetrische versleutelmethode"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "alleen bewaren"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "gegevens decoderen (standaard)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "ondertekening controleren"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "lijst van sleutels genereren"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "sleutels en ondertekeningen opnoemen"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "sleutelverificaties controleren"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "sleutels en vingerafdrukken opnoemen"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "geheime sleutels opnoemen"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "nieuw sleutelpaar genereren"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "sleutel weghalen uit de publieke sleutelbos"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "sleutel weghalen uit de geheime sleutelbos"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "onderteken een sleutel"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "onderteken een sleutel lokaal"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "onderteken of bewerk een sleutel"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "genereer een terugtrekkings-certificaat"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "exporteer sleutels"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "exporteer sleutels naar een sleutelserver"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importeer sleutels van een sleutelserver"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "sleutels importeren/samenvoegen"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "noem alleen de volgorde van pakketten"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "exporteer het vertrouwen in de eigenaars"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importeer het vertrouwen in de eigenaars"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "werk de vertrouwensdatabase bij"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMEN]|controleer de vertrouwensdatabase"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "repareer een beschadigde vertrouwensdatabase"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "Verwijder de beveiliging op bestand of standaard invoer"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "Voeg beveiliging toe aan bestad of standaard invoer"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [bestanden]|geef controlegetal van berichten weer"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -487,155 +487,155 @@ msgstr ""
"Opties:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "genereer beveiliging in ASCII"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NAAM|versleutel voor NAAM"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NAAM|gebruik NAAM als standaard ontvanger"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "gebruik de standaard sleutel als standaard ontvanger"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr ""
"gebruik deze gebruikersidentificatie om te ondertekenen of te decoderen"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|stel compressieniveau in op N (uitzetten met 0)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "gebruik de verkorte tekstmodus"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "gebruik als uitvoerbestand"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "geef meer informatie"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "wees iets stiller"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "gebruik de terminal helemaal niet"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "forcees v3 ondertekening"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "gebruik altijd een MDC voor versleuteling"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "maak geen enkele verandering"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "doorlopende modus: vraag nooit"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "veronderstel ja als antwoord op de meeste vragen"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "veronderstel nee als antwoord op de meeste vragen"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "voeg deze sleutelbos toe aan de lijst van sleutelbossen"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "voeg deze geheime sleutelbos toe aan de lijst"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NAAM|gebruik NAAM als standaard geheime sleutel"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|SERVER|gebruik deze sleutelserver om sleutels op te zoeken"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAAM|zet tekenverzameling van terminal op NAAM"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "lees opties uit bestand"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|BB|schrijf status naar deze bestandsbeschrijver"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|BESTAND|laad extensiemodule BESTAND"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "doe als RFC1991 voorschrijft"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "zet alle pakket-, versleutel- en controle-opties naar OpenPGP gedrag"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|gebruik sleuteltekst modus N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAAM|gebruik berichtsamenvattingsalgoritme NAAM voor sleutelteksten"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAAM|gebruik versleutelalgoritme NAAM voor sleutelteksten"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAAM|gebruik versleutelalgoritme NAAM"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAAM|gebruik berichtsamenvattingsalgoritme NAAM"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|gebruik compressiealgoritme N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "plaats geen sleutelidentificatieveld in versleutelde pakketten"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAAM=WAARDE|gebruik deze notitiegegevens"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -655,17 +655,17 @@ msgstr ""
" --list-keys [namen] toon sleutels\n"
" --fingerprints [namen] toon vingerafdrukken\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"Meld fouten in het programma a.u.b. aan <[email protected]>;\n"
"fouten in de vertaling aan <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Gebruik: gpg [opties] [bestanden] (-h voor hulp)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -675,7 +675,7 @@ msgstr ""
"onderteken, controleer, versleutel of decodeer de ingevoerde gegevens\n"
"standaardactie hangt af van de gegevens\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -683,184 +683,184 @@ msgstr ""
"\n"
"Ondersteunde algoritmes:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "gebruik: gpg [opties] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "tegenstrijdige commando's\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "LET OP: geen bestand `%s' met standaardopties\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "optiebestand `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "opties inlezen van `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s is een onbekende tekenverzameling\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "LET OP: %s is niet voor gewoon gebruik!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s is niet toegestaan met deze %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s heeft geen betekenis met %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "geselecteerd versleutelalgoritme is ongeldig\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "geselecteerd controle-algoritme is ongeldig\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "de gegeven beleids-URL is ongeldig\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed(?) moet groter zijn dan 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed(?) moet groter zijn dan 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
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:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "fout bij het initialiseren van de vertrouwensdatabase: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [bestandsnaam]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [bestandsnaam]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [bestandsnaam]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [bestandsnaam]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [bestandsnaam]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [bestandsnaam]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [bestandsnaam]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key gebruikersidentificatie"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key gebruikers-identificatie"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key gebruikersidentificatie [opdrachten]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key gebruikersidentificatie"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key gebruikersidentificatie"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "kan %s niet openen: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [gebruikersidentificatie] [sleutelbos]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "opheffen van beveiliging mislukt: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "beveiligen mislukt: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "ongeldig frommelalgoritme `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[bestandsnaam]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Gaat uw gang, type het bericht ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "kan `%s' niet openen\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -868,11 +868,11 @@ msgstr ""
"een notitienaam mag alleen letters, cijfers, punten of underscores bevatten "
"en eindig met een =\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "een notitienaam mag geen controletekens bevatten\n"
diff --git a/po/pl.po b/po/pl.po
index d4d5d865d..e24e69e66 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.0.0\n"
-"POT-Creation-Date: 2000-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"PO-Revision-Date: 1999-10-02 21:35+02:00\n"
"Last-Translator: Janusz A. Urbanowicz <[email protected]>\n"
"Language-Team: Polish <[email protected]>\n"
@@ -27,11 +27,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Ostrze�enie: u�ywana pami�� nie jest pami�ci� bezpieczn�!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "operacja niemo�liwa do wykonania bez dost�pnej pami�ci bezpiecznej\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(prawdopodobnie u�ywany program jest niew�a�ciwy dlatego zadania)\n"
@@ -350,7 +350,7 @@ msgstr ""
"Prosz� kontynuowa� inne dzia�ania aby system m�g� zebra� odpowiedni�\n"
"ilo�� entropii do ich wygenerowania (brakuje %d bajt�w).\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -358,140 +358,140 @@ msgstr ""
"@Polecenia:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[plik]|z�o�enie podpisu"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[plik]|z�o�enie podpisu na czytelnym dokumencie"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "sporz�dzenie podpisu oddzielonego od dokumentu"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "szyfrowanie danych"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "szyfrowanie tylko szyfrem symetrycznym"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "tylko zapis do pliku"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "odszyfrowywanie danych (domy�lnie)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "sprawdzenie podpisu"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "lista kluczy"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "lista kluczy i podpis�w"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "sprawdzenie podpis�w kluczy"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "lista kluczy i ich odcisk�w"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "lista kluczy tajnych"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "generacja nowej pary klucza"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "usuni�cie klucza ze zbioru kluczy publicznych"
-#: g10/g10.c:216
+#: g10/g10.c:217
#, fuzzy
msgid "remove key from the secret keyring"
msgstr "usuni�cie klucza ze zbioru kluczy publicznych"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "z�o�enie podpisu na kluczu"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "z�o�enie lokalnego podpisu na kluczu"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "podpisanie lub modyfikacja klucza"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "tworzenie certyfikatu uniewa�nienia klucza"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "eksport kluczy do pliku"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "eksport kluczy do serwera kluczy"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "import kluczy z serwera kluczy"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "import/do��czanie kluczy"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "wypisane sekwencji pakiet�w"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "eksport warto�ci zaufania"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "wczytanie warto��i zaufania"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "uaktualnienie bazy zaufania"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NAZWY]|sprawdzenie bazy zaufania"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "naprawa uszkodzonej bazy zaufania"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "zdj�cie opakowania ASCII pliku lub potoku"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "opakowanie ASCII pliku lub potoku"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [pliki]|skr�ty wiadomo�ci"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -501,154 +501,154 @@ msgstr ""
"Opcje:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "plik wynikowy b�dzie w opakowaniu ASCII"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NAZWA|szyfrowanie dla adresata NAZWA"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NAZWA|u�ycie NAZWA jako domy�lnego adresata"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "domy�lny klucz jest domy�lnym adresatem"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "identyfikator do podpisania lub odszyfrowania"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|poziom kompresji N (0 - brak)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "kanoniczny format tekstowy"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "plik wyj�ciowy"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "z informacjami dodatkowymi"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "mniej komunikat�ww"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "bez odwo�a� do terminala"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "wymuszenie trzeciej wersji formatu podpis�w"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "do szyfrowania b�dzie u�ywany MDC"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "pozostawienie bez zmian"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "tryb wsadowy: �adnych pyta�"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "automatyczna odpowied� tak na wi�kszo�� pyta�"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "automatyczna odpowied� nie na wi�kszo�� pyta�"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "doda� zbi�r kluczy do listy u�ywanych"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "doda� zbi�r kluczy tajnych do listy"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NAZWA|u�ycie NAZWA jako domy�lnego klucza tajnego"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|serwer kluczy w kt�rym b�d� poszukiwane"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAZWA|zestaw znak�w terminala NAZWA"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "wczytanie opcji z pliku"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|zapisa� opis stanu do FD"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|PLIK|�adowanie modu�u rozszerzenia z PLIK"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "emulacja trybu opisanego w RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "zgodno�� ustawie� pakiet�w, szyfr�w i skr�t�w z OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|N-ty tryb wprowadzania wyra�enia przej�ciowego"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|ALG|algorytm obliczania skr�t�w wiadomo�ci ALG"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|ALG|algorytmu szyfruj�cy ALG dla has�a"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAZWA|algorytm szyfruj�cy NAZWA"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAZWA|algorytm obliczania skr�t�w wiadomo�ci NAZWA"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|algorytm kompresji N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "usuni�cie identyfikator�w kluczy z pakiet�w"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAZWA=TRE��|adnotacje"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -669,15 +669,15 @@ msgstr ""
" --list-keys [nazwy] pokazuje klucze\n"
" --fingerprint [nazwy] pokazuje odciski kluczy\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "B��dy prosimy zg�asza� na adres <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Wywo�anie: gpg [opcje] [pliki] (-h podaje pomoc)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -687,7 +687,7 @@ msgstr ""
"podpisywanie, sprawdzanie podpis�w, szyfrowanie, deszyfrowanie\n"
"domy�lnie wykonywana operacja zale�y od danych wej�ciowych\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -695,182 +695,182 @@ msgstr ""
"\n"
"Obs�ugiwane algorytmy:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "wywo�anie: gpg [opcje]"
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "sprzeczne polecenia\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "UWAGA: brak domy�lnego pliku opcji '%s'\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "plik opcji '%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "odczyt opcji z '%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s nie jest poprawn� nazw� zestawu znak�w\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "UWAGA: %s nie jest do normalnego u�ytku!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s jest niedozwolony z %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s nie ma sensu z %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "wybrany algorytm szyfruj�cy jest niepoprawny\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "wybrany algorytm geenracji skr�t�w wiadomo�ci jest niepoprawny\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "podany URL regulaminu jest niepoprawny\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "warto�� completes-needed musi by� wi�ksza od 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "warto�� marginals-needed musi by� wi�ksza od 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "UWAGA: prosty tryb S2K (0) jest stanowczo odradzany\n"
-#: g10/g10.c:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "inicjowanie Bazy Zaufania nie powiod�o si�: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [plik]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [plik]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [plik]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [plik]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [plik]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [plik]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [plik]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key nazwa u�ytkownika"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key nazwa u�ytkownika"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key nazwa u�ytkownika [polecenia]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key nazwa u�ytkownika"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key nazwa u�ytkownika"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "nie mo�na otworzy� %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [identyfikator] [zbi�r kluczy]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "usuni�cie opakowania ASCII nie powiod�o si�: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "opakowywanie ASCII nie powiod�o si�: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "niew�a�ciwy algorytm skr�tu '%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[nazwa pliku]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Wpisz tutaj swoj� wiadomo�� ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "nie mo�na otworzy� '%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -878,11 +878,11 @@ msgstr ""
"nazwa adnotacji mo�e zawiera� tylko litery, cyfry, kropki,\n"
"podkre�lenia, i musi ko�czy� si� '='\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "warto�� adnotacji nie mo�e zawiera� znak�w steruj�cych\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 80345cca7..0d79ab9fc 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+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"
@@ -21,11 +21,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Aviso: usando mem�ria insegura!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "a opera��o n�o � poss�vel sem mem�ria segura inicializada\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(voc� pode ter usado o programa errado para esta tarefa)\n"
@@ -343,7 +343,7 @@ msgstr ""
"para que o sistema possa coletar mais entropia!\n"
"(S�o necess�rios mais %d bytes)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -351,144 +351,144 @@ msgstr ""
"@Comandos:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[arquivo]|fazer uma assinatura"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[arquivo]|fazer uma assinatura em texto puro"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "fazer uma assinatura separada"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "criptografar dados"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr ""
"criptografar apenas com criptografia\n"
"sim�trica"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "apenas armazenar"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "descriptografar dados (padr�o)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "verificar uma assinatura"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "listar as chaves"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "listar as chaves e as assinaturas"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "verificar as assinaturas das chaves"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "listar as chaves e as impress�es digitais"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "listar as chaves secretas"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "gerar um novo par de chaves"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "remover a chave do chaveiro p�blico"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "remover a chave do chaveiro secreto"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "assinar uma chave"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "assinar uma chave localmente"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "assinar ou editar uma chave"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "gerar um certificado de revoga��o"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "exportar chaves"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "exportar chaves para um servidor"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importar chaves de um servidor"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importar/fundir chaves"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "listar apenas as seq��ncias de pacotes"
# ownertrust ???
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "exportar os valores de confian�a"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importar os valores de confian�a"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "atualizar o banco de dados de confiabilidade"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMES]|verificar o banco de dados de confiabilidade"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr ""
"consertar um banco de dados de confiabilidade\n"
"danificado"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "retirar a armadura de um arquivo ou de \"stdin\""
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "criar armadura para um arquivo ou \"stdin\""
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [arquivos]|imprimir \"digests\" de mensagens"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -498,171 +498,171 @@ msgstr ""
"Op��es:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "criar sa�da com armadura ascii"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NOME|criptografar para NOME"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NOME|usar NOME como destinat�rio padr�o"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "usar a chave padr�o como destinat�rio padr�o"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr ""
"usar este identificador de usu�rio para\n"
"assinar ou descriptografar"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr ""
"|N|estabelecer n�vel de compress�o N\n"
"(0 desabilita)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "usar modo de texto can�nico"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "usar como arquivo de sa�da"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "detalhado"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "ser mais silencioso"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "nunca usar o terminal"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "for�ar assinaturas v3"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "sempre usar um MDC para criptografar"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "n�o fazer altera��es"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "modo n�o-interativo: nunca perguntar"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "assumir sim para a maioria das perguntas"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "assumir n�o para a maioria das perguntas"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "adicionar este chaveiro � lista de chaveiros"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "adicionar este chaveiro secreto � lista"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NOME|usar NOME como chave secreta padr�o"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|ENDERE�O|usar este servidor para buscar chaves"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr ""
"|NOME|definir mapa de caracteres do terminal como\n"
"NOME"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "ler op��es do arquivo"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr ""
"|DA|escrever informa��es de estado para o\n"
"descritor de arquivo DA"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|ARQUIVO|carregar m�dulo de extens�o ARQUIVO"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "emular o modo descrito no RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
"configurar todas as op��es de pacote,\n"
"criptografia e \"digest\" para comportamento\n"
"OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|usar frase secreta modo N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr ""
"|NOME|usar algoritmo de \"digest\" de mensagens NOME\n"
"para frases secretas"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr ""
"|NOME|usar algoritmo de criptografia NOME para\n"
"frases secretas"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOME|usar algoritmo de criptografia NOME"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOME|usar algoritmo de \"digest\" de mensagens NOME"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|usar algoritmo de compress�o N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr ""
"eliminar o campo keyid dos pacotes\n"
"criptografados"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOME=VALOR|usar estes dados de nota��o"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -682,15 +682,15 @@ msgstr ""
" --list-keys [nomes] mostrar chaves\n"
" --fingerprint [nomes] mostrar impress�es digitais\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Por favor comunique bugs para <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [op��es] [arquivos] (-h para ajuda)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -700,7 +700,7 @@ msgstr ""
"assina, verifica, criptografa ou descriptografa\n"
"a opera��o padr�o depende dos dados de entrada\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -708,185 +708,185 @@ msgstr ""
"\n"
"Algoritmos suportados:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "uso: gpg [op��es] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "comandos conflitantes\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: arquivo de op��es padr�o `%s' inexistente\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "arquivo de op��es `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "lendo op��es de `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, 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:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "NOTA: %s n�o � para uso normal!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s n�o � permitido com %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s n�o faz sentido com %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "o algoritmo de criptografia selecionado n�o � v�lido\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "o algoritmo de \"digest\" selecionado n�o � v�lido\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "a URL de pol�tica dada � inv�lida\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed deve ser maior que 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed deve ser maior que 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
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:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, 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:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [nome_do_arquivo]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [nome_do_arquivo]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [nome_do_arquivo]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [nome_do_arquivo]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nome_do_arquivo]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [nome_do_arquivo]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [nome_do_arquivo]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key id-usu�rio"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key id-usu�rio"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id-usu�rio [comandos]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key id-usu�rio"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key id-usu�rio"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "imposs�vel abrir %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [id-usu�rio] [chaveiro]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "retirada de armadura falhou: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, 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:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de hash inv�lido `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[nome_do_arquivo]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "V� em frente e digite sua mensagem ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "imposs�vel abrir `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -894,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:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
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"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 7d68b7f96..3224ed713 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"PO-Revision-Date: 1999-09-09 20:28+0000\n"
"Last-Translator: Pedro Morais <[email protected]>\n"
"Language-Team: pt\n"
@@ -19,11 +19,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Aviso: a utilizar mem�ria insegura!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "a opera��o n�o � poss�vel sem mem�ria segura inicializada\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(voc� pode ter usado o programa errado para esta tarefa)\n"
@@ -339,7 +339,7 @@ msgstr ""
"N�o h� bytes aleat�rios suficientes. Por favor, fa�a outro trabalho para\n"
"que o sistema possa recolher mais entropia! (S�o necess�rios mais %d bytes)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -347,140 +347,140 @@ msgstr ""
"@Comandos:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[ficheiro]|fazer uma assinatura"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[ficheiro]|fazer uma assinatura em texto puro"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "fazer uma assinatura separada"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "encriptar dados"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "encriptar apenas com cifra sim�trica"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "apenas armazenar"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "desencriptar dados (ac��o por omiss�o)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "verificar uma assinatura"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "listar as chaves"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "listar as chaves e as assinaturas"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "verificar as assinaturas das chaves"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "listar as chaves e as impress�es digitais"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "listar as chaves secretas"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "gerar um novo par de chaves"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "remover a chave do porta-chaves p�blico"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "remover a chave do porta-chaves secreto"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "assinar uma chave"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "assinar uma chave localmente"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "assinar ou editar uma chave"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "gerar um certificado de revoga��o"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "exportar chaves"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "exportar chaves para um servidor"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importar chaves de um servidor"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importar/fundir chaves"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "listar apenas as sequ�ncias de pacotes"
# ownertrust ???
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "exportar os valores de confian�a"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importar os valores de confian�a"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "actualizar a base de dados de confian�a"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMES]|verificar a base de dados de confian�a"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "consertar uma base de dados de confian�a"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "retirar armadura de um ficheiro ou do \"stdin\""
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "criar armadura para um ficheiro ou \"stdin\""
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [ficheiros]|imprimir \"digests\" de mensagens"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -490,171 +490,171 @@ msgstr ""
"Op��es:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "criar sa�da com armadura ascii"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NOME|encriptar para NOME"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NOME|usar NOME como destinat�rio padr�o"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "usar a chave padr�o como destinat�rio padr�o"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr ""
"usar este identificador de utilizador para\n"
"assinar ou desencriptar"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr ""
"|N|estabelecer n�vel de compress�o N\n"
"(0 desactiva)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "usar modo de texto can�nico"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "usar como ficheiro de sa�da"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "detalhado"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "ser mais silencioso"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "nunca usar o terminal"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "for�ar assinaturas v3"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "sempre usar um MDC para encriptar"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "n�o fazer altera��es"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "modo n�o-interactivo: nunca perguntar"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "assumir sim para a maioria das perguntas"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "assumir n�o para a maioria das perguntas"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr ""
"adicionar este porta-chaves\n"
"� lista de porta-chaves"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "adicionar este porta-chaves secreto � lista"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NOME|usar NOME como chave secreta por omiss�o"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|ENDERE�O|usar este servidor para buscar chaves"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr ""
"|NOME|definir mapa de caracteres do terminal como\n"
"NOME"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "ler op��es do ficheiro"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr ""
"|DF|escrever informa��es de estado para o\n"
"descritor de ficheiro DF"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FICHEIRO|carregar m�dulo de extens�o FICHEIRO"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "emular o modo descrito no RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
"configurar todas as op��es de pacote,\n"
"criptografia e \"digest\" para comportamento\n"
"OpenPGP"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|usar mode de frase secreta N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr ""
"|NOME|usar algoritmo de \"digest\" de mensagens NOME\n"
"para frases secretas"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr ""
"|NOME|usar algoritmo de criptografia NOME para\n"
"frases secretas"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOME|usar algoritmo de criptografia NOME"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOME|usar algoritmo de \"digest\" de mensagens NOME"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|usar algoritmo de compress�o N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "eliminar campo keyid dos pacotes encriptados"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOME=VALOR|usar estes dados de nota��o"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -674,15 +674,15 @@ msgstr ""
" --list-keys [nomes] mostrar chaves\n"
" --fingerprint [nomes] mostrar impress�es digitais\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Por favor comunique bugs para <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [op��es] [ficheiros] (-h para ajuda)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -692,7 +692,7 @@ msgstr ""
"assina, verifica, encripta ou desencripta\n"
"a opera��o por omiss�o depende dos dados de entrada\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -700,185 +700,185 @@ msgstr ""
"\n"
"Algoritmos suportados:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "uso: gpg [op��es] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "comandos em conflito\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, 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:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "ficheiro de op��es `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "a ler op��es de `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, 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:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "NOTA: %s n�o � para uso normal!\n"
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s n�o � permitido com %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s n�o faz sentido com %s!\n"
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "o algoritmo de cifragem selecionado n�o � v�lido\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "o algoritmo de \"digest\" selecionado n�o � v�lido\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "a URL de pol�tica dada � inv�lida\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, 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:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed deve ser maior que 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed deve ser maior que 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
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:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, 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:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [nome_do_ficheiro]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [nome_do_ficheiro]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [nome_do_ficheiro]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [nome_do_ficheiro]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nome_do_ficheiro]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [nome_do_ficheiro]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [nome_do_ficheiro]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key id-utilizador"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key id-utilizador"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id-utilizador [comandos]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key id-utilizador"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
msgid "--delete-key user-id"
msgstr "--delete-key id-utilizador"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "imposs�vel abrir %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [id-utilizador] [porta-chaves]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "retirada de armadura falhou: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, 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:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de hash inv�lido `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[nome_do_ficheiro]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr "Digite a sua mensagem ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "imposs�vel abrir `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -886,12 +886,12 @@ msgstr ""
"um nome de nota��o deve ter apenas letras, d�gitos, pontos ou sublinhados e "
"terminar com '='\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
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"
diff --git a/po/ru.po b/po/ru.po
index 9767032d9..cbb926496 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-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-01-26 22:08:36+0100\n"
"From: Gregory Steuck <[email protected]>\n"
@@ -28,11 +28,11 @@ msgstr ""
"��� �������� ����� ������, ��������� ��������� suid(root).\n"
"���������� ��� ����� � �������������� ����� �������.\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr ""
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr ""
@@ -395,7 +395,7 @@ msgstr ""
"������������ ��������� ������. ����������, ��������� ���-������, �����\n"
"�� ����� ������� �������������� ��������� �����! (����� ��� %d ����)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -403,147 +403,147 @@ msgstr ""
"@�������:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
#, fuzzy
msgid "|[file]|make a signature"
msgstr "|[����]|������� �������"
-#: g10/g10.c:199
+#: g10/g10.c:200
#, fuzzy
msgid "|[file]|make a clear text signature"
msgstr "|[����]|������� ��������� �������"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "������� ��������� �������"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "����������� ������"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "����������� ������������ ����������"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "������ ���������"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "������������ ������ (�� ���������)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "��������� �������"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "������ ������"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "������ ������ � ��������"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "��������� ������� �� �����"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "������ ������ � �� \"����������� �������\""
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "������ ��������� ������"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "������������� ����� ���� ������ (�������� � ���������)"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "������� ���� �� ������"
-#: g10/g10.c:216
+#: g10/g10.c:217
#, fuzzy
msgid "remove key from the secret keyring"
msgstr "������� ���� �� ������"
-#: g10/g10.c:217
+#: g10/g10.c:218
#, fuzzy
msgid "sign a key"
msgstr "��������� ����"
-#: g10/g10.c:218
+#: g10/g10.c:219
#, fuzzy
msgid "sign a key locally"
msgstr "��������� ����"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "��������� ��� ������������� ����"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "������������� ���������� ����������"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "�������������� �����"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr ""
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr ""
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "�������������/�������� �����"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "���������� ������ ������������������ �������"
-#: g10/g10.c:231
+#: g10/g10.c:232
#, fuzzy
msgid "export the ownertrust values"
msgstr "�������������� ��������� �������\n"
-#: g10/g10.c:233
+#: g10/g10.c:234
#, fuzzy
msgid "import ownertrust values"
msgstr "������������� ��������� �������\n"
-#: g10/g10.c:235
+#: g10/g10.c:236
#, fuzzy
msgid "update the trust database"
msgstr "|[�����]|��������� ���� ������ �������"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[�����]|��������� ���� ������ �������"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "��������� ����������� ���� ������ �������"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "������������ stdin ��� ���� �� ASCII-�������������"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "������������ stdin ��� ���� � ASCII-�������������"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [files]|���������� �������� ���������"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -553,164 +553,164 @@ msgstr ""
"���������:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "����� � ASCII-�������������"
-#: g10/g10.c:251
+#: g10/g10.c:252
#, fuzzy
msgid "|NAME|encrypt for NAME"
msgstr "|���|������������ ������������ ���������� ���"
-#: g10/g10.c:254
+#: g10/g10.c:255
#, fuzzy
msgid "|NAME|use NAME as default recipient"
msgstr "|���|������������ ��� � �������� ���������� ����� �� ���������"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr ""
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr ""
"������������ ��������� ������������� ������������ ��� ������� ��� �����������"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|���������� ������� ������ (0 - �� �������)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "������������ ������������ ��������� �����"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "������������ � �������� ��������� �����"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "������������"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr ""
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr ""
-#: g10/g10.c:268
+#: g10/g10.c:269
#, fuzzy
msgid "force v3 signatures"
msgstr "��������� ������� �� �����"
-#: g10/g10.c:269
+#: g10/g10.c:270
#, fuzzy
msgid "always use a MDC for encryption"
msgstr "������������ ��������� ������������� ������������ ��� ����������"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "Keine wirklichen �nderungen durchf�hren"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "�������� �����: ������ �� ����������"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "�������� \"��\" �� ����������� ��������"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "�������� \"���\" �� ����������� ��������"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "�������� ��� ������ � ������ ������ ������"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "�������� ��� ��������� ������ � ������ ������ ������"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|���|������������ ��� � �������� ���������� ����� �� ���������"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr ""
-#: g10/g10.c:279
+#: g10/g10.c:280
#, fuzzy
msgid "|NAME|set terminal charset to NAME"
msgstr "|���|������������ ������������ ���������� ���"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "������ ��������� �� �����"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD| ���������� ���������� � ��������� � ���������� (FD)"
-#: g10/g10.c:289
+#: g10/g10.c:290
#, fuzzy
msgid "|FILE|load extension module FILE"
msgstr "|����|��������� ���� � ������������ ��������"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "����������� ����� ��������� � RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
-#: g10/g10.c:292
+#: g10/g10.c:293
#, fuzzy
msgid "|N|use passphrase mode N"
msgstr "|N|������������ �������� ����� ������ N\n"
-#: g10/g10.c:294
+#: g10/g10.c:295
#, fuzzy
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|���|������������ ���-�������� ��� ��� �������� ����"
-#: g10/g10.c:296
+#: g10/g10.c:297
#, fuzzy
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|���|������������ ������������ ���������� ��� ��� �������� ����"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|���|������������ ������������ ���������� ���"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|���|������������ ���-�������� ���"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|������������ �������� ������ N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "����������� ���� keyid � ������������� �������"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr ""
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
#, fuzzy
msgid ""
"@\n"
@@ -731,17 +731,17 @@ msgstr ""
" --list-keys [names] �������� ������ ������\n"
" --fingerprint [names] �������� \"��������� �������\" ������\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"����������, ����������� ��������� �� ������� �� ������ "
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "�������������: gpg [���������] [�����] (-h ��� ������)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -751,7 +751,7 @@ msgstr ""
"�����������, ��������� �������, ������� ��� ��������������\n"
"����� ������ ������� �� ������� ������\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -759,198 +759,198 @@ msgstr ""
"\n"
"�������������� ���������:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "�������������: gpg [���������] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "Widerspr�chliche Kommandos\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, fuzzy, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "���������: ���� ���������� �� ��������� `%s' �����������\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "���� ���������� `%s': %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "�������� ��������� �� `%s'\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, fuzzy, c-format
msgid "%s is not a valid character set\n"
msgstr "������������ ������ � �����������.\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr ""
-#: g10/g10.c:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr ""
-#: g10/g10.c:950
+#: g10/g10.c:954
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr ""
-#: g10/g10.c:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "������ ������������ �������� ����������\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "������ ������������ ��������-��������\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr ""
-#: g10/g10.c:994
+#: g10/g10.c:998
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "�������� �������� ����� ����� �������� �� %d �� %d\n"
-#: g10/g10.c:996
+#: g10/g10.c:1000
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed ������ ���� ������ 0\n"
-#: g10/g10.c:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed ������ ���� ������ 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
msgid "max-cert-depth must be in range 1 to 255\n"
msgstr ""
-#: g10/g10.c:1003
+#: g10/g10.c:1007
#, fuzzy
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "���������: ������� S2K ����� (0) ����� �� �������������\n"
-#: g10/g10.c:1007
+#: g10/g10.c:1011
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "������������ ����� S2K: ������ ���� 0, 1 ��� 3\n"
-#: g10/g10.c:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "������ ������������� ���� ������ �������: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [��� �����]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [��� �����]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [��� �����]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [��� �����]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [��� �����]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [��� �����]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [��� �����]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr ""
-#: g10/g10.c:1186
+#: g10/g10.c:1190
#, fuzzy
msgid "--lsign-key user-id"
msgstr "--delete-key ���-������������"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
#, fuzzy
msgid "--edit-key user-id [commands]"
msgstr "--edit-key ���-������������"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
#, fuzzy
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key ���-������������"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
#, fuzzy
msgid "--delete-key user-id"
msgstr "--delete-key ���-������������"
-#: g10/encode.c:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
#, fuzzy
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [������������� ������������] [������ ������]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "������ �������������: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "������ �����������: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "������������ ���-�������� `%s'\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[��� �����]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
msgid "Go ahead and type your message ...\n"
msgstr ""
-#: g10/decrypt.c:59 g10/g10.c:1495 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 "���������� ������� ���� `%s'\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
-#: g10/g10.c:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
-#: g10/g10.c:1677
+#: g10/g10.c:1681
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
-#: g10/g10.c:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 00d925f87..3a59fefc9 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.0h\n"
-"POT-Creation-Date: 2000-06-07 13:04+0200\n"
+"POT-Creation-Date: 2000-06-08 23:11+0200\n"
"PO-Revision-Date: 2000-02-16 08:19+01:00\n"
"Last-Translator: Daniel Resare <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
@@ -25,11 +25,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Varning: anv�nder os�kert minne!\n"
-#: util/secmem.c:287
+#: util/secmem.c:289
msgid "operation is not possible without initialized secure memory\n"
msgstr "operationen �r ej m�jlig utan tillg�ng till s�kert minne\n"
-#: util/secmem.c:288
+#: util/secmem.c:290
msgid "(you may have used the wrong program for this task)\n"
msgstr "(du kan ha anv�nt fel program f�r denna uppgift)\n"
@@ -351,7 +351,7 @@ msgstr ""
"en stund f�r att ge operativsystemet en chans att samla mer entropi!\n"
"(Beh�ver %d fler byte)\n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid ""
"@Commands:\n"
" "
@@ -359,139 +359,139 @@ msgstr ""
"@Kommandon:\n"
" "
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "|[file]|make a signature"
msgstr "|[fil]|skapa en signatur"
-#: g10/g10.c:199
+#: g10/g10.c:200
msgid "|[file]|make a clear text signature"
msgstr "|[fil]|skapa en klartext-signatur"
-#: g10/g10.c:200
+#: g10/g10.c:201
msgid "make a detached signature"
msgstr "skapa en signatur i en separat fil"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "encrypt data"
msgstr "kryptera data"
-#: g10/g10.c:202
+#: g10/g10.c:203
msgid "encryption only with symmetric cipher"
msgstr "endast kryptering med symmetriskt chiffer"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "store only"
msgstr "endast lagring"
-#: g10/g10.c:204
+#: g10/g10.c:205
msgid "decrypt data (default)"
msgstr "dekryptera data (normall�ge)"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "verify a signature"
msgstr "verifiera en signatur"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "list keys"
msgstr "r�kna upp nycklar"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "list keys and signatures"
msgstr "r�kna upp nycklar och signaturer"
-#: g10/g10.c:210
+#: g10/g10.c:211
msgid "check key signatures"
msgstr "verifiera nyckelsignaturer"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "list keys and fingerprints"
msgstr "r�kna upp nycklar och fingeravtryck"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "list secret keys"
msgstr "r�kna upp hemliga nycklar"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "generate a new key pair"
msgstr "generera ett nytt nyckelpar"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "remove key from the public keyring"
msgstr "ta bort en nyckel fr�n den publika nyckelringen"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "remove key from the secret keyring"
msgstr "ta bort en nyckel fr�n den hemliga nyckelringen"
-#: g10/g10.c:217
+#: g10/g10.c:218
msgid "sign a key"
msgstr "signera en nyckel"
-#: g10/g10.c:218
+#: g10/g10.c:219
msgid "sign a key locally"
msgstr "signera en nyckel lokalt"
-#: g10/g10.c:219
+#: g10/g10.c:220
msgid "sign or edit a key"
msgstr "signera eller redigera en nyckel"
-#: g10/g10.c:220
+#: g10/g10.c:221
msgid "generate a revocation certificate"
msgstr "generera ett �terkallelesecertifikat"
-#: g10/g10.c:221
+#: g10/g10.c:222
msgid "export keys"
msgstr "exportera nycklar"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid "export keys to a key server"
msgstr "exportera nycklar till en nyckelserver"
-#: g10/g10.c:223
+#: g10/g10.c:224
msgid "import keys from a key server"
msgstr "importera nycklar fr�n en nyckelserver"
-#: g10/g10.c:227
+#: g10/g10.c:228
msgid "import/merge keys"
msgstr "importera/sl� ihop nycklar"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "list only the sequence of packets"
msgstr "skriv endast ut paketsekvensen"
-#: g10/g10.c:231
+#: g10/g10.c:232
msgid "export the ownertrust values"
msgstr "exportera de v�rden som representerar �gartillit"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "import ownertrust values"
msgstr "importera v�rden som representerar �gartillit"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "update the trust database"
msgstr "uppdatera tillitsdatabasen"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMN]|kontrollera tillitsdatabasen"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "fix a corrupted trust database"
msgstr "reparera en korrupt tillitsdatabas"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "De-Armor a file or stdin"
msgstr "Skala av en fil eller standard in"
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "En-Armor a file or stdin"
msgstr "Skapa ett skal f�r en fil eller standard in"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "|algo [files]|print message digests"
msgstr "|algo [filer]|skriv ut kontrollsummor"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid ""
"@\n"
"Options:\n"
@@ -501,154 +501,154 @@ msgstr ""
"Flaggor:\n"
" "
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "create ascii armored output"
msgstr "skapa utdata med ett ascii-skal"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "|NAME|encrypt for NAME"
msgstr "|NAMN|kryptera f�r NAMN"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "|NAME|use NAME as default recipient"
msgstr "|NAMN|anv�nd NAMN som standardv�rdet f�r mottagare"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "use the default key as default recipient"
msgstr "anv�nd standardnyckeln som standardmottagare"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "use this user-id to sign or decrypt"
msgstr "anv�nd denna anv�ndaridentitet f�r att signera eller dekryptera"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|set compress level N (0 disables)"
msgstr "|N|s�tt kompressionsniv�n till N (0 f�r att sl� av kompression)"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "use canonical text mode"
msgstr "anv�nd \"ursprunglig text\"-l�get"
-#: g10/g10.c:264
+#: g10/g10.c:265
msgid "use as output file"
msgstr "anv�nd som fil f�r utdata"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "verbose"
msgstr "utf�rlig"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "be somewhat more quiet"
msgstr "var n�got tystare"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "don't use the terminal at all"
msgstr "anv�nd inte terminalen alls"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "force v3 signatures"
msgstr "anv�nd v3-signaturer"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "always use a MDC for encryption"
msgstr "anv�nd alltid en MDC f�r kryptering"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "do not make any changes"
msgstr "g�r inga �ndringar"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid "batch mode: never ask"
msgstr "batch-l�ge: fr�ga aldrig"
-#: g10/g10.c:273
+#: g10/g10.c:274
msgid "assume yes on most questions"
msgstr "anta att svaret �r ja p� de flesta fr�gor"
-#: g10/g10.c:274
+#: g10/g10.c:275
msgid "assume no on most questions"
msgstr "anta att svaret �r nej p� de flesta fr�gor"
-#: g10/g10.c:275
+#: g10/g10.c:276
msgid "add this keyring to the list of keyrings"
msgstr "l�gg till denna nyckelring till listan av nyckelringar"
-#: g10/g10.c:276
+#: g10/g10.c:277
msgid "add this secret keyring to the list"
msgstr "l�gg till denna hemliga nyckelring till listan"
-#: g10/g10.c:277
+#: g10/g10.c:278
msgid "|NAME|use NAME as default secret key"
msgstr "|NAMN|anv�nd NAMN som f�rvald hemlig nyckel"
-#: g10/g10.c:278
+#: g10/g10.c:279
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|V�RD|anv�nd denna nyckelserver f�r att sl� upp nycklar"
-#: g10/g10.c:279
+#: g10/g10.c:280
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAMN|s�tt teckentabellen f�r terminalen till NAMN"
-#: g10/g10.c:280
+#: g10/g10.c:281
msgid "read options from file"
msgstr "l�s flaggor fr�n fil"
-#: g10/g10.c:284
+#: g10/g10.c:285
msgid "|FD|write status info to this FD"
msgstr "|FD|skriv statusinformation till denna FD"
-#: g10/g10.c:289
+#: g10/g10.c:290
msgid "|FILE|load extension module FILE"
msgstr "|FIL|ladda till�ggsmodul FIL"
-#: g10/g10.c:290
+#: g10/g10.c:291
msgid "emulate the mode described in RFC1991"
msgstr "imitera l�get som beskrivs i RFC1991"
-#: g10/g10.c:291
+#: g10/g10.c:292
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "st�ll om alla flaggor s� att gpg f�ljer OpenPGP-standarden"
-#: g10/g10.c:292
+#: g10/g10.c:293
msgid "|N|use passphrase mode N"
msgstr "|N|anv�nd l�senordsl�get N"
-#: g10/g10.c:294
+#: g10/g10.c:295
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAMN|anv�nd kontrollsummealgoritmen NAMN f�r l�senordsfraser"
-#: g10/g10.c:296
+#: g10/g10.c:297
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAMN|anv�nd chifferalgoritmen NAMN f�r l�senordsfraser"
-#: g10/g10.c:297
+#: g10/g10.c:298
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAMN|anv�nd chifferalgoritmen NAMN"
-#: g10/g10.c:298
+#: g10/g10.c:299
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAMN|anv�nd kontrollsummealgoritmen NAMN"
-#: g10/g10.c:299
+#: g10/g10.c:300
msgid "|N|use compress algorithm N"
msgstr "|N|anv�nd komprimeringsalgoritmen N"
-#: g10/g10.c:300
+#: g10/g10.c:301
msgid "throw keyid field of encrypted packets"
msgstr "sl�ng bort nyckelidentitetsf�ltet fr�n krypterade paket"
-#: g10/g10.c:301
+#: g10/g10.c:302
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAMN=V�RDE|anv�nd detta s�tt f�r att beskriva data"
-#: g10/g10.c:304
+#: g10/g10.c:305
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
-#: g10/g10.c:307
+#: g10/g10.c:308
msgid ""
"@\n"
"Examples:\n"
@@ -668,17 +668,17 @@ msgstr ""
"--list-keys [namn] visa nycklar\n"
"--fingerprint [namn] visa fingeravtryck\n"
-#: g10/g10.c:401
+#: g10/g10.c:403
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"Rapportera g�rna fel till <[email protected]>.\n"
"Rapportera g�rna fel eller synpunkter p� �vers�ttningen till <[email protected]>.\n"
-#: g10/g10.c:405
+#: g10/g10.c:407
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Anv�ndning: gpg [flaggor] [filer] (-h f�r hj�lp)"
-#: g10/g10.c:408
+#: g10/g10.c:410
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -688,7 +688,7 @@ msgstr ""
"signera, kontrollera, kryptera eller dekryptera\n"
"vilken operation som utf�rs beror p� programmets indata\n"
-#: g10/g10.c:415
+#: g10/g10.c:417
msgid ""
"\n"
"Supported algorithms:\n"
@@ -696,62 +696,62 @@ msgstr ""
"\n"
"St�dda algoritmer:\n"
-#: g10/g10.c:494
+#: g10/g10.c:496
msgid "usage: gpg [options] "
msgstr "anv�ndning: gpg [flaggor] "
-#: g10/g10.c:547
+#: g10/g10.c:549
msgid "conflicting commands\n"
msgstr "motstridiga kommandon\n"
-#: g10/g10.c:689
+#: g10/g10.c:692
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTERA: inst�llningsfilen \"%s\" saknas\n"
-#: g10/g10.c:693
+#: g10/g10.c:696
#, c-format
msgid "option file `%s': %s\n"
msgstr "inst�llningsfil \"%s\": %s\n"
-#: g10/g10.c:700
+#: g10/g10.c:703
#, c-format
msgid "reading options from `%s'\n"
msgstr "l�ser flaggor fr�n \"%s\"\n"
-#: g10/g10.c:890
+#: g10/g10.c:893
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s �r ingen giltig teckentabell\n"
-#: g10/g10.c:945 g10/g10.c:954
+#: g10/g10.c:949 g10/g10.c:958
#, 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:947
+#: g10/g10.c:951
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s �r inte till�ten tillsammans med %s!\n"
-#: g10/g10.c:950
+#: g10/g10.c:954
#, 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:969 g10/g10.c:981
+#: g10/g10.c:973 g10/g10.c:985
msgid "selected cipher algorithm is invalid\n"
msgstr "den valda chifferalgoritmen �r ogiltig\n"
-#: g10/g10.c:975 g10/g10.c:987
+#: g10/g10.c:979 g10/g10.c:991
msgid "selected digest algorithm is invalid\n"
msgstr "den valda kontrollsummealgoritmen �r ogiltig\n"
-#: g10/g10.c:991
+#: g10/g10.c:995
msgid "the given policy URL is invalid\n"
msgstr "angiven URL �r ogiltig\n"
-#: g10/g10.c:994
+#: g10/g10.c:998
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "kompressionsalgoritmen m�ste vara i intervallet %d..%d\n"
@@ -762,127 +762,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:996
+#: g10/g10.c:1000
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:998
+#: g10/g10.c:1002
msgid "marginals-needed must be greater than 1\n"
msgstr "variabeln \"marginals-needed\" m�ste vara st�rre �n 1\n"
-#: g10/g10.c:1000
+#: g10/g10.c:1004
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:1003
+#: g10/g10.c:1007
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "NOTERA: enkelt S2K-l�ge (0) rekommenderas inte\n"
-#: g10/g10.c:1007
+#: g10/g10.c:1011
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:1092
+#: g10/g10.c:1096
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n"
-#: g10/g10.c:1098
+#: g10/g10.c:1102
msgid "--store [filename]"
msgstr "--store [filnamn]"
-#: g10/g10.c:1105
+#: g10/g10.c:1109
msgid "--symmetric [filename]"
msgstr "--symmetric [filnamn]"
-#: g10/g10.c:1113
+#: g10/g10.c:1117
msgid "--encrypt [filename]"
msgstr "--encrypt [filnamn]"
-#: g10/g10.c:1126
+#: g10/g10.c:1130
msgid "--sign [filename]"
msgstr "--sign [filnamn]"
-#: g10/g10.c:1139
+#: g10/g10.c:1143
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [filnamn]"
-#: g10/g10.c:1153
+#: g10/g10.c:1157
msgid "--clearsign [filename]"
msgstr "--clearsign [filnamn]"
-#: g10/g10.c:1170
+#: g10/g10.c:1174
msgid "--decrypt [filename]"
msgstr "--decrypt [filnamn]"
-#: g10/g10.c:1178
+#: g10/g10.c:1182
msgid "--sign-key user-id"
msgstr "--sign-key anv�ndaridentitet"
-#: g10/g10.c:1186
+#: g10/g10.c:1190
msgid "--lsign-key user-id"
msgstr "--lsign-key anv�ndaridentitet"
-#: g10/g10.c:1194
+#: g10/g10.c:1198
msgid "--edit-key user-id [commands]"
msgstr "--edit-key anv�ndaridentitet [kommandon]"
-#: g10/g10.c:1210
+#: g10/g10.c:1214
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key anv�ndaridentitet"
-#: g10/g10.c:1213
+#: g10/g10.c:1217
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:260 g10/g10.c:1250 g10/sign.c:373
+#: g10/encode.c:260 g10/g10.c:1254 g10/sign.c:373
#, c-format
msgid "can't open %s: %s\n"
msgstr "kan inte �ppna %s: %s\n"
-#: g10/g10.c:1265
+#: g10/g10.c:1269
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [anv�ndaridentitet] [nyckelring]"
-#: g10/g10.c:1331
+#: g10/g10.c:1335
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "misslyckades med att ta bort skalet: %s\n"
-#: g10/g10.c:1339
+#: g10/g10.c:1343
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "misslyckades med att skapa skal: %s\n"
-#: g10/g10.c:1407
+#: g10/g10.c:1411
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "felaktig hash-algoritm \"%s\"\n"
-#: g10/g10.c:1488
+#: g10/g10.c:1492
msgid "[filename]"
msgstr "[filnamn]"
-#: g10/g10.c:1492
+#: g10/g10.c:1496
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:1495 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 "kan inte �ppna \"%s\"\n"
-#: g10/g10.c:1665
+#: g10/g10.c:1669
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:1671
+#: g10/g10.c:1675
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -890,11 +890,11 @@ msgstr ""
"ett notationsnamn kan bara inneh�lla bokst�ver, siffror, punkter eller\n"
"understrykningstecken och sluta med ett likhetstecken\n"
-#: g10/g10.c:1677
+#: g10/g10.c:1681
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:1685
+#: g10/g10.c:1689
msgid "a notation value must not use any control characters\n"
msgstr "ett notationsv�rde f�r inte ineh�lla n�gra kontrolltecken\n"
diff --git a/util/ChangeLog b/util/ChangeLog
index 48d216e74..1f066c763 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 9 10:09:52 CEST 2000 Werner Koch <[email protected]>
+
+ * ttyio.c: Simulate termios with termios. By Dave Dykstra.
+
Thu Jun 8 20:22:00 CEST 2000 Werner Koch <[email protected]>
* secmem.c (lock_pool,secmem_init): Additional check for dropped privs.
diff --git a/util/ttyio.c b/util/ttyio.c
index 8d0824aad..781077043 100644
--- a/util/ttyio.c
+++ b/util/ttyio.c
@@ -26,6 +26,16 @@
#include <unistd.h>
#ifdef HAVE_TCGETATTR
#include <termios.h>
+#else
+ #ifdef HAVE_TERMIO_H
+ /* simulate termios with termio */
+ #include <termio.h>
+ #define termios termio
+ #define tcsetattr ioctl
+ #define TCSAFLUSH TCSETAF
+ #define tcgetattr(A,B) ioctl(A,TCGETA,B)
+ #define HAVE_TCGETATTR
+ #endif
#endif
#ifdef __MINGW32__ /* use the odd Win32 functions */
#include <windows.h>