aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1999-07-12 16:49:22 +0000
committerWerner Koch <[email protected]>1999-07-12 16:49:22 +0000
commit8caf2f74374f4bd20283f7a8e75956e42aa2de71 (patch)
tree143ba4c05b68dd0b149da18834043d3b2da16f22
parentSee ChangeLog: Mon Jul 12 14:55:34 CEST 1999 Werner Koch (diff)
downloadgnupg-8caf2f74374f4bd20283f7a8e75956e42aa2de71.tar.gz
gnupg-8caf2f74374f4bd20283f7a8e75956e42aa2de71.zip
See ChangeLog: Mon Jul 12 18:45:57 CEST 1999 Werner Koch
Diffstat (limited to '')
-rw-r--r--BUGS1
-rw-r--r--Makefile.am2
-rw-r--r--NEWS3
-rw-r--r--TODO1
-rw-r--r--VERSION2
-rw-r--r--doc/gpg.sgml13
-rw-r--r--g10/ChangeLog6
-rw-r--r--g10/g10.c40
-rw-r--r--g10/keyedit.c208
-rw-r--r--g10/main.h3
-rw-r--r--g10/sig-check.c2
-rw-r--r--po/de.po393
-rw-r--r--po/es_ES.po392
-rw-r--r--po/fr.po392
-rw-r--r--po/it.po392
-rw-r--r--po/pl.po394
-rw-r--r--po/pt_BR.po393
-rw-r--r--po/ru.po392
18 files changed, 1609 insertions, 1420 deletions
diff --git a/BUGS b/BUGS
index 357d4ac66..a8ae7701e 100644
--- a/BUGS
+++ b/BUGS
@@ -49,6 +49,7 @@ and after about half a day in the rsync snapshots.
[ **] #19 1999-06-11
"trustdb transaction too large" with about 500 signatures on a key
FAEBD5FC.
+ FIX: 1999-07-12 (less memory requirement and increased the limit)
Next #22
diff --git a/Makefile.am b/Makefile.am
index d825afc6b..0868a48cb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -23,7 +23,7 @@ dist-hook:
sed -e 's/@pkg_version@/$(VERSION)/g' \
$(top_srcdir)/scripts/gnupg.spec.in \
> $(distdir)/scripts/gnupg.spec
- rm $(distdir)/gcrypt/*.[ch]
+ -rm $(distdir)/gcrypt/*.[ch]
if MAINTAINER_MODE
diff --git a/NEWS b/NEWS
index fbf97adaf..e51df1b19 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,9 @@
* New script tools/lspgpot to help transferring assigned
trustvalues from PGP to GnuPG.
+ * New commands --lsign-key and made --sign-key a shortcut for --edit
+ and sign.
+
Noteworthy changes in version 0.9.8
-----------------------------------
diff --git a/TODO b/TODO
index 6b0917eae..7edc1ebce 100644
--- a/TODO
+++ b/TODO
@@ -39,4 +39,5 @@ Nice to have
* for messages created with "-t", it might make sense to append the
verification status of the message to the output (i.e. write something to
the --output file and not only to stderr.
+ * configure option where to find zlib
diff --git a/VERSION b/VERSION
index 878e17c7f..c944c51af 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.9.8a
+0.9.8b
diff --git a/doc/gpg.sgml b/doc/gpg.sgml
index 83eac9de9..dd6e1d3ad 100644
--- a/doc/gpg.sgml
+++ b/doc/gpg.sgml
@@ -355,6 +355,19 @@ trust value. Letters are used for the values:</para>
</variablelist>
</listitem></varlistentry>
+<varlistentry>
+<term>--sign-key &ParmName;</term>
+<listitem><para>
+Sign a public key with you secret key. This is a shortcut version
+of the subcommand <term>sign</term> from --edit.
+</para></listitem></varlistentry>
+
+<varlistentry>
+<term>--lsign-key &ParmName;</term>
+<listitem><para>
+Sign a public key with you secret key but mark it as non-exportable.
+This is a shortcut version of the subcommand <term>lsign</term> from --edit.
+</para></listitem></varlistentry>
<varlistentry>
<term>--delete-key &ParmName;</term>
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 480aa1f98..1d0e46e02 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,9 @@
+Mon Jul 12 18:45:57 CEST 1999 Werner Koch <[email protected]>
+
+
+ * keyedit.c (keyedit_menu): Add arg sign_mode and changed callers
+ * g10.c (main): New command --lsign-key.
+
Mon Jul 12 14:55:34 CEST 1999 Werner Koch <[email protected]>
diff --git a/g10/g10.c b/g10/g10.c
index f22f62905..52c0fb68e 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -70,6 +70,7 @@ enum cmd_and_opt_values { aNull = 0,
aKeygen,
aSignEncr,
aSignKey,
+ aLSignKey,
aListPackets,
aEditKey,
aDeleteKey,
@@ -190,9 +191,11 @@ static ARGPARSE_OPTS opts[] = {
{ aCheckKeys, "check-sigs",256, N_("check key signatures")},
{ oFingerprint, "fingerprint", 256, N_("list keys and fingerprints")},
{ aListSecretKeys, "list-secret-keys", 256, N_("list secret keys")},
- { aKeygen, "gen-key", 256, N_("generate a new key pair")},
+ { aKeygen, "gen-key", 256, N_("generate a new key pair")},
{ aDeleteKey, "delete-key",256, N_("remove key from the public keyring")},
- { aEditKey, "edit-key" ,256, N_("sign or edit a key")},
+ { aSignKey, "sign-key" ,256, N_("sign a key")},
+ { aLSignKey, "lsign-key" ,256, N_("sign a key locally")},
+ { aEditKey, "edit-key" ,256, N_("sign or edit a key")},
{ aGenRevoke, "gen-revoke",256, N_("generate a revocation certificate")},
{ aExport, "export" , 256, N_("export keys") },
{ aSendKeys, "send-keys" , 256, N_("export keys to a key server") },
@@ -283,7 +286,6 @@ static ARGPARSE_OPTS opts[] = {
{ aListTrustPath, "list-trust-path",0, "@"},
{ oKOption, NULL, 0, "@"},
{ oPasswdFD, "passphrase-fd",1, "@" },
- { aSignKey, "sign-key" ,256, "@" }, /* alias for edit-key */
{ aDeleteSecretKey, "delete-secret-key",0, "@" },
{ oQuickRandom, "quick-random", 0, "@"},
{ oNoVerbose, "no-verbose", 0, "@"},
@@ -662,6 +664,7 @@ main( int argc, char **argv )
case aSign: set_cmd( &cmd, aSign ); break;
case aKeygen: set_cmd( &cmd, aKeygen); break;
case aSignKey: set_cmd( &cmd, aSignKey); break;
+ case aLSignKey: set_cmd( &cmd, aLSignKey); break;
case aStore: set_cmd( &cmd, aStore); break;
case aEditKey: set_cmd( &cmd, aEditKey); break;
case aClearsign: set_cmd( &cmd, aClearsign); break;
@@ -1044,26 +1047,43 @@ main( int argc, char **argv )
case aSignKey: /* sign the key given as argument */
+ if( argc != 1 )
+ wrong_args(_("--sign-key user-id"));
+ username = make_username( fname );
+ keyedit_menu(fname, locusr, NULL, 1 );
+ m_free(username);
+ break;
+
+ case aLSignKey:
+ if( argc != 1 )
+ wrong_args(_("--lsign-key user-id"));
+ username = make_username( fname );
+ keyedit_menu(fname, locusr, NULL, 2 );
+ m_free(username);
+ break;
+
case aEditKey: /* Edit a key signature */
if( !argc )
- wrong_args(_("--edit-key username [commands]"));
+ wrong_args(_("--edit-key user-id [commands]"));
+ username = make_username( fname );
if( argc > 1 ) {
sl = NULL;
for( argc--, argv++ ; argc; argc--, argv++ )
- append_to_strlist2( &sl, *argv, utf8_strings );
- keyedit_menu( fname, locusr, sl );
+ append_to_strlist( &sl, *argv );
+ keyedit_menu( username, locusr, sl, 0 );
free_strlist(sl);
}
else
- keyedit_menu(fname, locusr, NULL );
+ keyedit_menu(username, locusr, NULL, 0 );
+ m_free(username);
break;
case aDeleteSecretKey:
if( argc != 1 )
- wrong_args(_("--delete-secret-key username"));
+ wrong_args(_("--delete-secret-key user-id"));
case aDeleteKey:
if( argc != 1 )
- wrong_args(_("--delete-key username"));
+ wrong_args(_("--delete-key user-id"));
username = make_username( fname );
if( (rc = delete_key(username, cmd==aDeleteSecretKey)) )
log_error("%s: delete key failed: %s\n", username, g10_errstr(rc) );
@@ -1290,7 +1310,7 @@ main( int argc, char **argv )
case aListTrustPath:
if( !argc )
- wrong_args("--list-trust-path <usernames>");
+ wrong_args("--list-trust-path <user-ids>");
for( ; argc; argc--, argv++ ) {
username = make_username( *argv );
list_trust_path( username );
diff --git a/g10/keyedit.c b/g10/keyedit.c
index 8d7e44a9b..7025b4d26 100644
--- a/g10/keyedit.c
+++ b/g10/keyedit.c
@@ -538,13 +538,15 @@ fix_keyblock( KBNODE keyblock )
}
/****************
- * Menu driven key editor
+ * Menu driven key editor. If sign_mode is true semi-automatical signing
+ * will be performed. commands are ignore in this case
*
* Note: to keep track of some selection we use node->mark MARKBIT_xxxx.
*/
void
-keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
+keyedit_menu( const char *username, STRLIST locusr, STRLIST commands,
+ int sign_mode )
{
enum cmdids { cmdNONE = 0,
cmdQUIT, cmdHELP, cmdFPR, cmdLIST, cmdSELUID, cmdCHECK, cmdSIGN,
@@ -552,44 +554,45 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
cmdDEBUG, cmdSAVE, cmdADDUID, cmdDELUID, cmdADDKEY, cmdDELKEY,
cmdTOGGLE, cmdSELKEY, cmdPASSWD, cmdTRUST, cmdPREF, cmdEXPIRE,
cmdENABLEKEY, cmdDISABLEKEY,
- cmdNOP };
+ cmdINVCMD, cmdNOP };
static struct { const char *name;
enum cmdids id;
int need_sk;
+ int signmode;
const char *desc;
} cmds[] = {
- { N_("quit") , cmdQUIT , 0, N_("quit this menu") },
- { N_("q") , cmdQUIT , 0, NULL },
- { N_("save") , cmdSAVE , 0, N_("save and quit") },
- { N_("help") , cmdHELP , 0, N_("show this help") },
- { "?" , cmdHELP , 0, NULL },
- { N_("fpr") , cmdFPR , 0, N_("show fingerprint") },
- { N_("list") , cmdLIST , 0, N_("list key and user ids") },
- { N_("l") , cmdLIST , 0, NULL },
- { N_("uid") , cmdSELUID , 0, N_("select user id N") },
- { N_("key") , cmdSELKEY , 0, N_("select secondary key N") },
- { N_("check") , cmdCHECK , 0, N_("list signatures") },
- { N_("c") , cmdCHECK , 0, NULL },
- { N_("sign") , cmdSIGN , 0, N_("sign the key") },
- { N_("s") , cmdSIGN , 0, NULL },
- { N_("lsign") , cmdLSIGN , 0, N_("sign the key locally") },
- { N_("debug") , cmdDEBUG , 0, NULL },
- { N_("adduid") , cmdADDUID , 1, N_("add a user id") },
- { N_("deluid") , cmdDELUID , 0, N_("delete user id") },
- { N_("addkey") , cmdADDKEY , 1, N_("add a secondary key") },
- { N_("delkey") , cmdDELKEY , 0, N_("delete a secondary key") },
- { N_("delsig") , cmdDELSIG , 0, N_("delete signatures") },
- { N_("expire") , cmdEXPIRE , 1, N_("change the expire date") },
- { N_("toggle") , cmdTOGGLE , 1, N_("toggle between secret "
- "and public key listing") },
- { N_("t" ) , cmdTOGGLE , 1, NULL },
- { N_("pref") , cmdPREF , 0, N_("list preferences") },
- { N_("passwd") , cmdPASSWD , 1, N_("change the passphrase") },
- { N_("trust") , cmdTRUST , 0, N_("change the ownertrust") },
- { N_("revsig") , cmdREVSIG , 0, N_("revoke signatures") },
- { N_("revkey") , cmdREVKEY , 1, N_("revoke a secondary key") },
- { N_("disable") , cmdDISABLEKEY , 0, N_("disable a key") },
- { N_("enable") , cmdENABLEKEY , 0, N_("enable a key") },
+ { N_("quit") , cmdQUIT , 0,1, N_("quit this menu") },
+ { N_("q") , cmdQUIT , 0,1, NULL },
+ { N_("save") , cmdSAVE , 0,1, N_("save and quit") },
+ { N_("help") , cmdHELP , 0,1, N_("show this help") },
+ { "?" , cmdHELP , 0,1, NULL },
+ { N_("fpr") , cmdFPR , 0,1, N_("show fingerprint") },
+ { N_("list") , cmdLIST , 0,1, N_("list key and user ids") },
+ { N_("l") , cmdLIST , 0,1, NULL },
+ { N_("uid") , cmdSELUID , 0,1, N_("select user id N") },
+ { N_("key") , cmdSELKEY , 0,0, N_("select secondary key N") },
+ { N_("check") , cmdCHECK , 0,1, N_("list signatures") },
+ { N_("c") , cmdCHECK , 0,1, NULL },
+ { N_("sign") , cmdSIGN , 0,1, N_("sign the key") },
+ { N_("s") , cmdSIGN , 0,1, NULL },
+ { N_("lsign") , cmdLSIGN , 0,1, N_("sign the key locally") },
+ { N_("debug") , cmdDEBUG , 0,0, NULL },
+ { N_("adduid") , cmdADDUID , 1,0, N_("add a user id") },
+ { N_("deluid") , cmdDELUID , 0,0, N_("delete user id") },
+ { N_("addkey") , cmdADDKEY , 1,0, N_("add a secondary key") },
+ { N_("delkey") , cmdDELKEY , 0,0, N_("delete a secondary key") },
+ { N_("delsig") , cmdDELSIG , 0,0, N_("delete signatures") },
+ { N_("expire") , cmdEXPIRE , 1,0, N_("change the expire date") },
+ { N_("toggle") , cmdTOGGLE , 1,0, N_("toggle between secret "
+ "and public key listing") },
+ { N_("t" ) , cmdTOGGLE , 1,0, NULL },
+ { N_("pref") , cmdPREF , 0,0, N_("list preferences") },
+ { N_("passwd") , cmdPASSWD , 1,0, N_("change the passphrase") },
+ { N_("trust") , cmdTRUST , 0,0, N_("change the ownertrust") },
+ { N_("revsig") , cmdREVSIG , 0,0, N_("revoke signatures") },
+ { N_("revkey") , cmdREVKEY , 1,0, N_("revoke a secondary key") },
+ { N_("disable") , cmdDISABLEKEY, 0,0, N_("disable a key") },
+ { N_("enable") , cmdENABLEKEY , 0,0, N_("enable a key") },
{ NULL, cmdNONE } };
enum cmdids cmd = 0;
@@ -612,18 +615,27 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
goto leave;
}
- /* first try to locate it as secret key */
- rc = find_secret_keyblock_byname( &sec_keyblockpos, username );
- if( !rc ) {
- rc = read_keyblock( &sec_keyblockpos, &sec_keyblock );
- if( rc ) {
- log_error("%s: secret keyblock read problem: %s\n",
- username, g10_errstr(rc));
- goto leave;
+ if( sign_mode ) {
+ commands = NULL;
+ append_to_strlist( &commands, sign_mode == 1? "sign":"lsign" );
+ have_commands = 1;
+ }
+
+
+ if( !sign_mode ) {
+ /* first try to locate it as secret key */
+ rc = find_secret_keyblock_byname( &sec_keyblockpos, username );
+ if( !rc ) {
+ rc = read_keyblock( &sec_keyblockpos, &sec_keyblock );
+ if( rc ) {
+ log_error("%s: secret keyblock read problem: %s\n",
+ username, g10_errstr(rc));
+ goto leave;
+ }
+ merge_keys_and_selfsig( sec_keyblock );
+ if( fix_keyblock( sec_keyblock ) )
+ sec_modified++;
}
- merge_keys_and_selfsig( sec_keyblock );
- if( fix_keyblock( sec_keyblock ) )
- sec_modified++;
}
/* and now get the public key */
@@ -636,7 +648,7 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
modified++;
if( sec_keyblock ) { /* check that they match */
- /* FIXME: check that they both match */
+ /* fixme: check that they both match */
tty_printf(_("Secret key is available.\n"));
}
@@ -689,10 +701,13 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
arg_number = atoi(p);
}
- for(i=0; cmds[i].name; i++ )
+ for(i=0; cmds[i].name; i++ ) {
if( !stricmp( answer, cmds[i].name ) )
break;
- if( cmds[i].need_sk && !sec_keyblock ) {
+ }
+ if( sign_mode && !cmds[i].signmode )
+ cmd = cmdINVCMD;
+ else if( cmds[i].need_sk && !sec_keyblock ) {
tty_printf(_("Need the secret key to do this.\n"));
cmd = cmdNOP;
}
@@ -702,53 +717,15 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
switch( cmd ) {
case cmdHELP:
for(i=0; cmds[i].name; i++ ) {
- if( cmds[i].need_sk && !sec_keyblock )
+ if( sign_mode && !cmds[i].signmode )
+ ;
+ else if( cmds[i].need_sk && !sec_keyblock )
; /* skip if we do not have the secret key */
else if( cmds[i].desc )
tty_printf("%-10s %s\n", cmds[i].name, _(cmds[i].desc) );
}
break;
- case cmdQUIT:
- if( have_commands )
- goto leave;
- if( !modified && !sec_modified )
- goto leave;
- if( !cpr_get_answer_is_yes("keyedit.save.okay",
- _("Save changes? ")) ) {
- if( cpr_enabled()
- || cpr_get_answer_is_yes("keyedit.cancel.okay",
- _("Quit without saving? ")) )
- goto leave;
- break;
- }
- /* fall thru */
- case cmdSAVE:
- if( modified || sec_modified ) {
- if( modified ) {
- rc = update_keyblock( &keyblockpos, keyblock );
- if( rc ) {
- log_error(_("update failed: %s\n"), g10_errstr(rc) );
- break;
- }
- }
- if( sec_modified ) {
- rc = update_keyblock( &sec_keyblockpos, sec_keyblock );
- if( rc ) {
- log_error(_("update secret failed: %s\n"),
- g10_errstr(rc) );
- break;
- }
- }
- }
- else
- tty_printf(_("Key not changed so no update needed.\n"));
- rc = update_trust_record( keyblock, 0, NULL );
- if( rc )
- log_error(_("update of trustdb failed: %s\n"),
- g10_errstr(rc) );
- goto leave;
-
case cmdLIST:
redisplay = 1;
break;
@@ -783,7 +760,9 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
break;
}
}
- sign_uids( keyblock, locusr, &modified, cmd == cmdLSIGN );
+ if( !sign_uids( keyblock, locusr, &modified, cmd == cmdLSIGN )
+ && sign_mode )
+ goto do_cmd_save;
break;
case cmdDEBUG:
@@ -944,6 +923,53 @@ keyedit_menu( const char *username, STRLIST locusr, STRLIST commands )
}
break;
+ case cmdQUIT:
+ if( have_commands )
+ goto leave;
+ if( !modified && !sec_modified )
+ goto leave;
+ if( !cpr_get_answer_is_yes("keyedit.save.okay",
+ _("Save changes? ")) ) {
+ if( cpr_enabled()
+ || cpr_get_answer_is_yes("keyedit.cancel.okay",
+ _("Quit without saving? ")) )
+ goto leave;
+ break;
+ }
+ /* fall thru */
+ case cmdSAVE:
+ do_cmd_save:
+ if( modified || sec_modified ) {
+ if( modified ) {
+ rc = update_keyblock( &keyblockpos, keyblock );
+ if( rc ) {
+ log_error(_("update failed: %s\n"), g10_errstr(rc) );
+ break;
+ }
+ }
+ if( sec_modified ) {
+ rc = update_keyblock( &sec_keyblockpos, sec_keyblock );
+ if( rc ) {
+ log_error(_("update secret failed: %s\n"),
+ g10_errstr(rc) );
+ break;
+ }
+ }
+ }
+ else
+ tty_printf(_("Key not changed so no update needed.\n"));
+ /* TODO: we should keep track whether we have changed
+ * something relevant to the trustdb */
+ if( !modified && sign_mode )
+ rc = 0; /* we can skip at least in this case */
+ else
+ rc = update_trust_record( keyblock, 0, NULL );
+ if( rc )
+ log_error(_("update of trustdb failed: %s\n"),
+ g10_errstr(rc) );
+ goto leave;
+
+ case cmdINVCMD:
default:
tty_printf("\n");
tty_printf(_("Invalid command (try \"help\")\n"));
diff --git a/g10/main.h b/g10/main.h
index fec9ae04d..df04f408d 100644
--- a/g10/main.h
+++ b/g10/main.h
@@ -87,7 +87,8 @@ int check_key_signature2( KBNODE root, KBNODE node,
int delete_key( const char *username, int secure );
/*-- keyedit.c --*/
-void keyedit_menu( const char *username, STRLIST locusr, STRLIST cmds );
+void keyedit_menu( const char *username, STRLIST locusr, STRLIST cmds,
+ int sign_mode );
/*-- keygen.c --*/
u32 ask_expiredate(void);
diff --git a/g10/sig-check.c b/g10/sig-check.c
index 4731588c6..937410c8c 100644
--- a/g10/sig-check.c
+++ b/g10/sig-check.c
@@ -433,9 +433,11 @@ check_key_signature2( KBNODE root, KBNODE node, int *is_selfsig, u32 *r_expire)
sig = node->pkt->pkt.signature;
algo = sig->digest_algo;
+ #if 0 /* I am not sure whether this is a good thing to do */
if( sig->flags.checked )
log_debug("check_key_signature: already checked: %s\n",
sig->flags.valid? "good":"bad" );
+ #endif
if( (rc=check_digest_algo(algo)) )
return rc;
diff --git a/po/de.po b/po/de.po
index 2fa024501..451023ac1 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@
# Walter Koch <[email protected]>, 1998.
msgid ""
msgstr ""
-"POT-Creation-Date: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+0200\n"
"PO-Revision-Date: 1999-05-30 21:56+0200\n"
"Last-Translator: Walter Koch <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
@@ -274,7 +274,7 @@ msgstr ""
"Arbeiten durch, damit das Betriebssystem weitere Entropie sammeln kann!\n"
"(Es werden noch %d Byte ben�tigt.)\n"
-#: g10/g10.c:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -282,131 +282,131 @@ msgstr ""
"@Befehle:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
msgid "|[file]|make a signature"
msgstr "|[Datei]|Eine Unterschrift erzeugen"
-#: g10/g10.c:179
+#: g10/g10.c:180
msgid "|[file]|make a clear text signature"
msgstr "|[Datei]|Eine Klartextunterschrift erzeugen"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "Eine abgetrennte Unterschrift erzeugen"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "Daten verschl�sseln"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "Daten symmetrisch verschl�sseln"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "Nur speichern"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "Daten entschl�sseln (Voreinstellung)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "Signatur pr�fen"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "Liste der Schl�ssel"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "Liste der Schl�ssel und ihrer Signaturen"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "Signaturen der Schl�ssel pr�fen"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "Liste der Schl�ssel und ihrer \"Fingerabdr�cke\""
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "Liste der geheimen Schl�ssel"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "Ein neues Schl�sselpaar erzeugen"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "Schl�ssel entfernen"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "Unterschreiben oder Bearbeiten eines Schl�ssels"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "Ein Schl�sselwiderruf-Zertifikat erzeugen"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "Schl�ssel exportieren"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr "Schl�ssel zu einem Schl�sselserver exportieren"
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr "Schl�ssel von einem Schl�sselserver importieren"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "Schl�ssel importieren/kombinieren"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "Lediglich die Struktur der Datenpakete anzeigen"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "export the ownertrust values"
msgstr "Exportieren der \"Owner trust\" Werte"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "import ownertrust values"
msgstr "Importieren der \"Owner trust\" Werte"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "|[NAMES]|update the trust database"
msgstr "|[NAMEN]|�ndern der \"Trust\"-Datenbank"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMEN]|�berpr�fen der \"Trust\"-Datenbank"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr "Reparieren einer besch�digten \"Trust\"-Datenbank"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "Datei oder stdin von der ASCII-H�lle befreien"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "Datei oder stdin in eine ASCII-H�lle einpacken"
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|algo [Dateien]|Message-Digests f�r die Dateien ausgeben"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "Message-Digests f�r die Eingabedaten ausgeben"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -416,160 +416,160 @@ msgstr ""
"Optionen:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "Ausgabe mit ASCII-H�lle versehen"
-#: g10/g10.c:225
+#: g10/g10.c:226
msgid "|NAME|encrypt for NAME"
msgstr "|NAME|Verschl�sseln f�r NAME"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr "Mit dieser User-ID signieren"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "Kompressionsstufe auf N setzen (0=keine Kompr.)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "Textmodus benutzen"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "Als Ausgabedatei benutzen"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "Detaillierte Informationen"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr "Etwas weniger Infos"
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr ""
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "force v3 signatures"
msgstr "v3 Signaturen erzwingen"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "always use a MDC for encryption"
msgstr "Beim Verschl�sseln ein Siegel (MDC) verwenden"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "Keine wirklichen �nderungen durchf�hren"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "Stapelmodus: Keine Abfragen"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "\"Ja\" als Standardantwort annehmen"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "\"Nein\" als Standardantwort annehmen"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "Als �ffentlichen Schl�sselbund mitbenutzen"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "Als geheimen Schl�sselbund mitbenutzen"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|NAME|NAME als voreingestellten Schl�ssel benutzen"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|Schl�ssel bei diesem Server nachschlagen"
-#: g10/g10.c:248
+#: g10/g10.c:249
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAME|Terminalzeichensatz NAME benutzen"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "Optionen aus der Datei lesen"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "Debug-Flags einschalten"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "Alle Debug-Flags einschalten"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr "|FD|Statusinfo auf FD (Dateihandle) ausgeben"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "Keine Kommentarpakete schreiben"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "Ben�tigte Vollvertrauen (Voreinstellung 1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "Ben�tigte Teilvertrauen (Voreinstellung 3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
msgid "|FILE|load extension module FILE"
msgstr "|DATEI|Erweiterungsmodul DATEI laden"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "Den in RFC1991 beschriebenen Modus nachahmen"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|use passphrase mode N"
msgstr "|N|Verwenden des Mantra-Modus N"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAME|Das Hashverfahren NAME f�r Mantras benutzen"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAME|Das Verschl�.verfahren NAME f�r Mantras benutzen"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAME|Das Verschl�.verfahren NAME benutzen"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAME|Das Hashverfahren NAME benutzen"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|Die Komprimierverfahren N benutzen"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "Entferne die Absender-ID verschl�sselter Pakete"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAME=WERT|verwende diese \"notation\"-Daten"
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid ""
"@\n"
"Examples:\n"
@@ -589,15 +589,15 @@ msgstr ""
" --list-keys [Namen] Schl�ssel anzeigen\n"
" --fingerprint [Namen] \"Fingerabdr�cke\" anzeigen\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Berichte �ber Bugs (Programmfehler) bitte an <[email protected]>.\n"
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Aufruf: gpg [Optionen] [Dateien] (-h f�r Hilfe)"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -607,7 +607,7 @@ msgstr ""
"Signieren, pr�fen, verschl�sseln, entschl�sseln\n"
"Die voreingestellte Operation ist abh�ngig von den Eingabedaten\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -615,161 +615,161 @@ msgstr ""
"\n"
"Unterst�tzte Verfahren:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "Aufruf: gpg [Optionen] "
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "Widerspr�chliche Befehle\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n"
-#: g10/g10.c:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "Optionendatei '%s': %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "Optionen werden aus '%s' gelesen\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s ist kein g�ltiger Zeichensatz.\n"
-#: g10/g10.c:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "Das ausgew�hlte Verschl�sslungsverfahren ist ung�ltig\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "Das ausgew�hlte Hashverfahren ist ung�ltig\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr "Die angegebene URL f�r Richtlinien ist ung�ltig\n"
-#: g10/g10.c:858
+#: g10/g10.c:877
#, 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:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed m�ssen gr��er als 0 sein\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed m�ssen gr��er als 1 sein\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
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:867
+#: g10/g10.c:886
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n"
-#: g10/g10.c:871
+#: g10/g10.c:890
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:948
+#: g10/g10.c:967
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n"
-#: g10/g10.c:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [Dateiname]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [Dateiname]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [Dateiname]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [Dateiname]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [Dateiname]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [Dateiname]"
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [Dateiname]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
msgid "--edit-key username [commands]"
msgstr "--edit-key Username [Befehle]"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key Username"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key Benutzername"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "'%s' kann nicht ge�ffnet werden: %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [Benutzername] [Keyring]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "Entfernen der ASCII-H�lle ist fehlgeschlagen: %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "Anbringen der ASCII-H�lle ist fehlgeschlagen: %s\n"
-#: g10/g10.c:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "Ung�ltiges Hashverfahren '%s'\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[Dateiname]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr "Auf geht's - Botschaft eintippen ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "'%s' kann nicht ge�ffnet werden\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
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:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -777,12 +777,12 @@ msgstr ""
"Ein \"notation\"-Name darf nur Buchstaben, Zahlen, Punkte oder Unterstriche "
"enthalten und mu� mit einem '=' enden\n"
-#: g10/g10.c:1478
+#: g10/g10.c:1505
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:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr "Ein \"notation\"-Wert darf keine Kontrollzeichen verwenden\n"
@@ -1509,7 +1509,7 @@ msgstr "'%s' kann nicht ge�ffnet werden: %s\n"
msgid "skipping block of type %d\n"
msgstr "�berspringe den Block vom Typ %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "%lu Schl�ssel bislang bearbeitet\n"
@@ -2299,92 +2299,104 @@ msgstr "Wirklich ein Unterschrift-Widerrufszertifikat erzeugen? (j/N) "
msgid "no secret key\n"
msgstr "Kein geheimer Schl�ssel\n"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "�ffentlicher Schl�ssel ist %08lX\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "Mit �ffentlichem Sch�ssel verschl�sselte Daten: Korrekte DEK\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "%u-Bit %s Schl�ssel, ID %08lX, erzeugt %s"
+
+# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr "Unterschrift vom %.*s, %s Schl�ssel ID %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "Geheimer Schl�ssel ist nicht vorhanden"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "Entschl�sselung mit �ffentlichem Schl�ssel fehlgeschlagen: %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "Enschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "Warnung: Verschl�sselte Botschaft ist manipuliert worden!\n"
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "Enschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
"Hinweis: Der Absender verlangte Vertraulichkeit(\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "Urspr�nglicher Dateiname='%.*s'\n"
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
msgid "WARNING: invalid notation data found\n"
msgstr "WARNUNG: Ung�ltige \"Notation\"-Daten gefunden\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr "\"Notation\": "
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr "Richtlinie: "
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "Unterschriften-�berpr�fung unterdr�ckt\n"
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Unterschrift vom %.*s, %s Schl�ssel ID %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "FALSCHE Unterschrift von \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Korrekte Unterschrift von \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Unterschrift kann nicht gepr�ft werden: %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "Unterschrift nach alter (PGP 2.x) Art\n"
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "ung�ltiges root-Paket in proc_tree() entdeckt\n"
@@ -2415,12 +2427,12 @@ msgstr ""
"Diees Verschl�sselungsmethode taugt nicht mehr viel; verwenden Sie eine "
"st�rker standardisierte Methode!\n"
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "dieses Public-Key Verfahren %d kann nicht benutzt werden\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "Im Unterpaket des Typs %d ist das \"critical bit\" gesetzt\n"
@@ -2445,6 +2457,11 @@ msgstr "%u-Bit %s Schl�ssel, ID %08lX, erzeugt %s"
msgid " (main key ID %08lX)"
msgstr " (Hauptschl�ssel-ID %08lX)"
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "Dies kann im Batchmodus nicht durchgef�hrt werden.\n"
+
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Geben Sie das Mantra ein: "
@@ -2768,231 +2785,231 @@ msgid "key %08lX: secret and public key don't match\n"
msgstr ""
"Schl�ssel %08lX: geheimer und �ffentlicher Schl�ssel passen nicht zusammen.\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "Schl�ssel %08lX kann nicht in die \"trustdb\" eingef�gt werden\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "Schl�ssel %08lX: Satzabfrage fehlgeschlagen\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "Schl�ssel %08lX: Ist bereits in geheimer Schl�sseltabelle\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "Schl�ssel %08lX: Akzeptiert als vertrauensw�rdiger Schl�ssel.\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "enum_secret_keys fehlgeschlagen: %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "tdbio_search_dir fehlgeschlagen: %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "Schl�ssel %08lX.%lu: Korrekte Unterschl�ssel-Anbindung\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "Schl�ssel %08lX.%lu: Ung�ltige Unterschl�ssel-Anbindung\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "Schl�ssel %08lX.%lu: G�ltiger Schl�sselwiderruf\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "Schl�ssel %08lX.%lu: Ung�ltiger Schl�sselwiderruf: %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "Schl�ssel %08lX.%lu: G�ltiger Unterschl�sselwiderruf\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Korrekte Eigenbeglaubigung"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Ung�ltige Eigenbeglaubigung"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"G�ltiger User-ID-Widerruf ignoriert, da eine neuere Eigenbeglaubigung "
"vorliegt\n"
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "G�ltiger User-ID-Widerruf\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "Ung�ltiger User-ID-Widerruf"
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "G�ltiger Zerifikat-Widerruf"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Korrektes Zertifikat"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "Ung�ltiger Zertifikatswiderruf"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Ung�ltiges Zertifikat"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "Signatursatz %lu[%d] zeigt auf falschen Satz.\n"
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "Doppelte Zertifikate - entfernt"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: Einf�gen fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: Einf�gen fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: eingef�gt\n"
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "Fehler beim Auffinden des Verz.Satzes: %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "%lu Schl�ssel bearbeitet\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu Schl�ssel mit Fehlern\n"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu Schl�ssel eingef�gt\n"
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "enumerate Schl�sselblock fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu: Dir-Satz ohne Schl�ssel - �bergangen\n"
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu Schl�ssel �bersprungen\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu Schl�ssel ge�ndert\n"
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Huch, keine Schl�ssel\n"
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Huch, keine User-IDs\n"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: Suche nach Dir-Satz fehlgeschlagen: %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "Schl�ssel %08lX: 'trust record' einf�gen fehlgeschlagen: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "Schl�ssel %08lX.%lu: in \"trustdb\" eingef�gt\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"Schl�ssel %08lX.%lu: wurde in der Zukunft erzeugt (Zeitreise oder Uhren "
"stimmen nicht �berein)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "Schl�ssel %08lX.%lu: verfallen am %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "Schl�ssel %08lX.%lu: Vertrauenspr�fung fehlgeschlagen: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "Benutzer '%s' nicht gefunden: %s\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "Problem, '%s' in der Trust-DB zu finden: %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "User '%s' ist nicht in der 'Trust'-Datenbank - wird eingef�gt\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "konnte '%s' nicht in die 'Trust'-Datenbank hineintun: %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr "WARNUNG: Lange 'Pref'-Records k�nnen noch nicht benutzt werden\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 1b4d2b727..a8aa43fc7 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,7 +7,7 @@
# GPG version: 0.9.7
msgid ""
msgstr ""
-"POT-Creation-Date: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+0200\n"
"PO-Revision-Date: 1999-06-06 18:33+0200\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Date: 1998-11-13 10:49:25+0100\n"
@@ -283,7 +283,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:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -291,131 +291,131 @@ msgstr ""
"@Comandos:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
msgid "|[file]|make a signature"
msgstr "|[file]|hace una firma"
-#: g10/g10.c:179
+#: g10/g10.c:180
msgid "|[file]|make a clear text signature"
msgstr "|[file]|hace una firma en texto claro"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "hace una firma separada"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "cifra datos"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "cifra s�lo con un cifrado sim�trico"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "s�lo almacenar"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "descifra datos (predefinido)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "verifica una firma"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "lista claves"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "lista claves y firmas"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "comprueba las firmas de las claves"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "lista claves y huellas dactilares"
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "lista claves secretas"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "genera un nuevo par de claves"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "elimina la clave del anillo p�blico"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "firma o modifica una clave"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "genera un certificado de revocaci�n"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "exporta claves"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr "exporta claves a un servidor de claves"
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr "importa claves desde un servidor de claves"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "importa/fusiona claves"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "lista s�lo la secuencia de paquetes"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "export the ownertrust values"
msgstr "exporta los valores de confianza"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "import ownertrust values"
msgstr "importa los valores de confianza"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "|[NAMES]|update the trust database"
msgstr "|[NOMBRES]|actualiza la base de datos de confianza"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMBRES]|comprueba la base de datos de confianza"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr "arregla una base de datos de confianza da�ada"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "quita la armadura de un fichero o stdin"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "crea la armadura a un fichero o stdin"
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|algo [ficheros]|imprime res�menes de mensaje"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "imprime todos los res�menes de mensaje"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -425,164 +425,164 @@ msgstr ""
"Opciones:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "crea una salida ascii con armadura"
-#: g10/g10.c:225
+#: g10/g10.c:226
msgid "|NAME|encrypt for NAME"
msgstr "|NOMBRE|cifra para NOMBRE"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr "usa este usuario para firmar o descifrar"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "|N|establece nivel de compresi�n N (0 no comprime)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "usa modo de texto can�nico"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "usa como fichero de salida"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "prolijo"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr "algo m�s discreto"
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr ""
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "force v3 signatures"
msgstr "fuerza firmas v3"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "always use a MDC for encryption"
msgstr "siempre usa un MCD para cifrar"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "no hace ning�n cambio"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "proceso por lotes: nunca preguntar"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "asume \"s�\" en casi todas las preguntas"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "asume \"no\" en casi todas las preguntas"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "a�ade este anillo a la lista de anillos"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "a�ade este anillo secreto a la lista"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|NOMBRE|usa NOMBRE como clave secreta por defecto"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|SERVIDOR|usa este servidor de claves"
-#: g10/g10.c:248
+#: g10/g10.c:249
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOMBRE|usa el juego de caracteres NOMBRE"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "lee opciones del fichero"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "establece los par�metros de depuraci�n"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "habilita depuraci�n completa"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr "|DF|escribe informaci�n de estado en descriptor DF"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "no escribe paquetes de comentario"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "(por defecto es 1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "(por defecto es 3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
msgid "|FILE|load extension module FILE"
msgstr "|FICHERO|carga m�dulo de extensiones FICHERO"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "emula el modo descrito en la RFC1991"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|use passphrase mode N"
msgstr "|N|usa modo de contrase�a N"
-#: g10/g10.c:263
+#: g10/g10.c:264
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:265
+#: g10/g10.c:266
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr ""
"|NOMBRE|usa el algoritmo de cifrado NOMBRE para las\n"
"contrase�as"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOMBRE|usa el algoritmo de cifrado NOMBRE"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOMBRE|usa algoritmo de resumen de mensaje NOMBRE"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|usa el algoritmo de compresi�n N"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "elimina el campo keyid de los paquetes cifrados"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr ""
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid ""
"@\n"
"Examples:\n"
@@ -602,15 +602,15 @@ msgstr ""
" --list-keys [nombres] muestra las claves\n"
" --fingerprint [nombres] muestra las huellas dactilares\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Por favor, informe de posibles \"bugs\" a <[email protected]>.\n"
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [opciones] [ficheros] (-h para ayuda)"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -620,7 +620,7 @@ msgstr ""
"Firma, comprueba, cifra o descifra.\n"
"La operaci�n por defecto depende del tipo de datos de entrada.\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -628,169 +628,169 @@ msgstr ""
"\n"
"Algoritmos soportados:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "uso: gpg [opciones] "
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "comandos incompatibles\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n"
-#: g10/g10.c:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "fichero de opciones `%s': %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "leyendo opciones desde `%s'\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, 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:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "el algoritmo de cifrado seleccionado no es v�lido\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "el algoritmo de resumen seleccionado no es v�lido\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr ""
-#: g10/g10.c:858
+#: g10/g10.c:877
#, 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:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed debe ser mayor que 0\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed debe ser mayor que 1\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
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:867
+#: g10/g10.c:886
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:871
+#: g10/g10.c:890
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:948
+#: g10/g10.c:967
#, 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:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [nombre_fichero]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [nombre_fichero]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [nombre_fichero]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [nombre_fichero]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nombre_fichero]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [nombre_fichero]"
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [nombre_fichero]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
msgid "--edit-key username [commands]"
msgstr "--edit-key nombre_usuario [comandos]"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key nombre_usuario"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key nombre_usuario"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [id_usuario] [anillo]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "eliminaci�n de armadura fallida: %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "creaci�n de armadura fallida: %s\n"
-#: g10/g10.c:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de distribuci�n no v�lido `%s'\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[nombre_fichero]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr "Adelante, teclee su mensaje ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "no puede abrirse `%s'\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
-#: g10/g10.c:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
-#: g10/g10.c:1478
+#: g10/g10.c:1505
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
-#: g10/g10.c:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr ""
@@ -1508,7 +1508,7 @@ msgstr "no puede abrirse `%s': %s\n"
msgid "skipping block of type %d\n"
msgstr "ignorando bloque de tipo %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "hasta ahora se han procesado %lu claves\n"
@@ -2300,91 +2300,102 @@ msgstr "�Crear los certificados de revocaci�n realmente? (s/N)"
msgid "no secret key\n"
msgstr "no hay clave secreta\n"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "la clave p�blica es %08lX\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "datos cifrados de la clave p�blica: DEK bueno\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "clave %2$s de %1$u bits, ID %3$08lX, creada el %4$s"
+
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr "Firma creada %.*s usando identificativo de clave %s %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "Clave secreta no disponible"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descifrado de la clave p�blica fallido: %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "descifrado correcto\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATENCI�N: �el mensaje cifrado ha sido manipulado!\n"
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "descifrado fallido: %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: el remitente solicit� \"s�lo-para-tus-ojos\"\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nombre fichero original='%.*s'\n"
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "no se han encontrados datos OpenPGP v�lidos\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr ""
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "suprimida la verificaci�n de la firma\n"
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Firma creada %.*s usando identificativo de clave %s %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "Firma INCORRECTA de \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Firma correcta de \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr "tambi�n conocido como \""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposible comprobar la firma: %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "firma viejo estilo (PGP 2.x)\n"
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquete ra�z no v�lido detectado en proc_tree()\n"
@@ -2415,12 +2426,12 @@ msgstr ""
"este algoritmo de cifrado est� en desuso, considere el uso de uno m�s "
"est�ndar.\n"
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "no puedo manejar el algoritmo de clave p�blica %d\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "el subpaquete de tipo %d tiene el bit cr�tico activado\n"
@@ -2445,6 +2456,11 @@ msgstr "clave %2$s de %1$u bits, ID %3$08lX, creada el %4$s"
msgid " (main key ID %08lX)"
msgstr "(ID clave primaria %08lX)"
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "imposible hacer esto en modo de proceso por lotes\n"
+
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Introduzca contrase�a: "
@@ -2758,231 +2774,231 @@ msgstr "clave %08lX: clave secreta sin clave p�blica - ignorada\n"
msgid "key %08lX: secret and public key don't match\n"
msgstr "clave %08lX: las claves p�blica y secreta no se corresponden\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "clave %08lX: imposible incluirla en la base de datos de confianza\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "clave %08lX: petici�n de registro fallida\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "clave %08lX: ya est� en la tabla de confianza\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "clave %08lX: aceptada como clave de confianza.\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "enum_secret_keys fallido: %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "tdbio_search_dir fallida: %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "clave %08lX.%lu: buena uni�n de subclave\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "clave %08lX.%lu: uni�n de subclave no v�lida\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "clave %08lX.%lu: revocaci�n de clave v�lida\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "clave %08lX.%lu: revocaci�n de clave no v�lida: %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "clave %08lX.%lu: revocaci�n de subclave v�lida\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Autofirma buena"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Autofirma no v�lida"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"Revocaci�n v�lida de identificativo de usuario ignorada debido a una "
"autofirma m�s reciente\n"
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "Revocaci�n identificativo de usuario v�lida.\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "Revocaci�n identificativo de usuario no v�lida."
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "Revocaci�n de certificado v�lida"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Certificado bueno"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "Certificado de revocaci�n incorrecto"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Certificado incorrecto"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "registro de firma %lu[%d] apunta al registro equivocado.\n"
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "certificado duplicado - eliminado"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir fallida: %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: inserci�n fallida: %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: inserci�n fallida: %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: insertada\n"
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "error buscando registro de directorio: %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "se han procesado %lu claves\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu claves con errores\n"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu claves insertadas\n"
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "enumeraci�n bloques de clave fallido: %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu: registro de directiorio sin clave - ignorado\n"
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu claves ignoradas\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu claves actualizadas\n"
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Oh oh, no hay claves\n"
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Oh oh, no hay identificativos de usuario\n"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: b�squeda registro directorio fallida: %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "clave %08lX: inserci�n del registro de confianza fallida: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "clave %08lX.%lu: incluida en la base de datos de confianza\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"clave %08lX.%lu: creada en el futuro (salto en el tiempo o\n"
"problemas con el reloj)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "clave %08lX.%lu: caducada el %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "clave %08lX.%lu: comprobaci�n de confianza fallida: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "usuario '%s' no encontrado: %s\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "problema buscando '%s' en la tabla de confianza: %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "usuario '%s' no est� en la tabla de confianza - insertando\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "fallo al poner '%s' en la tabla de confianza: %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr "ATENC�ON: todav�a no puedo tratar registros de preferencias largos\n"
diff --git a/po/fr.po b/po/fr.po
index f626738de..161dd139f 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 0.9.7\n"
-"POT-Creation-Date: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+0200\n"
"PO-Revision-Date: 1999-05-24 21:48+02:00\n"
"Last-Translator: Ga�l Qu�ri <[email protected]>\n"
"Language-Team: French <[email protected]>\n"
@@ -276,7 +276,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:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -284,132 +284,132 @@ msgstr ""
"@Commandes:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
msgid "|[file]|make a signature"
msgstr "|[fichier]|faire une signature"
-#: g10/g10.c:179
+#: g10/g10.c:180
msgid "|[file]|make a clear text signature"
msgstr "|[fichier]|faire une signature en texte clair"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "faire une signature d�tach�e"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "chiffrer les donn�es"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "chiffrement sym�trique seulement"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "pas d'action"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "d�chiffrer les donn�es (d�faut)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "v�rifier une signature"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "lister les cl�s"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "lister les cl�s et les signatures"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "v�rifier les signatures des cl�s"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "lister les cl�s et les empreintes"
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "lister les cl�s secr�tes"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "g�n�rer une nouvelle paire de cl�s"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "enlever la cl� du porte-cl�s public"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "signer ou �diter une cl�"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "g�n�rer un certificat de r�vocation"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "exporter les cl�s"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr "exporter les cl�s vers un serveur de cl�s"
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr "importer les cl�s d'un serveur de cl�s"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "importer/fusionner les cl�s"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "ne lister que les paquets"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "export the ownertrust values"
msgstr "exporter les indices de confiance"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "import ownertrust values"
msgstr "importer les indices de confiance"
#
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "|[NAMES]|update the trust database"
msgstr "|[NOMS]|mettre la base de confiance � jour"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMS]|v�rifier la base de confiance"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr "r�parer une base de confiance corrompue"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "Enlever l'armure d'un fichier ou de stdin"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "Mettre une armure � un fichier ou � stdin"
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|alg. [fich.]|indiquer les fonctions de hachage"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "�crire toutes les fonctions de hachage"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -419,162 +419,162 @@ msgstr ""
"Options:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "cr�er une sortie ascii avec armure"
-#: g10/g10.c:225
+#: g10/g10.c:226
msgid "|NAME|encrypt for NAME"
msgstr "|NOM|chiffrer pour NOM"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr "utiliser ce nom pour signer ou d�chiffrer"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "|N|niveau de compression N (0 d�sactive)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "utiliser le mode texte canonique"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "utiliser comme fichier de sortie"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "bavard"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr "devenir beaucoup plus silencieux"
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr ""
#
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "force v3 signatures"
msgstr "forcer les signatures en v3"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "always use a MDC for encryption"
msgstr "toujours utiliser un sceau pour le chiffrement"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "ne rien changer"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "mode automatique : ne jamais rien demander"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "r�pondre oui � la plupart des questions"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "r�pondre non � la plupart des questions"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "ajouter ce porte-cl�s � la liste des porte-cl�s"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "ajouter ce porte-cl�s secret � la liste"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|NOM|utiliser NOM comme cl� secr�te par d�faut"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|H�TE|utiliser ce serveur pour chercher des cl�s"
-#: g10/g10.c:248
+#: g10/g10.c:249
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOM|le terminal utilise la table de caract�res NOM"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "lire les options du fichier"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "choisir les attributs de d�boguage"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "permettre un d�boguage complet"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr "|FD|�crire l'�tat sur ce descripteur"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "ne pas �crire de paquets de commentaire"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "nombre de signatures compl�tes requises (1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "nombre de signatures marginales requises (3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
msgid "|FILE|load extension module FILE"
msgstr "|FICH|charger le module d'extension FICH"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "imiter le mode d�crit dans la RFC1991"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
# FIXMOI : faudra trouver mieux ...
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|use passphrase mode N"
msgstr "|N|utiliser le mode de codage des mots de passe N"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NOM|utiliser le hachage NOM pour les mots de passe"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NOM|utiliser le chiffre NOM pour les mots de passe"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOM|utiliser l'algorithme de chiffrement NOM"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOM|utiliser la fonction de hachage NOM"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|utiliser l'algorithme de compression N"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "supprimer l'identification des paquets chiffr�s"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr ""
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid ""
"@\n"
"Examples:\n"
@@ -594,15 +594,15 @@ msgstr ""
" --list-keys [utilisateur] montrer les cl�s\n"
" --fingerprint [utilisateur] montrer les empreintes\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Rapporter toutes anomalies � <[email protected]>.\n"
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Utilisation: gpg [options] [fichiers] (-h pour l'aide)"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -612,7 +612,7 @@ msgstr ""
"signer, v�rifier, chiffer ou d�chiffrer\n"
"l'op�ration par d�faut d�pend des donn�es entr�es\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -620,169 +620,169 @@ msgstr ""
"\n"
"Algorithmes support�s:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "utilisation: gpg [options] "
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "commandes en conflit\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, 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:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "fichier d'options `%s' : %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "lire les options de `%s'\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, 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:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "l'algorithme de chiffrement s�lectionn� est invalide\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "la fonction de hachage s�lectionn�e est invalide\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr ""
-#: g10/g10.c:858
+#: g10/g10.c:877
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "l'algorithme de compression doit faire partie de l'�chelle %d..%d\n"
-#: g10/g10.c:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "� completes-needed � doit �tre sup�rieur � 0\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "� marginals-needed � doit �tre sup�rieur � 1\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
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:867
+#: g10/g10.c:886
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:871
+#: g10/g10.c:890
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "mode S2K invalide ; doit �tre 0, 1 ou 3\n"
-#: g10/g10.c:948
+#: g10/g10.c:967
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "n'a pas pu initialiser la base de confiance : %s\n"
-#: g10/g10.c:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [nom du fichier]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [nom du fichier]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [nom du fichier]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [nom du fichier]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nom du fichier]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [nom du fichier]"
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [nom du fichier]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
msgid "--edit-key username [commands]"
msgstr "--edit-key utilisateur [commandes]"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key utilisateur"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key utilisateur"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "ne peut ouvrir %s: %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [utilisateur] [porte-cl�s]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "suppression d'armure non r�ussie : %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "construction d'armure non r�ussie : %s \n"
-#: g10/g10.c:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algorithme de hachage `%s' invalide\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[nom du fichier]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr "Continuez et tapez votre message...\n"
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "ne peut ouvrir `%s'\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
-#: g10/g10.c:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
-#: g10/g10.c:1478
+#: g10/g10.c:1505
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
-#: g10/g10.c:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr ""
@@ -1504,7 +1504,7 @@ msgstr "impossible d'ouvrir `%s': %s\n"
msgid "skipping block of type %d\n"
msgstr "ne prend pas en compte le bloc de type %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "%lu cl�s trait�es jusqu'ici\n"
@@ -2297,91 +2297,102 @@ msgstr "Faut-il vraiment g�n�rer les certificats de r�vocation ? (o/N)"
msgid "no secret key\n"
msgstr "pas de cl� secr�te\n"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "la cl� publique est %08lX\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "donn�es chiffr�es avec la cl� publique : bonne cl� de chiffrement\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "cl� de %u bits %s, ID %08lX, cr��e le %s"
+
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr "Signature faite %.*s avec une cl� %s ID %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "la cl� secr�te n'est pas disponible"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "le d�chiffrement de la cl� publique a �chou� : %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "le d�chiffrement a r�ussi\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATTENTION: le message chiffr� a �t� manipul� !\n"
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "le d�chiffrement a �chou� : %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTE : l'exp�diteur a demand� � pour vos yeux seulement �\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nom de fichier original : '%.*s'\n"
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "aucune donn�e OpenPGP valide n'a �t� trouv�e.\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr ""
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "v�rification de signature supprim�e\n"
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Signature faite %.*s avec une cl� %s ID %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "MAUVAISE signature de \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Bonne signature de \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Ne peut v�rifier la signature : %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "signature d'un ancien style (PGP 2.x)\n"
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquet racine invalide d�tect� dans proc_tree()\n"
@@ -2412,12 +2423,12 @@ msgstr ""
"Cet algorithme de chiffrement est d�conseill� ; utilisez-en un\n"
"plus standard !\n"
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "ne peut g�rer l'algorithme � cl� publique %d\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "un sous-paquet de type %d poss�de un bit critique\n"
@@ -2442,6 +2453,11 @@ msgstr "cl� de %u bits %s, ID %08lX, cr��e le %s"
msgid " (main key ID %08lX)"
msgstr " (ID cl� principale %08lX)"
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "impossible de faire cela en mode automatique\n"
+
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Entrez le mot de passe : "
@@ -2768,234 +2784,234 @@ msgstr "cl� %08lX : cl� secr�te sans cl� publique - non prise en compte\n"
msgid "key %08lX: secret and public key don't match\n"
msgstr "cl� %08lX : les cl�s secr�te et publique ne correspondent pas\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "cl� %08lX : ne peut �tre mise dans la base de confiance\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "cl� %08lX : l'enregistrement de requ�te a �chou�\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "cl� %08lX : d�j� dans la table des cl�s certifi�es\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "cl� %08lX : accept�e comme cl� certifi�e.\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "l'�num�ration des cl�s secr�tes a �chou� : %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "tdbio_search_dir a �chou� : %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "cl� %08lX.%lu : bonne liaison avec la sous-cl�\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "cl� %08lX.%lu : liaison avec la sous-cl� invalide : %s\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "cl� %08lX.%lu : r�vocation de cl� valide\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "cl� %08lX.%lu : r�vocation de sous-cl� invalide : %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "cl� %08lX.%lu : r�vocation de sous-cl� valide\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Bonne auto-signature"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Auto-signature invalide"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"La r�vocation valide de nom d'utilisateur a �t� ignor�e car l'auto-\n"
"signature est plus r�cente\n"
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "R�vocation de nom d'utilisateur valide\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "R�vocation de nom d'utilisateur invalide"
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "Certificat de r�vocation valide"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Bon certificat"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "R�vocation de certificat invalide"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Certificat invalide"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr ""
"l'enregistrement de signature %lu[%d] pointe vers le mauvais\n"
"enregistrement de r�pertoire\n"
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "certificat dupliqu� - supprim�"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir a �chou� : %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ? : l'insertion a �chou� : %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu : l'insertion a �chou� : %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu : ins�r�\n"
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "%s : erreur pendant la lecture de l'enregistrement libre : %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "%lu cl�s trait�es\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu cl�s avec erreurs\n"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu cl�s ins�r�es\n"
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "l'�num�ration des blocs de cl�s a �chou� : %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu : enregistrement de r�pertoire sans cl� - ignor�\n"
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu cl�s ignor�es\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu cl�s mises � jour\n"
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Ooops, pas de cl�\n"
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Ooops, pas de nom d'utilisateur\n"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr ""
"check_trust : la recherche d'enregistrement de r�pertoire a �chou� : %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "cl� %08lX : l'insertion d'enregistrement de confiance a �chou� : %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "cl� %08lX.%lu : ins�r�e dans la base de confiance\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"cl� %08lX.%lu : cr��e dans le futur (voyage temporel ou\n"
"probl�me d'horloge)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "cl� %08lX.%lu : a expir� le %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "cl� %08lX.%lu : la v�rification de confiance a �chou�: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "l'utilisateur '%s' n'a pas �t� trouv� : %s\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "probl�me de recherche de '%s' dans la base de confiance : %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "l'utilisateur '%s' n'est pas dans la base de confiance - insertion\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "n'a pas pu ins�rer '%s' dans la base de confiance : %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr ""
"ATTENTION : les enregistrements de pr�f�rences longs ne sont pas encore\n"
diff --git a/po/it.po b/po/it.po
index a6f05203f..125b19609 100644
--- a/po/it.po
+++ b/po/it.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-0.9.7\n"
-"POT-Creation-Date: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+0200\n"
"PO-Revision-Date: 1999-06-28 19:49+02:00\n"
"Last-Translator: Marco d'Itri <[email protected]>\n"
"Language-Team: Italian <[email protected]>\n"
@@ -271,7 +271,7 @@ msgstr ""
"altra cosa per dare all'OS la possibilit� di raccogliere altra entropia!\n"
"(Servono ancora %d altri byte)\n"
-#: g10/g10.c:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -279,131 +279,131 @@ msgstr ""
"@Comandi:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
msgid "|[file]|make a signature"
msgstr "|[file]|fai una firma"
-#: g10/g10.c:179
+#: g10/g10.c:180
msgid "|[file]|make a clear text signature"
msgstr "|[file]|fai una firma mantenendo il testo in chiaro"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "fai una firma separata"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "cifra dati"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "cifra solo con un cifrario simmetrico"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "immagazzina soltanto"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "decifra dati (predefinito)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "verifica una firma"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "elenca le chiavi"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "elenca le chiavi e le firme"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "controlla le firme delle chiavi"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "elenca le chiavi e le impronte digitali"
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "elenca le chiavi segrete"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "genera una nuova coppia di chiavi"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "rimuove una chiave dal portachiavi pubblico"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "firma o modifica una chiave"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "genera un certificato di revoca"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "esporta delle chiavi"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr "esporta le chiavi a un key server"
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr "importa le chiavi da un key server"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "importa/aggiungi delle chiavi"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "elenca solo la sequenza dei pacchetti"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "export the ownertrust values"
msgstr "esporta i valori di fiducia"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "import ownertrust values"
msgstr "importa i valori di fiducia"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "|[NAMES]|update the trust database"
msgstr "|[NOMI]|controlla il database della fiducia"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMI]|controlla il database della fiducia"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr "ripara un database della fiducia rovinato"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "rimuovi l'armatura a un file o a stdin"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "crea l'armatura a un file o a stdin"
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|algo [files]|stampa tutti i message digests"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "stampa tutti i message digests"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -413,160 +413,160 @@ msgstr ""
"Opzioni:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "crea un output ascii con armatura"
-#: g10/g10.c:225
+#: g10/g10.c:226
msgid "|NAME|encrypt for NAME"
msgstr "|NOME|cifra per NOME"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr "usa questo user-id per firmare o decifrare"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "|N|imposta il livello di compressione (0 disabilita)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "usa il modo testo canonico"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "usa come file di output"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "prolisso"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr "meno prolisso"
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr "non usa per niente il terminale"
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "force v3 signatures"
msgstr "forza l'uso di firme v3"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "always use a MDC for encryption"
msgstr "usa sempre un MDC per cifrare"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "non fa cambiamenti"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "modo batch: non fare domande"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "assumi \"s�\" a quasi tutte le domande"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "assumi \"no\" a quasi tutte le domande"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "aggiungi questo portachiavi alla lista"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "aggiungi questo portachiavi segreto alla lista"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|NAME|usa NAME come chiave segreta predefinita"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|cerca le chiavi in questo keyserver"
-#: g10/g10.c:248
+#: g10/g10.c:249
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAME|imposta il set di caratteri del terminale NOME"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "leggi le opzioni dal file"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "imposta i flag di debugging"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "abilita il debugging completo"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr "|FD|scrivi le informazioni di stato su questo fd"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "non scrivere pacchetti di commento"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "(predefinito � 1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "(predefinito � 3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
msgid "|FILE|load extension module FILE"
msgstr "|FILE|carica il modulo di estensione FILE"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "emula il modo descritto in RFC 1991"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "imposta per OpenPGP le opzioni di pacchetto, cifrario e digest"
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|use passphrase mode N"
msgstr "|N|usa il modo N per la passphrase"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAME|usa l'algoritmo di message digest NOME"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAME|usa l'alg. di cifratura NOME per le passphrase"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAME|usa l'algoritmo di cifratura NOME"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAME|usa l'algoritmo di message digest NOME"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|usa l'algoritmo di compressione N"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "elimina il campo keyid dei pacchetti cifrati"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr "|NOME=VALORE|usa questi dati per una nota"
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid ""
"@\n"
"Examples:\n"
@@ -586,15 +586,15 @@ msgstr ""
" --list-keys [nomi] mostra le chiavi\n"
" --fingerprint [nomi] mostra le impronte digitali\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Per favore segnala i bug a <[email protected]>.\n"
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [opzioni] [file] (-h per l'aiuto)"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -604,7 +604,7 @@ msgstr ""
"firma, controlla, cifra o decifra\n"
"l'operazione predefinita dipende dai dati di input\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -612,161 +612,161 @@ msgstr ""
"\n"
"Algoritmi gestiti:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "uso: gpg [options] "
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "comandi in conflitto\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: manca il file con le opzioni predefinite `%s'\n"
-#: g10/g10.c:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "file con le opzioni `%s': %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "lettura delle opzioni da `%s'\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s non � un set di caratteri valido\n"
-#: g10/g10.c:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "l'algoritmo di cifratura selezionato non � valido\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "l'algoritmo di digest selezionato non � valido\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr "L'URL della policy indicato non � valido\n"
-#: g10/g10.c:858
+#: g10/g10.c:877
#, 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:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed deve essere maggiore di 0\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed deve essere maggiore di 1\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
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:867
+#: g10/g10.c:886
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:871
+#: g10/g10.c:890
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:948
+#: g10/g10.c:967
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "inizializzazione del trustdb fallita: %s\n"
-#: g10/g10.c:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [nomefile]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [nomefile]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [nomefile]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [nomefile]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nomefile]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [nomefile]"
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [nomefile]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
msgid "--edit-key username [commands]"
msgstr "--edit-key nomeutente [comandi]"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key nomeutente"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key nomeutente"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [userid] [portachiavi]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "rimozione dell'armatura fallita: %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "creazione dell'armatura fallita: %s\n"
-#: g10/g10.c:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo di hash non valido `%s'\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[nomefile]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr "Vai avanti e scrivi il messaggio...\n"
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "impossibile aprire `%s'\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
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:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -774,11 +774,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:1478
+#: g10/g10.c:1505
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:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr "il valore di una nota non deve usare caratteri di controllo\n"
@@ -1488,7 +1488,7 @@ msgstr "impossibile aprire `%s': %s\n"
msgid "skipping block of type %d\n"
msgstr "salto un blocco di tipo %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "Per ora sono state esaminate %lu chiavi\n"
@@ -2273,90 +2273,101 @@ msgstr "Creare davvero i certificati di revoca? (s/N)"
msgid "no secret key\n"
msgstr "manca la chiave segreta\n"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "la chiave pubblica � %08lX\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "dati cifrati con la chiave pubblica: DEK corretto\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "chiave %2$s di %1$u bit, ID %3$08lX, creata il %4$s"
+
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr "Firma fatta %.*s usando la chiave %s con ID %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "la chiave segreta non � disponibile"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "decifratura della chiave pubblica fallita: %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "decifratura corretta\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATTENZIONE: il messaggio cifrato � stato manipolato!\n"
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "decifratura fallita: %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: il mittente ha richiesto \"solo-per-i-tuoi-occhi\"\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome del file originale='%.*s'\n"
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
msgid "WARNING: invalid notation data found\n"
msgstr "ATTENZIONE: trovati dati di una nota non validi\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr "Nota: "
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr "Policy: "
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "verifica della firma soppressa\n"
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Firma fatta %.*s usando la chiave %s con ID %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "Firma NON corretta da \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Firma valida da \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr " anche noto come \""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Impossibile controllare la firma: %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "firma vecchio stile (PGP 2.x)\n"
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "individuato un pacchetto radice non valido in proc_tree()\n"
@@ -2386,12 +2397,12 @@ msgstr ""
msgid "this cipher algorithm is depreciated; please use a more standard one!\n"
msgstr "questo algoritmo di cifratura � deprecato; usatene uno pi� standard!\n"
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "impossibile gestire l'algoritmo a chiave pubblica %d\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "il sottopacchetto di tipo %d ha un bit critico impostato\n"
@@ -2416,6 +2427,11 @@ msgstr "chiave %2$s di %1$u bit, ID %3$08lX, creata il %4$s"
msgid " (main key ID %08lX)"
msgstr " (key ID principale %08lX)"
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "impossibile fare questo in batch mode\n"
+
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Inserisci la passphrase: "
@@ -2731,230 +2747,230 @@ msgstr "chiave %08lX: chiave segreta senza chiave pubblica - saltata\n"
msgid "key %08lX: secret and public key don't match\n"
msgstr "chiave %08lX: le chiavi segreta e pubblica non corrispondono\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "chiave %08lX: impossibile metterla nel trustdb\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "chiave %08lX: richiesta del record fallita\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "chiave %08lX: gi� nella tabella delle chiavi affidabili\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "chiave %08lX: accettata come chiave affidabile\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "enumerate secret keys fallito: %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "tdbio_search_dir fallita: %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "chiave %08lX.%lu: Legame con la subchiave corretto\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "chiave %08lX.%lu: Legame con la subchiave non valido: %s\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "chiave %08lX.%lu: Revoca della chiave valida\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "chiave %08lX.%lu: Revoca della chiave non valida: %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "chiave %08lX.%lu: Revoca della subchiave valida\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Autofirma corretta"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Autofirma non valida"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"Evitata la revoca dell'user ID valida a causa di una autofirma pi� recente\n"
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "Revoca dell'user ID valida\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "Revoca dell'user ID non valida"
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "Revoca del certificato valida"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Certificato corretto"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "Certificato di revoca non valido"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Certificato non valido"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "il sig recor di %lu[%d] punta al record sbagliato.\n"
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "certificato doppio - cancellato"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir fallita: %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: inserimento fallito: %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: inserimento fallito: %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: inserito\n"
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "%s: errore durante la lettura del record libero: %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "%lu chiavi esaminate\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu chiavi con errori\n"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu chiavi inserite\n"
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "enumerate keyblocks fallito: %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu: dir record senza chiave - saltato\n"
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu chiavi saltate\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu chiavi aggiornate\n"
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Ooops, mancano le chiavi\n"
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Ooops, mancano gli user id\n"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: ricerca del dir record fallita: %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "chiave %08lX: inserimento del record della fiducia fallito: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "chiave %08lX.%lu: inserita nel trustdb\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"chiave %08lX.%lu: creata nel futuro (salto nel tempo o problema\n"
"con l'orologio)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "chiave %08lX.%lu: scaduta il %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "chiave %08lX.%lu: controllo della fiducia fallito: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "utente `%s' non trovato: %s\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "problema cercando `%s' nel trustdb: %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "l'utente `%s' non � nel trustdb - viene inserito\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "impossibile mettere `%s' nel trustdb: %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr "ATTENZIONE: non � ancora possibile gestire record pref lunghi\n"
diff --git a/po/pl.po b/po/pl.po
index 8378d3050..38cf53b1a 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-0.9.7\n"
-"POT-Creation-Date: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+0200\n"
"PO-Revision-Date: 1999-05-30 19:08+02:00\n"
"Last-Translator: Janusz A. Urbanowicz <[email protected]>\n"
"Language-Team: Polish <[email protected]>\n"
@@ -285,7 +285,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:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -293,131 +293,131 @@ msgstr ""
"@Polecenia:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
msgid "|[file]|make a signature"
msgstr "|[plik]|z�o�enie podpisu"
-#: g10/g10.c:179
+#: g10/g10.c:180
msgid "|[file]|make a clear text signature"
msgstr "|[plik]|z�o�enie podpisu na czytelnym dokumencie"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "sporz�dzenie podpisu oddzielonego od dokumentu"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "szyfrowanie danych"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "szyfrowanie tylko szyfrem symetrycznym"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "tylko zapis"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "odszyfrowywanie danych (domy�lnie)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "sprawdzenie podpisu"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "lista kluczy"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "lista kluczy i podpis�w"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "sprawdzenie podpis�w kluczy"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "lista kluczy i ich odcisk�w"
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "lista kluczy tajnych"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "generacja nowej pary klucza"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "usuni�cie klucza ze zbioru kluczy publicznych"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "podpisanie lub modyfikacja klucza"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "generacja certyfikatu uniewa�nienia klucza"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "eksport kluczy do pliku"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr "eksport kluczy do serwera kluczy"
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr "import kluczy z serwera kluczy"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "import/do��czenie kluczy"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "wypisane sekwencji pakiet�w"
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "export the ownertrust values"
msgstr "eksport warto�ci zaufania"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "import ownertrust values"
msgstr "wczytanie warto��i zaufania"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "|[NAMES]|update the trust database"
msgstr "|[NAZWY]|naniesienie poprawek do bazy zaufania"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[NAZWY]|sprawdzenie bazy zaufania"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr "naprawa uszkodzonej Bazy Zaufania"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "zdj�cie opakowania ASCII pliku lub potoku"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "opakowanie ASCII pliku lub potoku"
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|algo [pliki]|skr�ty wiadomo�ci"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "wszystkie skr�ty wiadomo�ci"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -427,160 +427,160 @@ msgstr ""
"Opcje:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "plik wynikowy w opakowaniu ASCII"
-#: g10/g10.c:225
+#: g10/g10.c:226
msgid "|NAME|encrypt for NAME"
msgstr "|NAZWA|szyfrowanie dla odbiorcy NAZWA"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr "identyfikator do podpisania lub odszyfrowania"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "|N|poziom kompresji N (0 - brak)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "kanoniczny format tekstowy"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "plik wyj�ciowy"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "z informacjami dodatkowymi"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr "mniej komunikat�ww"
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr ""
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "force v3 signatures"
msgstr "wymuszenie trzeciej wersji formatu podpis�w"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "always use a MDC for encryption"
msgstr "do szyfrowania b�dzie u�ywany MDC"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "pozostawienie bez zmian"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "tryb wsadowy: �adnych pyta�"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "automatyczna odpowied� tak na wi�kszo�� pyta�"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "automatyczna odpowied� nie na wi�kszo�� pyta�"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "doda� zbi�r kluczy do listy u�ywanych"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "doda� zbi�r kluczy tajnych do listy"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|NAZWA|u�ycie NAZWA jako domy�lnego klucza tajnego"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|serwer kluczy w kt�rym b�d� poszukiwane"
-#: g10/g10.c:248
+#: g10/g10.c:249
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAZWA|zestaw znak�w terminala NAZWA"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "wczytanie opcji z pliku"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "ustawienie opcji �ledzenia wykonania programu"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "umo�liwienie pe�nego �ledzenia programu"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr "|FD|zapisa� opis stanu do FD"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "nie zapisywa� pakiet�w z komentarzem"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "(domy�lnie 1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "(domy�lnie 3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
msgid "|FILE|load extension module FILE"
msgstr "|PLIK|�adowanie modu�u rozszerzenia z PLIK"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "emulacja trybu opisanego w RFC1991"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|use passphrase mode N"
msgstr "|N|N-ty tryb wprowadzania wyra�enia przej�ciowego"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|ALG|algorytm obliczania skr�t�w wiadomo�ci ALG"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|ALG|algorytmu szyfruj�cy ALG dla has�a"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAZWA|algorytm szyfruj�cy NAZWA"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAZWA|algorytm obliczania skr�t�w wiadomo�ci NAZWA"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|algorytm kompresji N"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "usuni�cie identyfikator�w kluczy z pakiet�w"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr ""
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid ""
"@\n"
"Examples:\n"
@@ -601,15 +601,15 @@ msgstr ""
" --list-keys [nazwy] pokazuje klucze\n"
" --fingerprint [nazwy] pokazuje odciski kluczy\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr "B��dy prosimy zg�asza� na adres <[email protected]>.\n"
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Wywo�anie: gpg [opcje] [pliki] (-h podaje pomoc)"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -619,7 +619,7 @@ msgstr ""
"podpisywanie, sprawdzanie podpis�w, szyfrowanie, deszyfrowanie\n"
"domy�lnie wykonywana operacja zale�y od danych wej�ciowych\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -627,169 +627,169 @@ msgstr ""
"\n"
"Obs�ugiwane algorytmy:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "wywo�anie: gpg [opcje]"
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "sprzeczne polecenia\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "UWAGA: brak domy�lnego pliku opcji '%s'\n"
-#: g10/g10.c:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "plik opcji '%s': %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "odczyt opcji z '%s'\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s nie jest poprawn� nazw� zestawu znak�w\n"
-#: g10/g10.c:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "wybrany algorytm szyfruj�cy jest niepoprawny\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "wybrany algorytm geenracji skr�t�w wiadomo�ci jest niepoprawny\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr ""
-#: g10/g10.c:858
+#: g10/g10.c:877
#, 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:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "warto�� completes-needed musi by� wi�ksza od 0\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "warto�� marginals-needed musi by� wi�ksza od 1\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
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:867
+#: g10/g10.c:886
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "UWAGA: prosty tryb S2K (0) jest stanowczo odradzany\n"
-#: g10/g10.c:871
+#: g10/g10.c:890
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:948
+#: g10/g10.c:967
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "Inicjowanie Bazy Zaufania nie powiod�o si�: %s\n"
-#: g10/g10.c:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [plik]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [plik]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [plik]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [plik]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [plik]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [plik]\""
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [plik]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
msgid "--edit-key username [commands]"
msgstr "--edit-key nazwa u�ytkownika [polecenia]"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key nazwa u�ytkownika"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key nazwa u�ytkownika"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "nie mog� otworzy� %s: %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [identyfikator] [zbi�r kluczy]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "usuni�cie opakowania ASCII nie powiod�o si�: %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "opakowywanie ASCII nie powiod�o si�: %s\n"
-#: g10/g10.c:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "niew�a�ciwy algorytm skr�tu '%s'\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[nazwa pliku]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr "Wpisz tutaj swoj� wiadomo�� ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "nie mog� otworzy� '%s'\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
-#: g10/g10.c:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
-#: g10/g10.c:1478
+#: g10/g10.c:1505
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
-#: g10/g10.c:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr ""
@@ -1510,7 +1510,7 @@ msgstr "nie mo�na otworzy� %s: %s\n"
msgid "skipping block of type %d\n"
msgstr "pomijam blok typu %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "%lu kluczy przetworzonych do tej chwili\n"
@@ -2308,64 +2308,77 @@ msgstr "Na pewno utworzy� certyfikaty uniewa�nienia ? (t/N)"
msgid "no secret key\n"
msgstr "brak klucza prywatnego\n"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "klucz publiczny %08lX\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "dane zaszyfrowane kluczem publicznym: poprawny klucz sesyjny\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "d�ugo�� %u bit�w, typ %s, klucz %08lX, stworzony %s"
+
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr ""
+"Podpis z�o�ony %.*s za pomoc� %s,\n"
+"z u�yciem klucza o identyfikatorze %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "klucz tajny jest niedost�pny"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "b��d odszyfrowywania kluczem publicznym: %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "odszyfrowane poprawnie\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "OSTRZE�ENIE: zaszyfrowana wiadomo�� by�a manipulowana!\n"
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "b��d odszyfrowywania: %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "UWAGA: nadawca zaznaczy� �e wiadomo�� nie powinna by� zapisywana\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "pierwotna nazwa pliku='%.*s'\n"
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "nie odnaleziono poprawnych danych w formacie OpenPGP.\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr ""
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "wymuszono pomini�cie sprawdzenia podpisu\n"
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr ""
@@ -2373,28 +2386,28 @@ msgstr ""
"z u�yciem klucza o identyfikatorze %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "NIEPOPRAWNY podpis z�o�ony przez \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Poprawny podpis z�o�ony przez \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nie mog� sprawdzi� podpisu: %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "podpis starego typu (PGP 2.x)\n"
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "wykryto niepoprawny pakiet pierwotny w proc_tree()\n"
@@ -2425,12 +2438,12 @@ msgstr ""
"ten algorytm szyfruj�cy jest odradzanym prosz� u�ywa� bardziej "
"standardowych!\n"
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "algorytm klucza publicznego niemo�liwy do obs�u�enia: %d\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "podpakiet typu %d ma ustawiony krytyczny bit\n"
@@ -2455,6 +2468,11 @@ msgstr "d�ugo�� %u bit�w, typ %s, klucz %08lX, stworzony %s"
msgid " (main key ID %08lX)"
msgstr " (g��wny ID klucza %08lX)"
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "nie dzia�a w trybie wsadowym\n"
+
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Wyra�enie przej�ciowe: "
@@ -2772,231 +2790,231 @@ msgstr "klucz %08lX: klucz tajny bez klucza jawnego - pomini�ty\n"
msgid "key %08lX: secret and public key don't match\n"
msgstr "klucz %08lX: klucz tajny nie pasuje do klucza jawnego\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "klucz %08lX: wpisanie do bazy zaufania niemo�liwe\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "klucz %08lX: wyszukanie zapisu nie powiod�o si�\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "klucz %08lX: ju� znajduje si� w tablicy kluczy zaufanych\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "Klucz %08lX: zaakceptowany jako klucz zaufany.\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "wyliczenie kluczy tajnych nie powiod�o si� %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "Procedura tdbio_search_dir nie powiod�a si�: %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "klucz %08lX.%lu Dobre dowi�zanie podklucza\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "klucz %08lX.%lu: Niepoprawne dowi�zanie podklucza %s\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "klucz %08lX.%lu: Poprawne uniewa�nienie klucza\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "klucz %08lX.%lu: Niew�a�ciwe uniewa�nienie klucza: %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "klucz %08lX.%lu: Poprawne uniewa�nienie podklucza\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Poprawny podpis klucza nim samym"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Niepoprawny podpis klucza nim samym"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"Poprawne uniewa�nienie identyfikatora u�ytkownika pomini�te z powodu \n"
"nowszego podpisu tym samym kluczem\n"
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "Poprawne uniewa�nienie identyfikatora u�ytkownika\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "Niepoprawne uniewa�nienie identyfikatora u�ytkownika"
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "Poprawne uniewa�nienie certyfikatu"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Poprawny certyfikat"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "Niepoprawne uniewa�nienie certyfikatu"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Niepoprawny certyfikat"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "zapis o podpisach %lu[%d] wskazuje na z�y wpis.\n"
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "podw�jny certyfikat - usuni�ty"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "Procedura tdbio_search_dir nie powiod�a si�: %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: wpisanie nie powiod�o si�: %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: wpisanie nie powiod�o si�: %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: wpisany\n"
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "b��d podczas poszukiwania wpisu katalogowego: %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "%lu kluczy przetworzonych\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu kluczy z b��dami\n"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu kluczy wpisanych\n"
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "wyliczenie blok�w kluczy nie powiod�o si�: %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu: wpis katalogowy bez bloku klucza - pomini�ty\n"
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu kluczy pomini�tych\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu kluczy uaktualnionych\n"
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Oops, brak kluczy\n"
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Oops, brak identyfikator�w u�ytkownik�w\n"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: poszukiwanie wpisu katalogowego nie powiod�o si�: %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "klucz %08lX: wprowadzenie wpisu zaufania nie powiod�o si�: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "Klucz %08lX.%lu: wprowadzony do bazy zaufania\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"Klucz %08lX.%lu: stworzony w przysz�o�ci (zaburzenia czasoprzestrzeni,\n"
"lub �le ustawiony zegar systemowy)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "klucz %08lX.%lu: okres wa�no�ci up�yn�� %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "klucz %08lX.%lu: b��d przy sprawdzaniu zaufania: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "u�ytkownik '%s' nie odnaleziony: %s\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "problem podczas szukania '%s' w bazie zaufania: %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "brak u�ytkownika '%s' w bazie zaufania - dodano\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "umieszczenie '%s' w Bazie Zaufania nie powiod�o si�: %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr "OSTRZE�ENIE: d�ugie wpisy ustawie� jeszcze nie s� obs�ugiwane.\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 18aa28769..7e615c97a 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"POT-Creation-Date: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+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"
@@ -285,7 +285,7 @@ msgstr ""
"para que o sistema possa coletar mais entropia!\n"
"(S�o necess�rios mais %d bytes)\n"
-#: g10/g10.c:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -293,134 +293,134 @@ msgstr ""
"@Comandos:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
msgid "|[file]|make a signature"
msgstr "|[arquivo]|faz uma assinatura"
-#: g10/g10.c:179
+#: g10/g10.c:180
msgid "|[file]|make a clear text signature"
msgstr "|[arquivo]|faz uma assinatura em texto puro"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "faz uma assinatura separada"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "criptografa dados"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "criptografa apenas com criptografia sim�trica"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "apenas armazena"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "descriptografa dados (padr�o)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "verifica uma assinatura"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "lista as chaves"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "lista as chaves e as assinaturas"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "confere as assinaturas das chaves"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "lista as chaves e as impress�es digitais"
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "lista as chaves secretas"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "gera um novo par de chaves"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "remove a chave do chaveiro p�blico"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "assina ou edita uma chave"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "gera um certificado de revoga��o"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "exporta as chaves"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr "exporta chaves para um servidor"
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr "importa chaves de um servidor"
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "importa/funde as chaves"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "lista apenas as seq��ncias de pacotes"
# ownertrust ???
-#: g10/g10.c:205
+#: g10/g10.c:206
msgid "export the ownertrust values"
msgstr "exporta os valores de confian�a"
-#: g10/g10.c:207
+#: g10/g10.c:208
msgid "import ownertrust values"
msgstr "importa os valores de confian�a"
-#: g10/g10.c:209
+#: g10/g10.c:210
msgid "|[NAMES]|update the trust database"
msgstr "|[NOMES]|atualiza o banco de dados de confiabilidade"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMES]|confere o banco de dados de confiabilidade"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr ""
"conserta um banco de dados de confiabilidade\n"
"danificado"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "Retira a armadura de um arquivo ou de \"stdin\""
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "Cria armadura para um arquivo ou \"stdin\""
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|algo [arquivos]|imprime \"digests\" de mensagens"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "imprime todos os \"digests\" de mensagens"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -430,168 +430,168 @@ msgstr ""
"Op��es:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "cria uma sa�da com armadura ascii"
-#: g10/g10.c:225
+#: g10/g10.c:226
msgid "|NAME|encrypt for NAME"
msgstr "|NOME|criptografa para NOME"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr ""
"usa este identificador de usu�rio para assinar\n"
"ou descriptografar"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "|N|estabelece n�vel de compress�o N (0 desabilita)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "usa modo de texto can�nico"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "usa como arquivo de sa�da"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "detalhado"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr "ser mais silencioso"
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr ""
-#: g10/g10.c:237
+#: g10/g10.c:238
msgid "force v3 signatures"
msgstr "for�a assinaturas v3"
-#: g10/g10.c:238
+#: g10/g10.c:239
msgid "always use a MDC for encryption"
msgstr "sempre usar um MDC para criptografar"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "n�o fazer altera��es"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "modo n�o-interativo: nunca perguntar"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "assumir sim para a maioria das perguntas"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "assumir n�o para a maioria das perguntas"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "adiciona este chaveiro � lista de chaveiros"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "adiciona este chaveiro secreto � lista"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|NOME|usa NOME como chave secreta padr�o"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|ENDERE�O|usa este servidor para buscar chaves"
-#: g10/g10.c:248
+#: g10/g10.c:249
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOME|define mapa de caracteres do terminal como NOME"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "l� op��es do arquivo"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "define par�metros de depura��o"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "habilita depura��o completa"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr ""
"|DA|escreve informa��es de status para o descritor\n"
"de arquivo DA"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "n�o escreve pacotes de coment�rio"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "(o padr�o � 1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "(o padr�o � 3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
msgid "|FILE|load extension module FILE"
msgstr "|ARQUIVO|carrega m�dulo de extens�o ARQUIVO"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "emula o modo descrito no RFC1991"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
-#: g10/g10.c:261
+#: g10/g10.c:262
msgid "|N|use passphrase mode N"
msgstr "|N|usa frase secreta modo N"
-#: g10/g10.c:263
+#: g10/g10.c:264
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr ""
"|NOME|usa algoritmo de \"digest\" de mensagens NOME para\n"
"frases secretas"
-#: g10/g10.c:265
+#: g10/g10.c:266
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr ""
"|NOME|usa algoritmo de criptografia NOME para\n"
"frases secretas"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOME|usa algoritmo de criptografia NOME"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOME|usa algoritmo de \"digest\" de mensagens NOME"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|usa algoritmo de compress�o N"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "elimina o campo keyid dos pacotes criptografados"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr ""
-#: g10/g10.c:272
+#: g10/g10.c:273
msgid ""
"@\n"
"Examples:\n"
@@ -611,16 +611,16 @@ msgstr ""
" --list-keys [nomes] mostra chaves\n"
" --fingerprint [nomes] mostra impress�es digitais\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Por favor comunique bugs para <[email protected]>.\n"
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [op��es] [arquivos] (-h para ajuda)"
# em cima, "check" est� como "conferir"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -630,7 +630,7 @@ msgstr ""
"assina, verifica, criptografa ou descriptografa\n"
"a opera��o padr�o depende dos dados de entrada\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -638,170 +638,170 @@ msgstr ""
"\n"
"Algoritmos suportados:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "uso: gpg [op��es] "
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "comandos conflitantes\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: arquivo de op��es padr�o `%s' inexistente\n"
-#: g10/g10.c:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "arquivo de op��es `%s': %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "lendo op��es de `%s'\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, 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:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "o algoritmo de criptografia selecionado n�o � v�lido\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "o algoritmo de \"digest\" selecionado n�o � v�lido\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr ""
-#: g10/g10.c:858
+#: g10/g10.c:877
#, 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:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed deve ser maior que 0\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed deve ser maior que 1\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
msgid "max-cert-depth must be in range 1 to 255\n"
msgstr "max-cert-depth deve estar na faixa 1 a 255\n"
-#: g10/g10.c:867
+#: g10/g10.c:886
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:871
+#: g10/g10.c:890
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:948
+#: g10/g10.c:967
#, 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:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [nome_do_arquivo]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [nome_do_arquivo]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [nome_do_arquivo]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [nome_do_arquivo]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nome_do_arquivo]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [nome_do_arquivo]"
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [nome_do_arquivo]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
msgid "--edit-key username [commands]"
msgstr "--edit-key nome_do_usu�rio [comandos]"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key nome_do_usu�rio"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key nome_do_usu�rio"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "imposs�vel abrir %s: %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [id_do_usu�rio] [chaveiro]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "retirada de armadura falhou: %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, 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:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de hash inv�lido `%s'\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[nome_do_arquivo]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr "V� em frente e digite sua mensagem ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "imposs�vel abrir `%s'\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
-#: g10/g10.c:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
-#: g10/g10.c:1478
+#: g10/g10.c:1505
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
-#: g10/g10.c:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr ""
@@ -1514,7 +1514,7 @@ msgstr "imposs�vel abrir `%s': %s\n"
msgid "skipping block of type %d\n"
msgstr "ignorando bloco do tipo %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "%lu chaves processadas at� agora\n"
@@ -2311,92 +2311,104 @@ msgstr "Realmente gerar os certificados de revoga��o? (s/N)"
msgid "no secret key\n"
msgstr "nenhuma chave secreta\n"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "a chave p�blica � %08lX\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "dados criptografados com chave p�blica: DEK v�lido\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "chave de %u-bit/%s, ID %08lX, criada em %s\n"
+
+# XXX Verificar
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr "Assinatura feita em %.*s usando %s, ID da chave %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "chave secreta n�o dispon�vel"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descriptografia de chave p�blica falhou: %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "descriptografia correta\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "CUIDADO: a mensagem criptografada foi manipulada!\n"
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "descriptografia falhou: %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: o remetente solicitou \"apenas-para-seus-olhos\"\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome de arquivo original='%.*s'\n"
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "nenhum dado OpenPGP v�lido encontrado.\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr ""
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "verifica��o de assinatura suprimida\n"
# XXX Verificar
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Assinatura feita em %.*s usando %s, ID da chave %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "Assinatura INCORRETA de \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Assinatura correta de \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr " ou \""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposs�vel verificar assinatura: %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "assinatura antiga (PGP2.x)\n"
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "pacote raiz inv�lido detectado em proc_tree()\n"
@@ -2427,12 +2439,12 @@ msgstr ""
"este algoritmo de criptografia � depreciado; por favor use algum\n"
"algoritmo padr�o!\n"
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "imposs�vel manipular algoritmo de chave p�blica %d\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "subpacote de tipo %d tem bit cr�tico ligado\n"
@@ -2457,6 +2469,11 @@ msgstr "chave de %u-bit/%s, ID %08lX, criada em %s\n"
msgid " (main key ID %08lX)"
msgstr " (ID principal da chave %08lX)"
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "imposs�vel fazer isso em modo n�o-interativo\n"
+
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Digite a frase secreta: "
@@ -2769,231 +2786,231 @@ msgstr "chave %08lX: chave secreta sem chave p�blica - ignorada\n"
msgid "key %08lX: secret and public key don't match\n"
msgstr "chave %08lX: chaves secreta e p�blica n�o s�o correspondentes\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr ""
"chave %08lX: imposs�vel coloc�-la no banco de dados de confiabilidade\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "chave %08lX: pedido de registro falhou\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "chave %08lX: j� est� na tabela de chaves confi�veis\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "chave %08lX: aceita como chave confi�vel.\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "enumera��o de chaves secretas falhou: %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "tdbio_search_dir falhou: %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "chave %08lX.%lu: Liga��o de subchave v�lida\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "chave %08lX.%lu: Liga��o de subchave inv�lida: %s\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "chave %08lX.%lu: Revoga��o de chave v�lida\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "chave %08lX.%lu: Revoga��o de chave inv�lida: %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "chave %08lX.%lu: Revoga��o de subchave v�lida\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Auto-assinatura v�lida"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Auto-assinatura inv�lida"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"Revoga��o v�lida de ID de usu�rio ignorada devido a nova auto-assinatura\n"
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "Revoga��o de ID de usu�rio v�lida\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "Revoga��o de ID de usu�rio inv�lida"
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "Certificado de revoga��o v�lido"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Certificado correto"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "Certificado de revoga��o inv�lido"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Certificado inv�lido"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "registro de assinatura %lu[%d] aponta para registro errado.\n"
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "certificado duplicado - removido"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir falhou: %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: inser��o falhou: %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: inser��o falhou: %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: inserido\n"
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "erro encontrando registro de diret�rio: %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "%lu chaves processadas\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu chaves com erros\n"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu chaves inseridas\n"
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "enumera��o de blocos de chaves falhou: %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu: registro de diret�rio sem chave - ignorado\n"
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu chaves ignoradas\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu chaves atualizadas\n"
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Ooops, nenhuma chave\n"
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Ooops, nenhum id de usu�rio\n"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: busca de registro de diret�rio falhou: %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "chave %08lX: inser��o de registro de confian�a falhou: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "chave %08lX.%lu: inserida no banco de dados de confiabilidade\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"chave %08lX.%lu: criada no futuro (viagem no tempo ou problema no relogio)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "chave %08lX.%lu: expirada em %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "chave %08lX.%lu: verifica��o de confian�a falhou: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "usu�rio `%s' n�o encontrado: %s\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "problemas na procura de `%s' no banco de dados de confiabilidade: %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr ""
"usu�rio `%s' n�o encontrado no banco de dados de confiabilidade - inserindo\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "falha ao colocar `%s' no banco de dados de confiabilidade: %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr "AVISO: ainda � imposs�vel manipular registros de prefer�ncias longos\n"
diff --git a/po/ru.po b/po/ru.po
index eae3e2277..e2048651c 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: 1999-07-06 17:34+0200\n"
+"POT-Creation-Date: 1999-07-12 15:04+0200\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-01-26 22:08:36+0100\n"
"From: Gregory Steuck <[email protected]>\n"
@@ -330,7 +330,7 @@ msgstr ""
"������������ ��������� ������. ����������, ��������� ���-������, �����\n"
"�� ����� ������� �������������� ��������� �����! (����� ��� %d ����)\n"
-#: g10/g10.c:176
+#: g10/g10.c:177
msgid ""
"@Commands:\n"
" "
@@ -338,136 +338,136 @@ msgstr ""
"@�������:\n"
" "
-#: g10/g10.c:178
+#: g10/g10.c:179
#, fuzzy
msgid "|[file]|make a signature"
msgstr "|[����]|������� �������"
-#: g10/g10.c:179
+#: g10/g10.c:180
#, fuzzy
msgid "|[file]|make a clear text signature"
msgstr "|[����]|������� ��������� �������"
-#: g10/g10.c:180
+#: g10/g10.c:181
msgid "make a detached signature"
msgstr "������� ��������� �������"
-#: g10/g10.c:181
+#: g10/g10.c:182
msgid "encrypt data"
msgstr "����������� ������"
-#: g10/g10.c:182
+#: g10/g10.c:183
msgid "encryption only with symmetric cipher"
msgstr "����������� ������������ ����������"
-#: g10/g10.c:183
+#: g10/g10.c:184
msgid "store only"
msgstr "������ ���������"
-#: g10/g10.c:184
+#: g10/g10.c:185
msgid "decrypt data (default)"
msgstr "������������ ������ (�� ���������)"
-#: g10/g10.c:185
+#: g10/g10.c:186
msgid "verify a signature"
msgstr "��������� �������"
-#: g10/g10.c:186
+#: g10/g10.c:187
msgid "list keys"
msgstr "������ ������"
-#: g10/g10.c:188
+#: g10/g10.c:189
msgid "list keys and signatures"
msgstr "������ ������ � ��������"
-#: g10/g10.c:189
+#: g10/g10.c:190
msgid "check key signatures"
msgstr "��������� ������� �� �����"
-#: g10/g10.c:190
+#: g10/g10.c:191
msgid "list keys and fingerprints"
msgstr "������ ������ � �� \"����������� �������\""
-#: g10/g10.c:191
+#: g10/g10.c:192
msgid "list secret keys"
msgstr "������ ��������� ������"
-#: g10/g10.c:192
+#: g10/g10.c:193
msgid "generate a new key pair"
msgstr "������������� ����� ���� ������ (�������� � ���������)"
-#: g10/g10.c:193
+#: g10/g10.c:194
msgid "remove key from the public keyring"
msgstr "������� ���� �� ������"
-#: g10/g10.c:194
+#: g10/g10.c:195
msgid "sign or edit a key"
msgstr "��������� ��� ������������� ����"
-#: g10/g10.c:195
+#: g10/g10.c:196
msgid "generate a revocation certificate"
msgstr "������������� ���������� ����������"
-#: g10/g10.c:196
+#: g10/g10.c:197
msgid "export keys"
msgstr "�������������� �����"
-#: g10/g10.c:197
+#: g10/g10.c:198
msgid "export keys to a key server"
msgstr ""
-#: g10/g10.c:198
+#: g10/g10.c:199
msgid "import keys from a key server"
msgstr ""
-#: g10/g10.c:201
+#: g10/g10.c:202
msgid "import/merge keys"
msgstr "�������������/�������� �����"
-#: g10/g10.c:203
+#: g10/g10.c:204
msgid "list only the sequence of packets"
msgstr "���������� ������ ������������������ �������"
-#: g10/g10.c:205
+#: g10/g10.c:206
#, fuzzy
msgid "export the ownertrust values"
msgstr "�������������� ��������� �������\n"
-#: g10/g10.c:207
+#: g10/g10.c:208
#, fuzzy
msgid "import ownertrust values"
msgstr "������������� ��������� �������\n"
-#: g10/g10.c:209
+#: g10/g10.c:210
#, fuzzy
msgid "|[NAMES]|update the trust database"
msgstr "|[�����]|��������� ���� ������ �������"
-#: g10/g10.c:211
+#: g10/g10.c:212
msgid "|[NAMES]|check the trust database"
msgstr "|[�����]|��������� ���� ������ �������"
-#: g10/g10.c:212
+#: g10/g10.c:213
msgid "fix a corrupted trust database"
msgstr "��������� ����������� ���� ������ �������"
-#: g10/g10.c:213
+#: g10/g10.c:214
msgid "De-Armor a file or stdin"
msgstr "������������ stdin ��� ���� �� ASCII-�������������"
-#: g10/g10.c:214
+#: g10/g10.c:215
msgid "En-Armor a file or stdin"
msgstr "������������ stdin ��� ���� � ASCII-�������������"
-#: g10/g10.c:215
+#: g10/g10.c:216
msgid "|algo [files]|print message digests"
msgstr "|algo [files]|���������� �������� ���������"
-#: g10/g10.c:216
+#: g10/g10.c:217
msgid "print all message digests"
msgstr "���������� ��� ��������� ���������"
-#: g10/g10.c:222
+#: g10/g10.c:223
msgid ""
"@\n"
"Options:\n"
@@ -477,169 +477,169 @@ msgstr ""
"���������:\n"
" "
-#: g10/g10.c:224
+#: g10/g10.c:225
msgid "create ascii armored output"
msgstr "����� � ASCII-�������������"
-#: g10/g10.c:225
+#: g10/g10.c:226
#, fuzzy
msgid "|NAME|encrypt for NAME"
msgstr "|���|������������ ������������ ���������� ���"
-#: g10/g10.c:229
+#: g10/g10.c:230
msgid "use this user-id to sign or decrypt"
msgstr ""
"������������ ��������� ������������� ������������ ��� ������� ��� �����������"
-#: g10/g10.c:230
+#: g10/g10.c:231
msgid "|N|set compress level N (0 disables)"
msgstr "|N|���������� ������� ������ (0 - �� �������)"
-#: g10/g10.c:232
+#: g10/g10.c:233
msgid "use canonical text mode"
msgstr "������������ ������������ ��������� �����"
-#: g10/g10.c:233
+#: g10/g10.c:234
msgid "use as output file"
msgstr "������������ � �������� ��������� �����"
-#: g10/g10.c:234
+#: g10/g10.c:235
msgid "verbose"
msgstr "������������"
-#: g10/g10.c:235
+#: g10/g10.c:236
msgid "be somewhat more quiet"
msgstr ""
-#: g10/g10.c:236
+#: g10/g10.c:237
msgid "don't use the terminal at all"
msgstr ""
-#: g10/g10.c:237
+#: g10/g10.c:238
#, fuzzy
msgid "force v3 signatures"
msgstr "��������� ������� �� �����"
-#: g10/g10.c:238
+#: g10/g10.c:239
#, fuzzy
msgid "always use a MDC for encryption"
msgstr "������������ ��������� ������������� ������������ ��� ����������"
-#: g10/g10.c:239
+#: g10/g10.c:240
msgid "do not make any changes"
msgstr "Keine wirklichen �nderungen durchf�hren"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:241
+#: g10/g10.c:242
msgid "batch mode: never ask"
msgstr "�������� �����: ������ �� ����������"
-#: g10/g10.c:242
+#: g10/g10.c:243
msgid "assume yes on most questions"
msgstr "�������� \"��\" �� ����������� ��������"
-#: g10/g10.c:243
+#: g10/g10.c:244
msgid "assume no on most questions"
msgstr "�������� \"���\" �� ����������� ��������"
-#: g10/g10.c:244
+#: g10/g10.c:245
msgid "add this keyring to the list of keyrings"
msgstr "�������� ��� ������ � ������ ������ ������"
-#: g10/g10.c:245
+#: g10/g10.c:246
msgid "add this secret keyring to the list"
msgstr "�������� ��� ��������� ������ � ������ ������ ������"
-#: g10/g10.c:246
+#: g10/g10.c:247
msgid "|NAME|use NAME as default secret key"
msgstr "|���|������������ ��� � �������� ���������� ����� �� ���������"
-#: g10/g10.c:247
+#: g10/g10.c:248
msgid "|HOST|use this keyserver to lookup keys"
msgstr ""
-#: g10/g10.c:248
+#: g10/g10.c:249
#, fuzzy
msgid "|NAME|set terminal charset to NAME"
msgstr "|���|������������ ������������ ���������� ���"
-#: g10/g10.c:249
+#: g10/g10.c:250
msgid "read options from file"
msgstr "������ ��������� �� �����"
-#: g10/g10.c:251
+#: g10/g10.c:252
msgid "set debugging flags"
msgstr "���������� ���������� �����"
-#: g10/g10.c:252
+#: g10/g10.c:253
msgid "enable full debugging"
msgstr "��������� ��� �������"
-#: g10/g10.c:253
+#: g10/g10.c:254
msgid "|FD|write status info to this FD"
msgstr "|FD| ���������� ���������� � ��������� � ���������� (FD)"
-#: g10/g10.c:254
+#: g10/g10.c:255
msgid "do not write comment packets"
msgstr "�� ������ ������ � �������������"
-#: g10/g10.c:255
+#: g10/g10.c:256
msgid "(default is 1)"
msgstr "(�� ��������� 1)"
-#: g10/g10.c:256
+#: g10/g10.c:257
msgid "(default is 3)"
msgstr "(�� ��������� 3)"
-#: g10/g10.c:258
+#: g10/g10.c:259
#, fuzzy
msgid "|FILE|load extension module FILE"
msgstr "|����|��������� ���� � ������������ ��������"
-#: g10/g10.c:259
+#: g10/g10.c:260
msgid "emulate the mode described in RFC1991"
msgstr "����������� ����� ��������� � RFC1991"
-#: g10/g10.c:260
+#: g10/g10.c:261
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
-#: g10/g10.c:261
+#: g10/g10.c:262
#, fuzzy
msgid "|N|use passphrase mode N"
msgstr "|N|������������ �������� ����� ������ N\n"
-#: g10/g10.c:263
+#: g10/g10.c:264
#, fuzzy
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|���|������������ ���-�������� ��� ��� �������� ����"
-#: g10/g10.c:265
+#: g10/g10.c:266
#, fuzzy
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|���|������������ ������������ ���������� ��� ��� �������� ����"
-#: g10/g10.c:266
+#: g10/g10.c:267
msgid "|NAME|use cipher algorithm NAME"
msgstr "|���|������������ ������������ ���������� ���"
-#: g10/g10.c:267
+#: g10/g10.c:268
msgid "|NAME|use message digest algorithm NAME"
msgstr "|���|������������ ���-�������� ���"
-#: g10/g10.c:268
+#: g10/g10.c:269
msgid "|N|use compress algorithm N"
msgstr "|N|������������ �������� ������ N"
-#: g10/g10.c:269
+#: g10/g10.c:270
msgid "throw keyid field of encrypted packets"
msgstr "����������� ���� keyid � ������������� �������"
-#: g10/g10.c:270
+#: g10/g10.c:271
msgid "|NAME=VALUE|use this notation data"
msgstr ""
-#: g10/g10.c:272
+#: g10/g10.c:273
#, fuzzy
msgid ""
"@\n"
@@ -660,17 +660,17 @@ msgstr ""
" --list-keys [names] �������� ������ ������\n"
" --fingerprint [names] �������� \"��������� �������\" ������\n"
-#: g10/g10.c:351
+#: g10/g10.c:353
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"����������, ����������� ��������� �� ������� �� ������ "
-#: g10/g10.c:355
+#: g10/g10.c:357
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "�������������: gpg [���������] [�����] (-h ��� ������)"
-#: g10/g10.c:358
+#: g10/g10.c:360
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -680,7 +680,7 @@ msgstr ""
"�����������, ��������� �������, ������� ��� ��������������\n"
"����� ������ ������� �� ������� ������\n"
-#: g10/g10.c:363
+#: g10/g10.c:365
msgid ""
"\n"
"Supported algorithms:\n"
@@ -688,171 +688,171 @@ msgstr ""
"\n"
"�������������� ���������:\n"
-#: g10/g10.c:437
+#: g10/g10.c:439
msgid "usage: gpg [options] "
msgstr "�������������: gpg [���������] "
-#: g10/g10.c:477
+#: g10/g10.c:492
msgid "conflicting commands\n"
msgstr "Widerspr�chliche Kommandos\n"
-#: g10/g10.c:609
+#: g10/g10.c:626
#, fuzzy, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "���������: ���� ���������� �� ��������� `%s' �����������\n"
-#: g10/g10.c:613
+#: g10/g10.c:630
#, c-format
msgid "option file `%s': %s\n"
msgstr "���� ���������� `%s': %s\n"
-#: g10/g10.c:620
+#: g10/g10.c:637
#, c-format
msgid "reading options from `%s'\n"
msgstr "�������� ��������� �� `%s'\n"
-#: g10/g10.c:786
+#: g10/g10.c:805
#, fuzzy, c-format
msgid "%s is not a valid character set\n"
msgstr "������������ ������ � �����������.\n"
-#: g10/g10.c:833 g10/g10.c:845
+#: g10/g10.c:852 g10/g10.c:864
msgid "selected cipher algorithm is invalid\n"
msgstr "������ ������������ �������� ����������\n"
-#: g10/g10.c:839 g10/g10.c:851
+#: g10/g10.c:858 g10/g10.c:870
msgid "selected digest algorithm is invalid\n"
msgstr "������ ������������ ��������-��������\n"
-#: g10/g10.c:855
+#: g10/g10.c:874
msgid "the given policy URL is invalid\n"
msgstr ""
-#: g10/g10.c:858
+#: g10/g10.c:877
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "�������� �������� ����� ����� �������� �� %d �� %d\n"
-#: g10/g10.c:860
+#: g10/g10.c:879
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed ������ ���� ������ 0\n"
-#: g10/g10.c:862
+#: g10/g10.c:881
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed ������ ���� ������ 1\n"
-#: g10/g10.c:864
+#: g10/g10.c:883
msgid "max-cert-depth must be in range 1 to 255\n"
msgstr ""
-#: g10/g10.c:867
+#: g10/g10.c:886
#, fuzzy
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "���������: ������� S2K ����� (0) ����� �� �������������\n"
-#: g10/g10.c:871
+#: g10/g10.c:890
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "������������ ����� S2K: ������ ���� 0, 1 ��� 3\n"
-#: g10/g10.c:948
+#: g10/g10.c:967
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "������ ������������� ���� ������ �������: %s\n"
-#: g10/g10.c:954
+#: g10/g10.c:973
msgid "--store [filename]"
msgstr "--store [��� �����]"
-#: g10/g10.c:961
+#: g10/g10.c:980
msgid "--symmetric [filename]"
msgstr "--symmetric [��� �����]"
-#: g10/g10.c:969
+#: g10/g10.c:988
msgid "--encrypt [filename]"
msgstr "--encrypt [��� �����]"
-#: g10/g10.c:982
+#: g10/g10.c:1001
msgid "--sign [filename]"
msgstr "--sign [��� �����]"
-#: g10/g10.c:995
+#: g10/g10.c:1014
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [��� �����]"
-#: g10/g10.c:1009
+#: g10/g10.c:1028
msgid "--clearsign [filename]"
msgstr "--clearsign [��� �����]"
-#: g10/g10.c:1021
+#: g10/g10.c:1040
msgid "--decrypt [filename]"
msgstr "--decrypt [��� �����]"
-#: g10/g10.c:1030
+#: g10/g10.c:1049
#, fuzzy
msgid "--edit-key username [commands]"
msgstr "--edit-key ���-������������"
-#: g10/g10.c:1044
+#: g10/g10.c:1063
msgid "--delete-secret-key username"
msgstr "--delete-secret-key ���-������������"
-#: g10/g10.c:1047
+#: g10/g10.c:1066
msgid "--delete-key username"
msgstr "--delete-key ���-������������"
-#: g10/encode.c:231 g10/g10.c:1071 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: g10/g10.c:1082
+#: g10/g10.c:1101
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [������������� ������������] [������ ������]"
-#: g10/g10.c:1141
+#: g10/g10.c:1162
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "������ �������������: %s\n"
-#: g10/g10.c:1149
+#: g10/g10.c:1170
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "������ �����������: %s\n"
-#: g10/g10.c:1215
+#: g10/g10.c:1236
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "������������ ���-�������� `%s'\n"
-#: g10/g10.c:1290
+#: g10/g10.c:1317
msgid "[filename]"
msgstr "[��� �����]"
-#: g10/g10.c:1294
+#: g10/g10.c:1321
msgid "Go ahead and type your message ...\n"
msgstr ""
-#: g10/decrypt.c:59 g10/g10.c:1297 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "���������� ������� ���� `%s'\n"
-#: g10/g10.c:1466
+#: g10/g10.c:1493
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
-#: g10/g10.c:1472
+#: g10/g10.c:1499
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
-#: g10/g10.c:1478
+#: g10/g10.c:1505
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
-#: g10/g10.c:1486
+#: g10/g10.c:1513
msgid "a notation value must not use any control characters\n"
msgstr ""
@@ -1573,7 +1573,7 @@ msgstr "���������� ������� ���� `%s': %s\n"
msgid "skipping block of type %d\n"
msgstr "���������� ���� ���� %d\n"
-#: g10/import.c:167 g10/trustdb.c:1656 g10/trustdb.c:1695
+#: g10/import.c:167 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr ""
@@ -2393,94 +2393,105 @@ msgstr "������������� ���������� ����������"
msgid "no secret key\n"
msgstr "������ ��������� ����"
-#: g10/mainproc.c:184
+#: g10/mainproc.c:213
#, fuzzy, c-format
msgid "public key is %08lX\n"
msgstr "�������� ���� �� ������"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:244
#, fuzzy
msgid "public key encrypted data: good DEK\n"
msgstr "����������� �������� ������ �� ������� %s\n"
-#. fixme: defer this message until we have parsed all packets of
-#. * this type - do this by building a list of keys with their stati
-#. * and store it with the context. do_proc_packets can then use
-#. * this list to display some information
-#: g10/mainproc.c:220
+#: g10/mainproc.c:275
+#, fuzzy, c-format
+msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
+msgstr "(%u-��� %s ����, ID %08lX, ������ %s)\n"
+
+#: g10/mainproc.c:285
+#, fuzzy, c-format
+msgid "encrypted with %s key, ID %08lX\n"
+msgstr "������� ������� %.*s, ��������� %s ���� %08lX\n"
+
+#: g10/mainproc.c:291
+#, fuzzy
+msgid "no secret key for decryption available\n"
+msgstr "��������� ���� �� ����������"
+
+#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "����������� �������� ������ �� ������� %s\n"
-#: g10/mainproc.c:248
+#: g10/mainproc.c:323
#, fuzzy
msgid "decryption okay\n"
msgstr "����������� �� �������: %s\n"
-#: g10/mainproc.c:253
+#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr ""
-#: g10/mainproc.c:258
+#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "����������� �� �������: %s\n"
-#: g10/mainproc.c:276
+#: g10/mainproc.c:351
#, fuzzy
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "���������: ����������� �������� \"������-���-�����-����\"\n"
-#: g10/mainproc.c:278
+#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr ""
-#: g10/mainproc.c:506 g10/mainproc.c:515
+#: g10/mainproc.c:580 g10/mainproc.c:589
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "�� ������� ���������� RFC1991 ��� OpenPGP ������.\n"
-#: g10/mainproc.c:518
+#: g10/mainproc.c:592
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:525
+#: g10/mainproc.c:599
msgid "Policy: "
msgstr ""
-#: g10/mainproc.c:930
+#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr ""
-#: g10/mainproc.c:936
+#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "������� ������� %.*s, ��������� %s ���� %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:962 g10/mainproc.c:973
+#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "������ ������� �� \""
-#: g10/mainproc.c:963 g10/mainproc.c:974
+#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "������� ������� �� \""
-#: g10/mainproc.c:965
+#: g10/mainproc.c:1053
msgid " aka \""
msgstr ""
-#: g10/mainproc.c:1016
+#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "���������� ��������� �������: %s\n"
-#: g10/mainproc.c:1110
+#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr ""
-#: g10/mainproc.c:1115
+#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr ""
@@ -2509,12 +2520,12 @@ msgstr ""
msgid "this cipher algorithm is depreciated; please use a more standard one!\n"
msgstr ""
-#: g10/parse-packet.c:112
+#: g10/parse-packet.c:113
#, fuzzy, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "���������� ������������� ������ �������� ������: %s\n"
-#: g10/parse-packet.c:931
+#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr ""
@@ -2539,6 +2550,11 @@ msgstr "(%u-��� %s ����, ID %08lX, ������ %s)\n"
msgid " (main key ID %08lX)"
msgstr ""
+#: g10/passphrase.c:190
+#, fuzzy
+msgid "can't query password in batchmode\n"
+msgstr "���������� ������� ��� � �������� ������.\n"
+
#: g10/passphrase.c:194
#, fuzzy
msgid "Enter passphrase: "
@@ -2853,236 +2869,236 @@ msgstr "��������� ���� %08lX: �� ����� ���������������� ��������� �����.\n"
msgid "key %08lX: secret and public key don't match\n"
msgstr "���� %08lX: ��������� � ��������� ����� �� ���������.\n"
-#: g10/trustdb.c:483
+#: g10/trustdb.c:485
#, fuzzy, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "���� %08lX.%lu: ���������� �������� � ���� ������ �������\n"
-#: g10/trustdb.c:489
+#: g10/trustdb.c:491
#, fuzzy, c-format
msgid "key %08lX: query record failed\n"
msgstr "���� %08lX: ������ ������ �� ������\n"
-#: g10/trustdb.c:498
+#: g10/trustdb.c:500
#, fuzzy, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "���� %08lX: ��� �� ������ ��������� ������\n"
-#: g10/trustdb.c:501
+#: g10/trustdb.c:503
#, fuzzy, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "���� %08lX: ��� �� ������ ��������� ������\n"
-#: g10/trustdb.c:509
+#: g10/trustdb.c:511
#, fuzzy, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "���������� ������� �� �������: %s\n"
-#: g10/trustdb.c:800
+#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "������ �������������: %s\n"
-#: g10/trustdb.c:875
+#: g10/trustdb.c:877
#, fuzzy, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "���� %08lX: ��� �������������� ������������\n"
-#: g10/trustdb.c:881 g10/trustdb.c:916
+#: g10/trustdb.c:883 g10/trustdb.c:918
#, fuzzy, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "���� %08lX: ��� ���������� ��������������� �������������\n"
-#: g10/trustdb.c:893
+#: g10/trustdb.c:895
#, fuzzy, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "���� %08lX.%lu: ���� �������� ����� %s\n"
-#: g10/trustdb.c:899
+#: g10/trustdb.c:901
#, fuzzy, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "���� %08lX: �������� ���� �� ������: %s\n"
-#: g10/trustdb.c:910
+#: g10/trustdb.c:912
#, fuzzy, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "���� %08lX: ��� ���������� ��������������� �������������\n"
-#: g10/trustdb.c:1021
+#: g10/trustdb.c:1023
#, fuzzy
msgid "Good self-signature"
msgstr "[����-�������]\n"
-#: g10/trustdb.c:1031
+#: g10/trustdb.c:1033
#, fuzzy
msgid "Invalid self-signature"
msgstr "���� %08lX: ������������ ����-�������\n"
-#: g10/trustdb.c:1058
+#: g10/trustdb.c:1060
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
-#: g10/trustdb.c:1064
+#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "������������ �����.\n"
-#: g10/trustdb.c:1069
+#: g10/trustdb.c:1071
#, fuzzy
msgid "Invalid user ID revocation"
msgstr "������������ �����.\n"
-#: g10/trustdb.c:1110
+#: g10/trustdb.c:1112
#, fuzzy
msgid "Valid certificate revocation"
msgstr "������ ����������"
-#: g10/trustdb.c:1111
+#: g10/trustdb.c:1113
#, fuzzy
msgid "Good certificate"
msgstr "������ ����������"
-#: g10/trustdb.c:1132
+#: g10/trustdb.c:1134
#, fuzzy
msgid "Invalid certificate revocation"
msgstr "������ ����������"
-#: g10/trustdb.c:1133
+#: g10/trustdb.c:1135
#, fuzzy
msgid "Invalid certificate"
msgstr "������ ����������"
-#: g10/trustdb.c:1150 g10/trustdb.c:1154
+#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr ""
-#: g10/trustdb.c:1206
+#: g10/trustdb.c:1208
#, fuzzy
msgid "duplicated certificate - deleted"
msgstr "������ ����������"
-#: g10/trustdb.c:1512
+#: g10/trustdb.c:1514
#, fuzzy, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "������ �������������: %s\n"
-#: g10/trustdb.c:1634
+#: g10/trustdb.c:1636
#, fuzzy, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "���������� ������� �� �������: %s\n"
-#: g10/trustdb.c:1639
+#: g10/trustdb.c:1641
#, fuzzy, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "���������� ������� �� �������: %s\n"
-#: g10/trustdb.c:1645
+#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr ""
-#: g10/trustdb.c:1650
+#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "Fehler beim Erzeugen der \"Passphrase\": %s\n"
-#: g10/trustdb.c:1658 g10/trustdb.c:1712
+#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr ""
-#: g10/trustdb.c:1660 g10/trustdb.c:1716
+#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, fuzzy, c-format
msgid "\t%lu keys with errors\n"
msgstr "������ ������ �����"
-#: g10/trustdb.c:1662
+#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr ""
-#: g10/trustdb.c:1665
+#: g10/trustdb.c:1667
#, fuzzy, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "���������� ������� �� �������: %s\n"
-#: g10/trustdb.c:1703
+#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr ""
-#: g10/trustdb.c:1714
+#: g10/trustdb.c:1716
#, fuzzy, c-format
msgid "\t%lu keys skipped\n"
msgstr "%s: ��������: %s\n"
-#: g10/trustdb.c:1718
+#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr ""
-#: g10/trustdb.c:2055
+#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr ""
-#: g10/trustdb.c:2059
+#: g10/trustdb.c:2061
#, fuzzy
msgid "Ooops, no user ids\n"
msgstr "������ ������ � ��������������� �������������"
-#: g10/trustdb.c:2216
+#: g10/trustdb.c:2218
#, fuzzy, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "���� %08lX.%lu: ������� ������������� ������ �� �������: %s\n"
-#: g10/trustdb.c:2223
+#: g10/trustdb.c:2227
#, fuzzy, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "���� %08lX.%lu: ������� ������������� ������ �� �������: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "���� %08lX.%lu: �������� � ���� ������ �������\n"
-#: g10/trustdb.c:2235
+#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"���� %08lX.%lu: ������������ � ������� (����������� ����������� ����)\n"
-#: g10/trustdb.c:2244
+#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "���� %08lX.%lu: ���� �������� ����� %s\n"
-#: g10/trustdb.c:2252
+#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "���� %08lX.%lu: �������� ������� �� �������: %s\n"
-#: g10/trustdb.c:2358
+#: g10/trustdb.c:2362
#, fuzzy, c-format
msgid "user '%s' not found: %s\n"
msgstr "%s: ������������ �� ������\n"
-#: g10/trustdb.c:2360
+#: g10/trustdb.c:2364
#, fuzzy, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "������ ������������� ���� ������ �������: %s\n"
-#: g10/trustdb.c:2363
+#: g10/trustdb.c:2367
#, fuzzy, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "���������� ���� ������ ������� �� �������: %s\n"
-#: g10/trustdb.c:2366
+#: g10/trustdb.c:2370
#, fuzzy, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "������ ������������� ���� ������ �������: %s\n"
-#: g10/trustdb.c:2552 g10/trustdb.c:2582
+#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr ""