aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1999-07-13 15:41:14 +0000
committerWerner Koch <[email protected]>1999-07-13 15:41:14 +0000
commit68512418bd42424d05e1344bf512e137da848251 (patch)
treef73fe7d3ce089a988bb99037e6d429079156ce8a
parentSee ChangeLog: Mon Jul 12 18:45:57 CEST 1999 Werner Koch (diff)
downloadgnupg-68512418bd42424d05e1344bf512e137da848251.tar.gz
gnupg-68512418bd42424d05e1344bf512e137da848251.zip
See ChangeLog: Tue Jul 13 17:39:25 CEST 1999 Werner Koch
-rw-r--r--NEWS4
-rw-r--r--THANKS3
-rw-r--r--TODO2
-rw-r--r--doc/gpg.sgml51
-rw-r--r--g10/ChangeLog13
-rw-r--r--g10/OPTIONS7
-rw-r--r--g10/g10.c145
-rw-r--r--g10/options.h2
-rw-r--r--g10/options.skel16
-rw-r--r--g10/pkclist.c176
-rw-r--r--g10/trustdb.c2
-rw-r--r--mpi/Makefile.am2
-rw-r--r--po/ChangeLog6
-rw-r--r--po/de.po896
14 files changed, 733 insertions, 592 deletions
diff --git a/NEWS b/NEWS
index e51df1b19..b9caa4ed8 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,10 @@
* New commands --lsign-key and made --sign-key a shortcut for --edit
and sign.
+ * New options (#122--124 ;-) --[no-]default-recipient[-self]. See the
+ man page.
+
+ * Enhanced info output in case of multiple recipients and fixed exit code.
Noteworthy changes in version 0.9.8
-----------------------------------
diff --git a/THANKS b/THANKS
index 04de29a9a..4f91ceed2 100644
--- a/THANKS
+++ b/THANKS
@@ -20,6 +20,7 @@ David Ellement [email protected]
Detlef Lannert [email protected]
Dirk Lattermann [email protected]
+Enzo Michelangeli [email protected]
Ernst Molitor [email protected]
Fabio Coatti [email protected]
Felix von Leitner [email protected]
@@ -97,7 +98,7 @@ Wim Vandeputte [email protected]
Thanks to the German Unix User Group for providing FTP space,
-Martin Hamilton for hosting the mailing list and hsp for
+Martin Hamilton for hosting the mailing list and HSP for
hosting gnupg.org.
Many thanks to my wife Gerlinde for having so much patience with
diff --git a/TODO b/TODO
index 7edc1ebce..7906b67fe 100644
--- a/TODO
+++ b/TODO
@@ -14,6 +14,8 @@
* find a way to allow the import of non-self-signed keys. This is needed
for the IN ENCR/SIGN hack.
+ * add an option to use a OpenPGP packet as input (and don't build a literal
+ data packet)
Nice to have
------------
diff --git a/doc/gpg.sgml b/doc/gpg.sgml
index dd6e1d3ad..2e0758253 100644
--- a/doc/gpg.sgml
+++ b/doc/gpg.sgml
@@ -465,6 +465,34 @@ values will be overwritten.
<varlistentry>
+<term>--print-md <parameter>algo</parameter> &OptParmFiles;</term>
+<listitem><para>
+Print message digest og algorithm ALGO for all given files of stdin.
+If "*" is used for the algorithm, digests for all available algorithms
+are printed.
+</para></listitem></varlistentry>
+
+
+<varlistentry>
+<term>--gen-random <parameter>0|1|2</parameter>
+ <optional><parameter>count</parameter></optional></term>
+<listitem><para>
+Emit COUNT random bytes of the given quality level. If count is not given
+or zero, an endless sequenece of random bytes will be emitted.
+PLEASE, don't use this command unless you know waht you are doing, it may
+remove precious entropy from the system!
+</para></listitem></varlistentry>
+
+<varlistentry>
+<term>--gen-prime <parameter>mode</parameter>
+ <parameter>bits</parameter>
+ <optional><parameter>qbits</parameter></optional></term>
+<listitem><para>
+Use the source, Luke :-). The output format is still subject to change.
+</para></listitem></varlistentry>
+
+
+<varlistentry>
<term>--version</term>
<listitem><para>
Print version information along with a list
@@ -544,9 +572,30 @@ found in the secret keyring.
<term></term>
<listitem><para>
Encrypt for user id &ParmName;. If this option is not
-specified, GnuPG asks for the user id.
+specified, GnuPG asks for the user-id unless --default-recipient is given
</para></listitem></varlistentry>
+<varlistentry>
+<term>--default-recipient &ParmName;</term>
+<listitem><para>
+Use &ParmName; as default recipient if option --recipient is not used and
+don't ask if this is a valid one. &ParmName; must be a non empty.
+</para></listitem></varlistentry>
+
+<varlistentry>
+<term>--default-recipient-self</term>
+<listitem><para>
+Use the default key as default recipient if option --recipient is not used and
+don't ask if this is a valid one. The default key is the first one from the
+secret keyring or the one set with --default-key.
+</para></listitem></varlistentry>
+
+
+<varlistentry>
+<term>--no-default-recipient</term>
+<listitem><para>
+Reset --default-recipient and --default-recipient-self.
+</para></listitem></varlistentry>
<varlistentry>
<term>--encrypt-to &ParmName;</term>
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 1d0e46e02..8c1cff6b4 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,16 @@
+Tue Jul 13 17:39:25 CEST 1999 Werner Koch <[email protected]>
+
+
+ * pkclist.c (do_edit_ownertrust): Changed the way help works.
+ (build_pk_list): Implemented default recipient stuff.
+ * g10.c: New options --default-recipient[-self]
+ (main): Suppress greeting in most cases, entering a passphrase or
+ a missing value is not considered to be interactive use.
+ Merged --print-md and --print-mds; the latter is now obsolete.
+ Changed the way --gen-random works and documented it.
+ Changed the way --gen-prime works and add a man entry.
+ * g10.c (MAINTAINER_OPTIONS): Removed.
+
Mon Jul 12 18:45:57 CEST 1999 Werner Koch <[email protected]>
diff --git a/g10/OPTIONS b/g10/OPTIONS
index 59da5cd2a..1132a846f 100644
--- a/g10/OPTIONS
+++ b/g10/OPTIONS
@@ -19,13 +19,6 @@
#-----------------------------------------------
# With some exceptions, these cannot be combined
-print-md algo
-# print the message digest of algorithm ALGO for stdin or all
-# given filenames
-
-print-mds
-# print all message digests of all give filenames
-
store
# simply packs the input data into a rfc1991 packet format
diff --git a/g10/g10.c b/g10/g10.c
index 52c0fb68e..4d66b5669 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -26,7 +26,6 @@
#include <ctype.h>
#include <unistd.h>
-#define MAINTAINER_OPTIONS
#include "packet.h"
#include "iobuf.h"
@@ -112,6 +111,9 @@ enum cmd_and_opt_values { aNull = 0,
oKeyring,
oSecretKeyring,
oDefaultKey,
+ oDefRecipient,
+ oDefRecipientSelf,
+ oNoDefRecipient,
oOptions,
oDebug,
oDebugAll,
@@ -217,17 +219,19 @@ static ARGPARSE_OPTS opts[] = {
{ aDeArmor, "dearmor", 256, N_("De-Armor a file or stdin") },
{ aEnArmor, "enarmor", 256, N_("En-Armor a file or stdin") },
{ aPrintMD, "print-md" , 256, N_("|algo [files]|print message digests")},
- { aPrintMDs, "print-mds" , 256, N_("print all message digests")},
- #ifdef MAINTAINER_OPTIONS
{ aPrimegen, "gen-prime" , 256, "@" },
{ aGenRandom, "gen-random" , 256, "@" },
- #endif
{ 301, NULL, 0, N_("@\nOptions:\n ") },
{ oArmor, "armor", 0, N_("create ascii armored output")},
{ oRecipient, "recipient", 2, N_("|NAME|encrypt for NAME")},
{ oRecipient, "remote-user", 2, "@"}, /* old option name */
+ { oDefRecipient, "default-recipient" ,2,
+ N_("|NAME|use NAME as default recipient")},
+ { oDefRecipientSelf, "default-recipient-self" ,0,
+ N_("use the default key as default recipient")},
+ { oNoDefRecipient, "no-default-recipient", 0, "@" },
{ oEncryptTo, "encrypt-to", 2, "@" },
{ oNoEncryptTo, "no-encrypt-to", 0, "@" },
{ oUser, "local-user",2, N_("use this user-id to sign or decrypt")},
@@ -282,6 +286,7 @@ static ARGPARSE_OPTS opts[] = {
/* hidden options */
{ aExportOwnerTrust, "list-ownertrust",0 , "@"}, /* alias */
+ { aPrintMDs, "print-mds" , 256, "@"}, /* old */
{ aListTrustDB, "list-trustdb",0 , "@"},
{ aListTrustPath, "list-trust-path",0, "@"},
{ oKOption, NULL, 0, "@"},
@@ -520,7 +525,7 @@ main( int argc, char **argv )
int parse_debug = 0;
int default_config =1;
int default_keyring = 1;
- int greeting = 1;
+ int greeting = 0;
enum cmd_and_opt_values cmd = 0;
const char *trustdb_name = NULL;
char *def_cipher_string = NULL;
@@ -654,26 +659,25 @@ main( int argc, char **argv )
case aListKeys: set_cmd( &cmd, aListKeys); break;
case aListSigs: set_cmd( &cmd, aListSigs); break;
case aExportSecret: set_cmd( &cmd, aExportSecret); break;
- case aDeleteSecretKey: set_cmd( &cmd, aDeleteSecretKey); break;
- case aDeleteKey: set_cmd( &cmd, aDeleteKey); break;
+ case aDeleteSecretKey: set_cmd( &cmd, aDeleteSecretKey);
+ greeting=1; break;
+ case aDeleteKey: set_cmd( &cmd, aDeleteKey); greeting=1; break;
case aDetachedSign: detached_sig = 1; set_cmd( &cmd, aSign ); break;
case aSym: set_cmd( &cmd, aSym); break;
case aDecrypt: set_cmd( &cmd, aDecrypt); break;
case aEncr: set_cmd( &cmd, aEncr); break;
case aSign: set_cmd( &cmd, aSign ); break;
- case aKeygen: set_cmd( &cmd, aKeygen); break;
+ case aKeygen: set_cmd( &cmd, aKeygen); greeting=1; 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 aEditKey: set_cmd( &cmd, aEditKey); greeting=1; break;
case aClearsign: set_cmd( &cmd, aClearsign); break;
case aGenRevoke: set_cmd( &cmd, aGenRevoke); break;
case aVerify: set_cmd( &cmd, aVerify); break;
- #ifdef MAINTAINER_OPTIONS
case aPrimegen: set_cmd( &cmd, aPrimegen); break;
case aGenRandom: set_cmd( &cmd, aGenRandom); break;
- #endif
case aPrintMD: set_cmd( &cmd, aPrintMD); break;
case aPrintMDs: set_cmd( &cmd, aPrintMDs); break;
case aListTrustDB: set_cmd( &cmd, aListTrustDB); break;
@@ -681,8 +685,8 @@ main( int argc, char **argv )
case aUpdateTrustDB: set_cmd( &cmd, aUpdateTrustDB); break;
case aFixTrustDB: set_cmd( &cmd, aFixTrustDB); break;
case aListTrustPath: set_cmd( &cmd, aListTrustPath); break;
- case aDeArmor: set_cmd( &cmd, aDeArmor); greeting = 0; break;
- case aEnArmor: set_cmd( &cmd, aEnArmor); greeting = 0; break;
+ case aDeArmor: set_cmd( &cmd, aDeArmor); break;
+ case aEnArmor: set_cmd( &cmd, aEnArmor); break;
case aExportOwnerTrust: set_cmd( &cmd, aExportOwnerTrust); break;
case aImportOwnerTrust: set_cmd( &cmd, aImportOwnerTrust); break;
@@ -730,6 +734,18 @@ main( int argc, char **argv )
case oMaxCertDepth: opt.max_cert_depth = pargs.r.ret_int; break;
case oTrustDBName: trustdb_name = pargs.r.ret_str; break;
case oDefaultKey: opt.def_secret_key = pargs.r.ret_str; break;
+ case oDefRecipient:
+ if( *pargs.r.ret_str )
+ opt.def_recipient = make_username(pargs.r.ret_str);
+ break;
+ case oDefRecipientSelf:
+ m_free(opt.def_recipient); opt.def_recipient = NULL;
+ opt.def_recipient_self = 1;
+ break;
+ case oNoDefRecipient:
+ m_free(opt.def_recipient); opt.def_recipient = NULL;
+ opt.def_recipient_self = 0;
+ break;
case oNoOptions: break; /* no-options */
case oHomedir: opt.homedir = pargs.r.ret_str; break;
case oNoBatch: opt.batch = 0; break;
@@ -834,10 +850,11 @@ main( int argc, char **argv )
fprintf(stderr, "%s %s; %s\n",
strusage(11), strusage(13), strusage(14) );
fprintf(stderr, "%s\n", strusage(15) );
- #ifdef IS_DEVELOPMENT_VERSION
- log_info("NOTE: this is a development version!\n");
- #endif
}
+ #ifdef IS_DEVELOPMENT_VERSION
+ if( !opt.batch )
+ log_info("NOTE: this is a development version!\n");
+ #endif
if( opt.batch )
tty_batchmode( 1 );
@@ -1191,68 +1208,70 @@ main( int argc, char **argv )
break;
- #ifdef MAINTAINER_OPTIONS
case aPrimegen:
- if( argc == 1 ) {
- mpi_print( stdout, generate_public_prime( atoi(argv[0]) ), 1);
- putchar('\n');
- }
- else if( argc == 2 ) {
- mpi_print( stdout, generate_elg_prime( 0, atoi(argv[0]),
- atoi(argv[1]), NULL,NULL ), 1);
- putchar('\n');
- }
- else if( argc == 3 ) {
- MPI g = mpi_alloc(1);
- mpi_print( stdout, generate_elg_prime( 0, atoi(argv[0]),
- atoi(argv[1]), g, NULL ), 1);
- printf("\nGenerator: ");
- mpi_print( stdout, g, 1 );
- putchar('\n');
- mpi_free(g);
- }
- else if( argc == 4 ) {
- mpi_print( stdout, generate_elg_prime( 1, atoi(argv[0]),
- atoi(argv[1]), NULL,NULL ), 1);
+ { int mode = argc < 2 ? 0 : atoi(*argv);
+
+ if( mode == 1 && argc == 2 ) {
+ mpi_print( stdout, generate_public_prime( atoi(argv[1]) ), 1);
+ }
+ else if( mode == 2 && argc == 3 ) {
+ mpi_print( stdout, generate_elg_prime(
+ 0, atoi(argv[1]),
+ atoi(argv[2]), NULL,NULL ), 1);
+ }
+ else if( mode == 3 && argc == 3 ) {
+ MPI *factors;
+ mpi_print( stdout, generate_elg_prime(
+ 1, atoi(argv[1]),
+ atoi(argv[2]), NULL,&factors ), 1);
+ putchar('\n');
+ mpi_print( stdout, factors[0], 1 ); /* print q */
+ }
+ else if( mode == 4 && argc == 3 ) {
+ MPI g = mpi_alloc(1);
+ mpi_print( stdout, generate_elg_prime(
+ 0, atoi(argv[1]),
+ atoi(argv[2]), g, NULL ), 1);
+ putchar('\n');
+ mpi_print( stdout, g, 1 );
+ mpi_free(g);
+ }
+ else
+ wrong_args("--gen-prime mode bits [qbits] ");
putchar('\n');
}
- else
- usage(1);
break;
- #endif /* MAINTAINER OPTIONS */
- #ifdef MAINTAINER_OPTIONS
case aGenRandom:
- if( argc < 1 || argc > 2 )
- wrong_args("--gen-random level [hex]");
{
- int c;
- int level = atoi(*argv);
- for(;;) {
+ int level = argc ? atoi(*argv):0;
+ int count = argc > 1 ? atoi(argv[1]): 0;
+ int endless = !count;
+
+ if( argc < 1 || argc > 2 || level < 0 || level > 2 || count < 0 )
+ wrong_args("--gen-random 0|1|2 [count]");
+
+ while( endless || count ) {
byte *p;
- if( argc == 2 ) {
- p = get_random_bits( 8, level, 0);
- printf("%02x", *p );
- fflush(stdout);
- }
- else {
- p = get_random_bits( 800, level, 0);
- for(c=0; c < 100; c++ )
- putchar( p[c] );
- }
+ size_t n = !endless && count < 100? count : 100;
+
+ p = get_random_bits( n*8, level, 0);
+ fwrite( p, n, 1, stdout );
m_free(p);
+ if( !endless )
+ count -= n;
}
}
break;
- #endif /* MAINTAINER OPTIONS */
case aPrintMD:
if( argc < 1)
- wrong_args("--print-md algo [file]");
- else {
- int algo = string_to_digest_algo(*argv);
+ wrong_args("--print-md algo [files]");
+ {
+ int all_algos = (**argv=='*' && !(*argv)[1]);
+ int algo = all_algos? 0 : string_to_digest_algo(*argv);
- if( !algo )
+ if( !algo && !all_algos )
log_error(_("invalid hash algorithm `%s'\n"), *argv );
else {
argc--; argv++;
@@ -1266,7 +1285,7 @@ main( int argc, char **argv )
}
break;
- case aPrintMDs:
+ case aPrintMDs: /* old option */
if( !argc )
print_mds(NULL,0);
else {
diff --git a/g10/options.h b/g10/options.h
index ff477dfcf..e03bd00cc 100644
--- a/g10/options.h
+++ b/g10/options.h
@@ -50,6 +50,8 @@ struct {
int def_digest_algo;
int def_compress_algo;
const char *def_secret_key;
+ char *def_recipient;
+ int def_recipient_self;
int no_comment;
int no_version;
int marginals_needed;
diff --git a/g10/options.skel b/g10/options.skel
index e95170b1d..e4ea017c8 100644
--- a/g10/options.skel
+++ b/g10/options.skel
@@ -22,6 +22,15 @@ $Id$
# default-key 621CC013
+# If you do not pass a recipient to gpg, it will ask for one.
+# Using this option you can encrypt to a default key. key validation
+# will not be done in this case.
+# The second form uses the default key as default recipient.
+
+# default-recipient some-user-id
+# default-recipient-self
+
+
# The next option is enabled because this one is needed for interoperation
# with PGP 5 users. To enable full OpenPGP compliance you have to remove
# this option.
@@ -52,8 +61,11 @@ escape-from-lines
# every time it is needed - normally this is not needed.
lock-once
-# If you have configured GnuPG without a random gatherer,
-# you have to uncomment one of the following lines.
+# If you have configured GnuPG without a random gatherer
+# (./configure --enable-static-rnd=none), you have to
+# uncomment _one_ of the following lines. These
+# extensions won't get used if you have a random gatherer
+# compiled in (which is the default for GNU and xxxBSD systems)
#load-extension rndlinux
#load-extension rndunix
#load-extension rndegd
diff --git a/g10/pkclist.c b/g10/pkclist.c
index d8c25ebba..01d12babb 100644
--- a/g10/pkclist.c
+++ b/g10/pkclist.c
@@ -108,7 +108,7 @@ show_paths( ulong lid, int only_first )
* Returns true if an ownertrust has changed.
*/
static int
-do_edit_ownertrust( ulong lid, int mode, unsigned *new_trust )
+do_edit_ownertrust( ulong lid, int mode, unsigned *new_trust, int defer_help )
{
char *p;
int rc;
@@ -118,6 +118,7 @@ do_edit_ownertrust( ulong lid, int mode, unsigned *new_trust )
int changed=0;
int quit=0;
int show=0;
+ int did_help=defer_help;
rc = keyid_from_lid( lid, keyid );
if( rc ) {
@@ -133,17 +134,23 @@ do_edit_ownertrust( ulong lid, int mode, unsigned *new_trust )
return 0;
}
- if( !mode ) {
- tty_printf(_("No trust value assigned to %lu:\n"
- "%4u%c/%08lX %s \""), lid,
- nbits_from_pk( pk ), pubkey_letter( pk->pubkey_algo ),
- (ulong)keyid[1], datestr_from_pk( pk ) );
- p = get_user_id( keyid, &n );
- tty_print_string( p, n ),
- m_free(p);
- tty_printf("\"\n\n");
- }
- tty_printf(_(
+
+ for(;;) {
+ /* a string with valid answers */
+ char *ans = _("sSmMqQ");
+
+ if( !did_help ) {
+ if( !mode ) {
+ tty_printf(_("No trust value assigned to %lu:\n"
+ "%4u%c/%08lX %s \""), lid,
+ nbits_from_pk( pk ), pubkey_letter( pk->pubkey_algo ),
+ (ulong)keyid[1], datestr_from_pk( pk ) );
+ p = get_user_id( keyid, &n );
+ tty_print_string( p, n ),
+ m_free(p);
+ tty_printf("\"\n\n");
+ }
+ tty_printf(_(
"Please decide how far you trust this user to correctly\n"
"verify other users' keys (by looking at passports,\n"
"checking fingerprints from different sources...)?\n\n"
@@ -152,22 +159,21 @@ do_edit_ownertrust( ulong lid, int mode, unsigned *new_trust )
" 3 = I trust marginally\n"
" 4 = I trust fully\n"
" s = please show me more information\n") );
- if( mode )
- tty_printf(_(" m = back to the main menu\n"));
- else
- tty_printf(_(" q = quit\n"));
- tty_printf("\n");
-
- for(;;) {
- /* a string with valid answers */
- char *ans = _("sSmMqQ");
-
+ if( mode )
+ tty_printf(_(" m = back to the main menu\n"));
+ else
+ tty_printf(_(" q = quit\n"));
+ tty_printf("\n");
+ did_help = 1;
+ }
if( strlen(ans) != 6 )
BUG();
p = cpr_get("edit_ownertrust.value",_("Your decision? "));
trim_spaces(p);
cpr_kill_prompt();
- if( *p && p[1] )
+ if( !*p )
+ did_help = 0;
+ else if( *p && p[1] )
;
else if( !p[1] && (*p >= '1' && *p <= '4') ) {
unsigned trust;
@@ -207,13 +213,15 @@ int
edit_ownertrust( ulong lid, int mode )
{
unsigned int trust;
+ int no_help = 0;
for(;;) {
- switch( do_edit_ownertrust( lid, mode, &trust ) ) {
+ switch( do_edit_ownertrust( lid, mode, &trust, no_help ) ) {
case -1:
return 0;
case -2:
show_paths( lid, 1 );
+ no_help = 1;
break;
case 1:
trust &= ~TRUST_FLAG_DISABLED;
@@ -231,7 +239,7 @@ static int
add_ownertrust_cb( ulong lid )
{
unsigned trust;
- int rc = do_edit_ownertrust( lid, 0, &trust );
+ int rc = do_edit_ownertrust( lid, 0, &trust, 0 );
if( rc == 1 )
return trust & TRUST_MASK;
@@ -560,6 +568,42 @@ key_present_in_pk_list(PK_LIST pk_list, PKT_public_key *pk)
return -1;
}
+
+/****************
+ * Return a malloced string with a default reciepient if there is any
+ */
+static char *
+default_recipient(void)
+{
+ PKT_secret_key *sk;
+ byte fpr[MAX_FINGERPRINT_LEN+1];
+ size_t n;
+ char *p;
+ int i;
+
+ if( opt.def_recipient )
+ return m_strdup( opt.def_recipient );
+ if( !opt.def_recipient_self )
+ return NULL;
+ sk = m_alloc_clear( sizeof *sk );
+ i = get_seckey_byname( sk, NULL, 0 );
+ if( i ) {
+ free_secret_key( sk );
+ return NULL;
+ }
+ n = MAX_FINGERPRINT_LEN;
+ fingerprint_from_sk( sk, fpr, &n );
+ free_secret_key( sk );
+ p = m_alloc( 2*n+3 );
+ *p++ = '0';
+ *p++ = 'x';
+ for(i=0; i < n; i++ )
+ sprintf( p+2*i, "%02X", fpr[i] );
+ p -= 2;
+ return p;
+}
+
+
int
build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use )
{
@@ -568,6 +612,7 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use )
int rc=0;
int any_recipients=0;
STRLIST rov;
+ char *def_rec = NULL;
/* check whether there are any recipients in the list and build the
* list of the encrypt-to ones (we always trust them) */
@@ -608,16 +653,26 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use )
if( !any_recipients && !opt.batch ) { /* ask */
char *answer=NULL;
+ int have_def_rec;
- tty_printf(_(
+ def_rec = default_recipient();
+ have_def_rec = !!def_rec;
+ if( !have_def_rec )
+ tty_printf(_(
"You did not specify a user ID. (you may use \"-r\")\n\n"));
for(;;) {
rc = 0;
m_free(answer);
- answer = cpr_get_utf8("pklist.user_id.enter",
- _("Enter the user ID: "));
- trim_spaces(answer);
- cpr_kill_prompt();
+ if( have_def_rec ) {
+ answer = def_rec;
+ def_rec = NULL;
+ }
+ else {
+ answer = cpr_get_utf8("pklist.user_id.enter",
+ _("Enter the user ID: "));
+ trim_spaces(answer);
+ cpr_kill_prompt();
+ }
if( !*answer )
break;
if( pk )
@@ -628,20 +683,8 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use )
if( rc )
tty_printf(_("No such user ID.\n"));
else if( !(rc=check_pubkey_algo2(pk->pubkey_algo, use)) ) {
- int trustlevel;
-
- rc = check_trust( pk, &trustlevel, NULL, NULL, NULL );
- if( rc ) {
- log_error("error checking pk of `%s': %s\n",
- answer, g10_errstr(rc) );
- }
- else if( (trustlevel & TRUST_FLAG_DISABLED) ) {
- tty_printf(_("Public key is disabled.\n") );
- }
- else if( do_we_trust_pre( pk, trustlevel ) ) {
- PK_LIST r;
-
- r = m_alloc( sizeof *r );
+ if( have_def_rec ) {
+ PK_LIST r = m_alloc( sizeof *r );
r->pk = pk; pk = NULL;
r->next = pk_list;
r->mark = 0;
@@ -649,7 +692,32 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use )
any_recipients = 1;
break;
}
+ else {
+ int trustlevel;
+
+ rc = check_trust( pk, &trustlevel, NULL, NULL, NULL );
+ if( rc ) {
+ log_error("error checking pk of `%s': %s\n",
+ answer, g10_errstr(rc) );
+ }
+ else if( (trustlevel & TRUST_FLAG_DISABLED) ) {
+ tty_printf(_("Public key is disabled.\n") );
+ }
+ else if( do_we_trust_pre( pk, trustlevel ) ) {
+ PK_LIST r;
+
+ r = m_alloc( sizeof *r );
+ r->pk = pk; pk = NULL;
+ r->next = pk_list;
+ r->mark = 0;
+ pk_list = r;
+ any_recipients = 1;
+ break;
+ }
+ }
}
+ m_free(def_rec); def_rec = NULL;
+ have_def_rec = 0;
}
m_free(answer);
if( pk ) {
@@ -657,6 +725,26 @@ build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use )
pk = NULL;
}
}
+ else if( !any_recipients && (def_rec = default_recipient()) ) {
+ pk = m_alloc_clear( sizeof *pk );
+ pk->pubkey_usage = use;
+ rc = get_pubkey_byname( NULL, pk, def_rec, NULL );
+ if( rc )
+ log_error(_("unknown default recipient `s'\n"), def_rec );
+ else if( !(rc=check_pubkey_algo2(pk->pubkey_algo, use)) ) {
+ PK_LIST r = m_alloc( sizeof *r );
+ r->pk = pk; pk = NULL;
+ r->next = pk_list;
+ r->mark = 0;
+ pk_list = r;
+ any_recipients = 1;
+ }
+ if( pk ) {
+ free_public_key( pk );
+ pk = NULL;
+ }
+ m_free(def_rec); def_rec = NULL;
+ }
else {
any_recipients = 0;
for(; remusr; remusr = remusr->next ) {
diff --git a/g10/trustdb.c b/g10/trustdb.c
index 3f5b4fc64..7357b762a 100644
--- a/g10/trustdb.c
+++ b/g10/trustdb.c
@@ -1624,7 +1624,7 @@ update_trustdb()
ulong count=0, err_count=0, new_count=0;
while( !(rc = enum_keyblocks( 1, &kbpos, &keyblock )) ) {
- int modified;
+ /*int modified;*/
TRUSTREC drec;
PKT_public_key *pk = find_kbnode( keyblock, PKT_PUBLIC_KEY )
->pkt->pkt.public_key;
diff --git a/mpi/Makefile.am b/mpi/Makefile.am
index fc25bbb81..e5c241a2e 100644
--- a/mpi/Makefile.am
+++ b/mpi/Makefile.am
@@ -9,10 +9,8 @@ DISTCLEANFILES = mpih-add1.S mpih-mul1.S mpih-mul2.S mpih-mul3.S \
mpih-lshift.S mpih-rshift.S mpih-sub1.S asm-syntax.h sysdep.h
CLEANFILES = tmp-*.s
-
noinst_LTLIBRARIES = libmpi.la
-
libmpi_la_LDFLAGS =
libmpi_la_SOURCES = longlong.h \
mpi-add.c \
diff --git a/po/ChangeLog b/po/ChangeLog
index 2a41f4bb7..87309ed7b 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,5 +1,9 @@
-Tue Jun 29 21:44:25 CEST 1999 Werner Koch <[email protected]>
+Tue Jul 13 17:39:25 CEST 1999 Werner Koch <[email protected]>
+
+ * de.po: Updated (Walter)
+
+Tue Jun 29 21:44:25 CEST 1999 Werner Koch <[email protected]>
* it.po: Updated (Marco).
diff --git a/po/de.po b/po/de.po
index 451023ac1..467a6403a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,8 +3,8 @@
# Walter Koch <[email protected]>, 1998.
msgid ""
msgstr ""
-"POT-Creation-Date: 1999-07-12 15:04+0200\n"
-"PO-Revision-Date: 1999-05-30 21:56+0200\n"
+"POT-Creation-Date: 1999-07-12 20:20+0200\n"
+"PO-Revision-Date: 1999-07-12 21:56+0200\n"
"Last-Translator: Walter Koch <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
"MIME-Version: 1.0\n"
@@ -26,19 +26,19 @@ msgid "(you may have used the wrong program for this task)\n"
msgstr ""
"(m�glicherweise haben Sie das falsche Programm f�r diese Aufgabe benutzt)\n"
-#: util/miscutil.c:254 util/miscutil.c:271
+#: util/miscutil.c:156 util/miscutil.c:173
msgid "yes"
msgstr "ja"
-#: util/miscutil.c:255 util/miscutil.c:273
+#: util/miscutil.c:157 util/miscutil.c:175
msgid "yY"
msgstr "jJyY"
-#: g10/keyedit.c:561 util/miscutil.c:272
+#: g10/keyedit.c:561 util/miscutil.c:174
msgid "quit"
msgstr "quit"
-#: util/miscutil.c:274
+#: util/miscutil.c:176
msgid "qQ"
msgstr "qQ"
@@ -244,11 +244,11 @@ msgstr "... dies ist ein Bug (Programmfehler) (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "Sie haben eine Bug (Programmfehler) gefunden ... (%s:%d)\n"
-#: cipher/random.c:452
+#: cipher/random.c:412
msgid "WARNING: using insecure random number generator!!\n"
msgstr "WARNUNG: Der Zufallsgenerator erzeugt keine echten Zufallszahlen!\n"
-#: cipher/random.c:453
+#: cipher/random.c:413
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\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:177
+#: g10/g10.c:174
msgid ""
"@Commands:\n"
" "
@@ -282,131 +282,131 @@ msgstr ""
"@Befehle:\n"
" "
-#: g10/g10.c:179
+#: g10/g10.c:176
msgid "|[file]|make a signature"
msgstr "|[Datei]|Eine Unterschrift erzeugen"
-#: g10/g10.c:180
+#: g10/g10.c:177
msgid "|[file]|make a clear text signature"
msgstr "|[Datei]|Eine Klartextunterschrift erzeugen"
-#: g10/g10.c:181
+#: g10/g10.c:178
msgid "make a detached signature"
msgstr "Eine abgetrennte Unterschrift erzeugen"
-#: g10/g10.c:182
+#: g10/g10.c:179
msgid "encrypt data"
msgstr "Daten verschl�sseln"
-#: g10/g10.c:183
+#: g10/g10.c:180
msgid "encryption only with symmetric cipher"
msgstr "Daten symmetrisch verschl�sseln"
-#: g10/g10.c:184
+#: g10/g10.c:181
msgid "store only"
msgstr "Nur speichern"
-#: g10/g10.c:185
+#: g10/g10.c:182
msgid "decrypt data (default)"
msgstr "Daten entschl�sseln (Voreinstellung)"
-#: g10/g10.c:186
+#: g10/g10.c:183
msgid "verify a signature"
msgstr "Signatur pr�fen"
-#: g10/g10.c:187
+#: g10/g10.c:184
msgid "list keys"
msgstr "Liste der Schl�ssel"
-#: g10/g10.c:189
+#: g10/g10.c:186
msgid "list keys and signatures"
msgstr "Liste der Schl�ssel und ihrer Signaturen"
-#: g10/g10.c:190
+#: g10/g10.c:187
msgid "check key signatures"
msgstr "Signaturen der Schl�ssel pr�fen"
-#: g10/g10.c:191
+#: g10/g10.c:188
msgid "list keys and fingerprints"
msgstr "Liste der Schl�ssel und ihrer \"Fingerabdr�cke\""
-#: g10/g10.c:192
+#: g10/g10.c:189
msgid "list secret keys"
msgstr "Liste der geheimen Schl�ssel"
-#: g10/g10.c:193
+#: g10/g10.c:190
msgid "generate a new key pair"
msgstr "Ein neues Schl�sselpaar erzeugen"
-#: g10/g10.c:194
+#: g10/g10.c:191
msgid "remove key from the public keyring"
msgstr "Schl�ssel entfernen"
-#: g10/g10.c:195
+#: g10/g10.c:192
msgid "sign or edit a key"
msgstr "Unterschreiben oder Bearbeiten eines Schl�ssels"
-#: g10/g10.c:196
+#: g10/g10.c:193
msgid "generate a revocation certificate"
msgstr "Ein Schl�sselwiderruf-Zertifikat erzeugen"
-#: g10/g10.c:197
+#: g10/g10.c:194
msgid "export keys"
msgstr "Schl�ssel exportieren"
-#: g10/g10.c:198
+#: g10/g10.c:195
msgid "export keys to a key server"
msgstr "Schl�ssel zu einem Schl�sselserver exportieren"
-#: g10/g10.c:199
+#: g10/g10.c:196
msgid "import keys from a key server"
msgstr "Schl�ssel von einem Schl�sselserver importieren"
-#: g10/g10.c:202
+#: g10/g10.c:199
msgid "import/merge keys"
msgstr "Schl�ssel importieren/kombinieren"
-#: g10/g10.c:204
+#: g10/g10.c:201
msgid "list only the sequence of packets"
msgstr "Lediglich die Struktur der Datenpakete anzeigen"
-#: g10/g10.c:206
+#: g10/g10.c:203
msgid "export the ownertrust values"
msgstr "Exportieren der \"Owner trust\" Werte"
-#: g10/g10.c:208
+#: g10/g10.c:205
msgid "import ownertrust values"
msgstr "Importieren der \"Owner trust\" Werte"
-#: g10/g10.c:210
+#: g10/g10.c:207
msgid "|[NAMES]|update the trust database"
msgstr "|[NAMEN]|�ndern der \"Trust\"-Datenbank"
-#: g10/g10.c:212
+#: g10/g10.c:209
msgid "|[NAMES]|check the trust database"
msgstr "|[NAMEN]|�berpr�fen der \"Trust\"-Datenbank"
-#: g10/g10.c:213
+#: g10/g10.c:210
msgid "fix a corrupted trust database"
msgstr "Reparieren einer besch�digten \"Trust\"-Datenbank"
-#: g10/g10.c:214
+#: g10/g10.c:211
msgid "De-Armor a file or stdin"
msgstr "Datei oder stdin von der ASCII-H�lle befreien"
-#: g10/g10.c:215
+#: g10/g10.c:212
msgid "En-Armor a file or stdin"
msgstr "Datei oder stdin in eine ASCII-H�lle einpacken"
-#: g10/g10.c:216
+#: g10/g10.c:213
msgid "|algo [files]|print message digests"
msgstr "|algo [Dateien]|Message-Digests f�r die Dateien ausgeben"
-#: g10/g10.c:217
+#: g10/g10.c:214
msgid "print all message digests"
msgstr "Message-Digests f�r die Eingabedaten ausgeben"
-#: g10/g10.c:223
+#: g10/g10.c:220
msgid ""
"@\n"
"Options:\n"
@@ -416,160 +416,160 @@ msgstr ""
"Optionen:\n"
" "
-#: g10/g10.c:225
+#: g10/g10.c:222
msgid "create ascii armored output"
msgstr "Ausgabe mit ASCII-H�lle versehen"
-#: g10/g10.c:226
+#: g10/g10.c:223
msgid "|NAME|encrypt for NAME"
msgstr "|NAME|Verschl�sseln f�r NAME"
-#: g10/g10.c:230
+#: g10/g10.c:227
msgid "use this user-id to sign or decrypt"
msgstr "Mit dieser User-ID signieren"
-#: g10/g10.c:231
+#: g10/g10.c:228
msgid "|N|set compress level N (0 disables)"
msgstr "Kompressionsstufe auf N setzen (0=keine Kompr.)"
-#: g10/g10.c:233
+#: g10/g10.c:230
msgid "use canonical text mode"
msgstr "Textmodus benutzen"
-#: g10/g10.c:234
+#: g10/g10.c:231
msgid "use as output file"
msgstr "Als Ausgabedatei benutzen"
-#: g10/g10.c:235
+#: g10/g10.c:232
msgid "verbose"
msgstr "Detaillierte Informationen"
-#: g10/g10.c:236
+#: g10/g10.c:233
msgid "be somewhat more quiet"
msgstr "Etwas weniger Infos"
-#: g10/g10.c:237
+#: g10/g10.c:234
msgid "don't use the terminal at all"
-msgstr ""
+msgstr "das Terminal gar nicht benutzen"
-#: g10/g10.c:238
+#: g10/g10.c:235
msgid "force v3 signatures"
msgstr "v3 Signaturen erzwingen"
-#: g10/g10.c:239
+#: g10/g10.c:236
msgid "always use a MDC for encryption"
msgstr "Beim Verschl�sseln ein Siegel (MDC) verwenden"
-#: g10/g10.c:240
+#: g10/g10.c:237
msgid "do not make any changes"
msgstr "Keine wirklichen �nderungen durchf�hren"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:242
+#: g10/g10.c:239
msgid "batch mode: never ask"
msgstr "Stapelmodus: Keine Abfragen"
-#: g10/g10.c:243
+#: g10/g10.c:240
msgid "assume yes on most questions"
msgstr "\"Ja\" als Standardantwort annehmen"
-#: g10/g10.c:244
+#: g10/g10.c:241
msgid "assume no on most questions"
msgstr "\"Nein\" als Standardantwort annehmen"
-#: g10/g10.c:245
+#: g10/g10.c:242
msgid "add this keyring to the list of keyrings"
msgstr "Als �ffentlichen Schl�sselbund mitbenutzen"
-#: g10/g10.c:246
+#: g10/g10.c:243
msgid "add this secret keyring to the list"
msgstr "Als geheimen Schl�sselbund mitbenutzen"
-#: g10/g10.c:247
+#: g10/g10.c:244
msgid "|NAME|use NAME as default secret key"
msgstr "|NAME|NAME als voreingestellten Schl�ssel benutzen"
-#: g10/g10.c:248
+#: g10/g10.c:245
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|HOST|Schl�ssel bei diesem Server nachschlagen"
-#: g10/g10.c:249
+#: g10/g10.c:246
msgid "|NAME|set terminal charset to NAME"
msgstr "|NAME|Terminalzeichensatz NAME benutzen"
-#: g10/g10.c:250
+#: g10/g10.c:247
msgid "read options from file"
msgstr "Optionen aus der Datei lesen"
-#: g10/g10.c:252
+#: g10/g10.c:249
msgid "set debugging flags"
msgstr "Debug-Flags einschalten"
-#: g10/g10.c:253
+#: g10/g10.c:250
msgid "enable full debugging"
msgstr "Alle Debug-Flags einschalten"
-#: g10/g10.c:254
+#: g10/g10.c:251
msgid "|FD|write status info to this FD"
msgstr "|FD|Statusinfo auf FD (Dateihandle) ausgeben"
-#: g10/g10.c:255
+#: g10/g10.c:252
msgid "do not write comment packets"
msgstr "Keine Kommentarpakete schreiben"
-#: g10/g10.c:256
+#: g10/g10.c:253
msgid "(default is 1)"
msgstr "Ben�tigte Vollvertrauen (Voreinstellung 1)"
-#: g10/g10.c:257
+#: g10/g10.c:254
msgid "(default is 3)"
msgstr "Ben�tigte Teilvertrauen (Voreinstellung 3)"
-#: g10/g10.c:259
+#: g10/g10.c:256
msgid "|FILE|load extension module FILE"
msgstr "|DATEI|Erweiterungsmodul DATEI laden"
-#: g10/g10.c:260
+#: g10/g10.c:257
msgid "emulate the mode described in RFC1991"
msgstr "Den in RFC1991 beschriebenen Modus nachahmen"
-#: g10/g10.c:261
+#: g10/g10.c:258
msgid "set all packet, cipher and digest options to OpenPGP behavior"
-msgstr ""
+msgstr "alle Paket-, Verschl�sselungs- und Hashoptionen auf OpenPGP-Verhalten einstellen"
-#: g10/g10.c:262
+#: g10/g10.c:259
msgid "|N|use passphrase mode N"
msgstr "|N|Verwenden des Mantra-Modus N"
-#: g10/g10.c:264
+#: g10/g10.c:261
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr "|NAME|Das Hashverfahren NAME f�r Mantras benutzen"
-#: g10/g10.c:266
+#: g10/g10.c:263
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|NAME|Das Verschl�.verfahren NAME f�r Mantras benutzen"
-#: g10/g10.c:267
+#: g10/g10.c:264
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NAME|Das Verschl�.verfahren NAME benutzen"
-#: g10/g10.c:268
+#: g10/g10.c:265
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NAME|Das Hashverfahren NAME benutzen"
-#: g10/g10.c:269
+#: g10/g10.c:266
msgid "|N|use compress algorithm N"
msgstr "|N|Die Komprimierverfahren N benutzen"
-#: g10/g10.c:270
+#: g10/g10.c:267
msgid "throw keyid field of encrypted packets"
msgstr "Entferne die Absender-ID verschl�sselter Pakete"
-#: g10/g10.c:271
+#: g10/g10.c:268
msgid "|NAME=VALUE|use this notation data"
msgstr "|NAME=WERT|verwende diese \"notation\"-Daten"
-#: g10/g10.c:273
+#: g10/g10.c:270
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:353
+#: g10/g10.c:347
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Berichte �ber Bugs (Programmfehler) bitte an <[email protected]>.\n"
-#: g10/g10.c:357
+#: g10/g10.c:351
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Aufruf: gpg [Optionen] [Dateien] (-h f�r Hilfe)"
-#: g10/g10.c:360
+#: g10/g10.c:354
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:365
+#: g10/g10.c:359
msgid ""
"\n"
"Supported algorithms:\n"
@@ -615,161 +615,161 @@ msgstr ""
"\n"
"Unterst�tzte Verfahren:\n"
-#: g10/g10.c:439
+#: g10/g10.c:433
msgid "usage: gpg [options] "
msgstr "Aufruf: gpg [Optionen] "
-#: g10/g10.c:492
+#: g10/g10.c:473
msgid "conflicting commands\n"
msgstr "Widerspr�chliche Befehle\n"
-#: g10/g10.c:626
+#: g10/g10.c:605
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n"
-#: g10/g10.c:630
+#: g10/g10.c:609
#, c-format
msgid "option file `%s': %s\n"
msgstr "Optionendatei '%s': %s\n"
-#: g10/g10.c:637
+#: g10/g10.c:616
#, c-format
msgid "reading options from `%s'\n"
msgstr "Optionen werden aus '%s' gelesen\n"
-#: g10/g10.c:805
+#: g10/g10.c:782
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s ist kein g�ltiger Zeichensatz.\n"
-#: g10/g10.c:852 g10/g10.c:864
+#: g10/g10.c:827 g10/g10.c:839
msgid "selected cipher algorithm is invalid\n"
msgstr "Das ausgew�hlte Verschl�sslungsverfahren ist ung�ltig\n"
-#: g10/g10.c:858 g10/g10.c:870
+#: g10/g10.c:833 g10/g10.c:845
msgid "selected digest algorithm is invalid\n"
msgstr "Das ausgew�hlte Hashverfahren ist ung�ltig\n"
-#: g10/g10.c:874
+#: g10/g10.c:849
msgid "the given policy URL is invalid\n"
msgstr "Die angegebene URL f�r Richtlinien ist ung�ltig\n"
-#: g10/g10.c:877
+#: g10/g10.c:852
#, 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:879
+#: g10/g10.c:854
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed m�ssen gr��er als 0 sein\n"
-#: g10/g10.c:881
+#: g10/g10.c:856
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed m�ssen gr��er als 1 sein\n"
-#: g10/g10.c:883
+#: g10/g10.c:858
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:886
+#: g10/g10.c:861
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n"
-#: g10/g10.c:890
+#: g10/g10.c:865
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:967
+#: g10/g10.c:942
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n"
-#: g10/g10.c:973
+#: g10/g10.c:948
msgid "--store [filename]"
msgstr "--store [Dateiname]"
-#: g10/g10.c:980
+#: g10/g10.c:955
msgid "--symmetric [filename]"
msgstr "--symmetric [Dateiname]"
-#: g10/g10.c:988
+#: g10/g10.c:963
msgid "--encrypt [filename]"
msgstr "--encrypt [Dateiname]"
-#: g10/g10.c:1001
+#: g10/g10.c:976
msgid "--sign [filename]"
msgstr "--sign [Dateiname]"
-#: g10/g10.c:1014
+#: g10/g10.c:989
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [Dateiname]"
-#: g10/g10.c:1028
+#: g10/g10.c:1003
msgid "--clearsign [filename]"
msgstr "--clearsign [Dateiname]"
-#: g10/g10.c:1040
+#: g10/g10.c:1015
msgid "--decrypt [filename]"
msgstr "--decrypt [Dateiname]"
-#: g10/g10.c:1049
+#: g10/g10.c:1024
msgid "--edit-key username [commands]"
msgstr "--edit-key Username [Befehle]"
-#: g10/g10.c:1063
+#: g10/g10.c:1038
msgid "--delete-secret-key username"
msgstr "--delete-secret-key Username"
-#: g10/g10.c:1066
+#: g10/g10.c:1041
msgid "--delete-key username"
msgstr "--delete-key Benutzername"
-#: g10/encode.c:231 g10/g10.c:1090 g10/sign.c:366
+#: g10/encode.c:231 g10/g10.c:1064 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:1101
+#: g10/g10.c:1075
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [Benutzername] [Keyring]"
-#: g10/g10.c:1162
+#: g10/g10.c:1134
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "Entfernen der ASCII-H�lle ist fehlgeschlagen: %s\n"
-#: g10/g10.c:1170
+#: g10/g10.c:1142
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "Anbringen der ASCII-H�lle ist fehlgeschlagen: %s\n"
-#: g10/g10.c:1236
+#: g10/g10.c:1208
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "Ung�ltiges Hashverfahren '%s'\n"
-#: g10/g10.c:1317
+#: g10/g10.c:1283
msgid "[filename]"
msgstr "[Dateiname]"
-#: g10/g10.c:1321
+#: g10/g10.c:1287
msgid "Go ahead and type your message ...\n"
msgstr "Auf geht's - Botschaft eintippen ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1324 g10/verify.c:66
+#: g10/decrypt.c:59 g10/g10.c:1290 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "'%s' kann nicht ge�ffnet werden\n"
-#: g10/g10.c:1493
+#: g10/g10.c:1457
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:1499
+#: g10/g10.c:1463
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:1505
+#: g10/g10.c:1469
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:1513
+#: g10/g10.c:1477
msgid "a notation value must not use any control characters\n"
msgstr "Ein \"notation\"-Wert darf keine Kontrollzeichen verwenden\n"
@@ -915,7 +915,7 @@ msgstr "Ihre Auswahl? "
msgid "Certificates leading to an ultimately trusted key:\n"
msgstr "Zertifikate f�hren zu einem letztlich vertrauensw�rdigen Schl�ssel:\n"
-#: g10/pkclist.c:256
+#: g10/pkclist.c:254
msgid ""
"Could not find a valid trust path to the key. Let's see whether we\n"
"can assign some missing owner trust values.\n"
@@ -926,7 +926,7 @@ msgstr ""
"ermitteln k�nnen.\n"
"\n"
-#: g10/pkclist.c:262
+#: g10/pkclist.c:260
msgid ""
"No path leading to one of our keys found.\n"
"\n"
@@ -934,7 +934,7 @@ msgstr ""
"Kein Pfad f�hrt zu einen unserer Schl�sseln.\n"
"\n"
-#: g10/pkclist.c:264
+#: g10/pkclist.c:262
msgid ""
"No certificates with undefined trust found.\n"
"\n"
@@ -942,7 +942,7 @@ msgstr ""
"Keine Zertifikate mit undefinierten Vertrauen gefunden.\n"
"\n"
-#: g10/pkclist.c:266
+#: g10/pkclist.c:264
msgid ""
"No trust values changed.\n"
"\n"
@@ -950,38 +950,38 @@ msgstr ""
"Keine \"trust\" Werte ge�ndert.\n"
"\n"
-#: g10/pkclist.c:283
+#: g10/pkclist.c:281
#, c-format
msgid "key %08lX: key has been revoked!\n"
msgstr "Schl�ssel %08lX: Schl�ssel wurde widerrufen\n"
-#: g10/pkclist.c:289 g10/pkclist.c:299 g10/pkclist.c:405
+#: g10/pkclist.c:287 g10/pkclist.c:297 g10/pkclist.c:403
msgid "Use this key anyway? "
msgstr "Diesen Schl�ssel trotzdem benutzen?"
-#: g10/pkclist.c:293
+#: g10/pkclist.c:291
#, c-format
msgid "key %08lX: subkey has been revoked!\n"
msgstr "Schl�ssel %08lX: Unterschl�ssel wurde widerrufen\n"
-#: g10/pkclist.c:323
+#: g10/pkclist.c:321
#, c-format
msgid "%08lX: key has expired\n"
msgstr "%08lX: Schl�ssel ist verfallen!\n"
-#: g10/pkclist.c:329
+#: g10/pkclist.c:327
#, c-format
msgid "%08lX: no info to calculate a trust probability\n"
msgstr ""
"%08lX: Keine Infos zur Berechnung der Vertrauenswahrscheinlichkeit "
"vorgefunden\n"
-#: g10/pkclist.c:343
+#: g10/pkclist.c:341
#, c-format
msgid "%08lX: We do NOT trust this key\n"
msgstr "%08lX: Wir haben KEIN Vertrauen zu diesem Schl�ssel!\n"
-#: g10/pkclist.c:349
+#: g10/pkclist.c:347
#, c-format
msgid ""
"%08lX: It is not sure that this key really belongs to the owner\n"
@@ -990,18 +990,18 @@ msgstr ""
"%08lX: Es ist nicht sicher, da� dieser Schl�ssel wirklich dem vorgeblichen\n"
"Besitzer geh�rt, aber er wird trotzdem akzeptiert\n"
-#: g10/pkclist.c:355
+#: g10/pkclist.c:353
msgid "This key probably belongs to the owner\n"
msgstr ""
"Dieser Schl�ssel geh�rt h�chstwahrscheinlich dem angegebenen Besitzer\n"
-#: g10/pkclist.c:360
+#: g10/pkclist.c:358
msgid "This key belongs to us\n"
msgstr ""
"Dieser Schl�ssel geh�rt uns (da wir n�mlich den geheimen Schl�ssel dazu "
"haben)\n"
-#: g10/pkclist.c:400
+#: g10/pkclist.c:398
msgid ""
"It is NOT certain that the key belongs to its owner.\n"
"If you *really* know what you are doing, you may answer\n"
@@ -1012,69 +1012,69 @@ msgstr ""
"Wenn Sie *wirklich* wissen, was Sie tun, k�nnen Sie die n�chste\n"
"Frage mit ja beantworten\n"
-#: g10/pkclist.c:413 g10/pkclist.c:435
+#: g10/pkclist.c:411 g10/pkclist.c:433
msgid "WARNING: Using untrusted key!\n"
msgstr "WARNUNG: Ein Schl�ssel ohne gesichertes Vertrauen wird benutzt!\n"
-#: g10/pkclist.c:456
+#: g10/pkclist.c:454
msgid "WARNING: This key has been revoked by its owner!\n"
msgstr "WARNUNG: Dieser Schl�ssel wurde von seinem Besitzer widerrufen!\n"
-#: g10/pkclist.c:457
+#: g10/pkclist.c:455
msgid " This could mean that the signature is forgery.\n"
msgstr " Das k�nnte bedeuten, da� die Signatur gef�lscht ist.\n"
-#: g10/pkclist.c:461
+#: g10/pkclist.c:459
msgid "WARNING: This subkey has been revoked by its owner!\n"
msgstr "WARNUNG: Dieser Unterschl�ssel wurde von seinem Besitzer widerrufen!\n"
-#: g10/pkclist.c:482
+#: g10/pkclist.c:480
msgid "Note: This key has expired!\n"
msgstr "Hinweis: Dieser Schl�ssel ist verfallen!\n"
-#: g10/pkclist.c:489
+#: g10/pkclist.c:487
msgid "WARNING: This key is not certified with a trusted signature!\n"
msgstr "WARNUNG: Dieser Schl�ssel tr�gt keine vertrauensw�rdige Signatur!\n"
-#: g10/pkclist.c:491
+#: g10/pkclist.c:489
msgid ""
" There is no indication that the signature belongs to the owner.\n"
msgstr ""
" Es gibt keinen Hinweis, da� die Signatur wirklich dem vorgeblichen "
"Besitzer geh�rt.\n"
-#: g10/pkclist.c:507
+#: g10/pkclist.c:505
msgid "WARNING: We do NOT trust this key!\n"
msgstr "WARNUNG: Wir haben KEIN Vertrauen zu diesem Schl�ssel!\n"
-#: g10/pkclist.c:508
+#: g10/pkclist.c:506
msgid " The signature is probably a FORGERY.\n"
msgstr " Die Signatur ist wahrscheinlich eine F�LSCHUNG.\n"
-#: g10/pkclist.c:515
+#: g10/pkclist.c:513
msgid ""
"WARNING: This key is not certified with sufficiently trusted signatures!\n"
msgstr ""
"WARNUNG: Dieser Schl�ssel ist nicht durch hinreichend vertrauensw�rdige "
"Signaturen zertifiziert!\n"
-#: g10/pkclist.c:518
+#: g10/pkclist.c:516
msgid " It is not certain that the signature belongs to the owner.\n"
msgstr ""
" Es ist nicht sicher, da� die Signatur wirklich dem vorgeblichen "
"Besitzer geh�rt.\n"
-#: g10/pkclist.c:582 g10/pkclist.c:604 g10/pkclist.c:670 g10/pkclist.c:715
+#: g10/pkclist.c:580 g10/pkclist.c:602 g10/pkclist.c:665 g10/pkclist.c:705
#, c-format
msgid "%s: skipped: %s\n"
msgstr "%s: �bersprungen: %s\n"
-#: g10/pkclist.c:590 g10/pkclist.c:697
-#, fuzzy, c-format
+#: g10/pkclist.c:588 g10/pkclist.c:687
+#, c-format
msgid "%s: skipped: public key already present\n"
-msgstr "%s: Schl�sselblock Leseproblem: %s\n"
+msgstr "%s: �bersprungen: �ffentlicher Schl�ssel bereits vorhanden\n"
-#: g10/pkclist.c:613
+#: g10/pkclist.c:611
msgid ""
"You did not specify a user ID. (you may use \"-r\")\n"
"\n"
@@ -1082,30 +1082,20 @@ msgstr ""
"Sie gaben keine User-ID angegeben (Benutzen Sie die Option \"-r\").\n"
"\n"
-#: g10/pkclist.c:618
+#: g10/pkclist.c:616
msgid "Enter the user ID: "
msgstr "Geben Sie die User-ID ein: "
-#: g10/pkclist.c:629
+#: g10/pkclist.c:627
msgid "No such user ID.\n"
msgstr "Keine solche User-ID vorhanden.\n"
-#: g10/pkclist.c:639
-#, fuzzy
-msgid "Public key is disabled.\n"
-msgstr "�ffentlicher Schl�ssel ist %08lX\n"
-
-#: g10/pkclist.c:678
+#: g10/pkclist.c:673
#, c-format
msgid "%s: error checking key: %s\n"
msgstr "%s: Fehler beim Pr�fen des Schl�ssels: %s\n"
-#: g10/pkclist.c:683
-#, fuzzy, c-format
-msgid "%s: skipped: public key is disabled\n"
-msgstr "%s: Schl�sselblock Leseproblem: %s\n"
-
-#: g10/pkclist.c:721
+#: g10/pkclist.c:711
msgid "no valid addressees\n"
msgstr "Keine g�ltigen Adressaten\n"
@@ -1248,29 +1238,29 @@ msgstr ""
" <n>m = Schl�ssel verf�llt nach n Monaten\n"
" <n>y = Schl�ssel verf�llt nach n Jahren\n"
-#: g10/keygen.c:526
+#: g10/keygen.c:524
msgid "Key is valid for? (0) "
msgstr "Der Schl�ssel bleibt wie lange g�ltig? (0) "
-#: g10/keygen.c:547
+#: g10/keygen.c:535
msgid "invalid value\n"
msgstr "Ung�ltiger Wert.\n"
-#: g10/keygen.c:552
+#: g10/keygen.c:540
msgid "Key does not expire at all\n"
msgstr "Der Schl�ssel verf�llt nie.\n"
#. print the date when the key expires
-#: g10/keygen.c:558
+#: g10/keygen.c:546
#, c-format
msgid "Key expires at %s\n"
msgstr "Der Schl�ssel verf�llt am %s\n"
-#: g10/keygen.c:564
+#: g10/keygen.c:552
msgid "Is this correct (y/n)? "
msgstr "Ist dies richtig? (j/n) "
-#: g10/keygen.c:607
+#: g10/keygen.c:595
msgid ""
"\n"
"You need a User-ID to identify your key; the software constructs the user "
@@ -1286,44 +1276,44 @@ msgstr ""
" \"Heinrich Heine (Der Dichter) <[email protected]>\"\n"
"\n"
-#: g10/keygen.c:618
+#: g10/keygen.c:606
msgid "Real name: "
msgstr "Ihr Name (\"Vorname Nachname\"): "
-#: g10/keygen.c:622
+#: g10/keygen.c:610
msgid "Invalid character in name\n"
msgstr "Ung�ltiges Zeichen im Namen\n"
-#: g10/keygen.c:624
+#: g10/keygen.c:612
msgid "Name may not start with a digit\n"
msgstr "Der Name darf nicht mit einer Ziffer beginnen.\n"
-#: g10/keygen.c:626
+#: g10/keygen.c:614
msgid "Name must be at least 5 characters long\n"
msgstr "Der Name mu� min. 5 Zeichen lang sein.\n"
-#: g10/keygen.c:634
+#: g10/keygen.c:622
msgid "Email address: "
msgstr "E-Mail-Adresse: "
-#: g10/keygen.c:645
+#: g10/keygen.c:633
msgid "Not a valid email address\n"
msgstr "Diese E-Mail-Adresse ist ung�ltig\n"
-#: g10/keygen.c:653
+#: g10/keygen.c:641
msgid "Comment: "
msgstr "Kommentar: "
-#: g10/keygen.c:659
+#: g10/keygen.c:647
msgid "Invalid character in comment\n"
msgstr "Ung�ltiges Zeichen im Kommentar.\n"
-#: g10/keygen.c:681
+#: g10/keygen.c:669
#, c-format
msgid "You are using the `%s' character set.\n"
msgstr "Sie benutzen den Zeichensatz `%s'\n"
-#: g10/keygen.c:687
+#: g10/keygen.c:675
#, c-format
msgid ""
"You selected this USER-ID:\n"
@@ -1334,15 +1324,15 @@ msgstr ""
" \"%s\"\n"
"\n"
-#: g10/keygen.c:690
+#: g10/keygen.c:678
msgid "NnCcEeOoQq"
msgstr "NnKkEeFfBb"
-#: g10/keygen.c:700
+#: g10/keygen.c:688
msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? "
msgstr "�ndern: (N)ame, (K)ommentar, (E)-Mail oder (F)ertig/(B)eenden? "
-#: g10/keygen.c:752
+#: g10/keygen.c:740
msgid ""
"You need a Passphrase to protect your secret key.\n"
"\n"
@@ -1350,11 +1340,11 @@ msgstr ""
"Sie ben�tigen ein Mantra, um den geheimen Schl�ssel zu sch�tzen.\n"
"\n"
-#: g10/keyedit.c:456 g10/keygen.c:760
+#: g10/keyedit.c:456 g10/keygen.c:748
msgid "passphrase not correctly repeated; try again.\n"
msgstr "Mantra wurde nicht richtig wiederholt; noch einmal versuchen.\n"
-#: g10/keygen.c:766
+#: g10/keygen.c:754
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"I will do it anyway. You can change your passphrase at any time,\n"
@@ -1367,7 +1357,7 @@ msgstr ""
"aufrufen.\n"
"\n"
-#: g10/keygen.c:787
+#: g10/keygen.c:775
msgid ""
"We need to generate a lot of random bytes. It is a good idea to perform\n"
"some other action (type on the keyboard, move the mouse, utilize the\n"
@@ -1378,35 +1368,34 @@ msgstr ""
"unterst�tzen, indem Sie z.B. in einem anderen Fenster/Konsole irgendetwas\n"
"tippen, die Maus verwenden oder irgendwelche anderen Programme benutzen.\n"
-#: g10/keygen.c:857
+#: g10/keygen.c:845
msgid "Key generation can only be used in interactive mode\n"
msgstr ""
"Die Schl�sselerzeugung kann nur im interaktiven Modus benutzt werden.\n"
-#: g10/keygen.c:865
+#: g10/keygen.c:853
msgid "DSA keypair will have 1024 bits.\n"
msgstr "Der DSA Schl�ssel wird 1024 Bits haben.\n"
-#: g10/keygen.c:871
-#, fuzzy
+#: g10/keygen.c:859
msgid "Key generation canceled.\n"
msgstr "Schl�sselerzeugung abgebrochen.\n"
-#: g10/keygen.c:881
+#: g10/keygen.c:869
#, c-format
msgid "writing public certificate to `%s'\n"
msgstr "schreiben des �ffentlichen Zertifikats nach '%s'\n"
-#: g10/keygen.c:882
+#: g10/keygen.c:870
#, c-format
msgid "writing secret certificate to `%s'\n"
msgstr "schreiben des geheimen Zertifikats nach '%s'\n"
-#: g10/keygen.c:959
+#: g10/keygen.c:947
msgid "public and secret key created and signed.\n"
msgstr "�ffentlichen und geheimen Schl�ssel erzeugt und signiert.\n"
-#: g10/keygen.c:961
+#: g10/keygen.c:949
msgid ""
"Note that this key cannot be used for encryption. You may want to use\n"
"the command \"--edit-key\" to generate a secondary key for this purpose.\n"
@@ -1415,12 +1404,12 @@ msgstr ""
"werden kann. Sie k�nnen aber mit dem Befehl \"--edit-key\" einen\n"
"Zweitschl�ssel f�r diesem Zweck erzeugen.\n"
-#: g10/keygen.c:975 g10/keygen.c:1074
+#: g10/keygen.c:963 g10/keygen.c:1062
#, c-format
msgid "Key generation failed: %s\n"
msgstr "Schl�sselerzeugung fehlgeschlagen: %s\n"
-#: g10/keygen.c:1019 g10/sig-check.c:312 g10/sign.c:105
+#: g10/keygen.c:1007 g10/sig-check.c:300 g10/sign.c:105
#, c-format
msgid ""
"key has been created %lu second in future (time warp or clock problem)\n"
@@ -1428,7 +1417,7 @@ msgstr ""
"Der Schl�ssel wurde %lu Sekunde in der Zukunft erzeugt (Zeitreise oder Uhren "
"stimmen nicht �berein)\n"
-#: g10/keygen.c:1021 g10/sig-check.c:314 g10/sign.c:107
+#: g10/keygen.c:1009 g10/sig-check.c:302 g10/sign.c:107
#, c-format
msgid ""
"key has been created %lu seconds in future (time warp or clock problem)\n"
@@ -1436,11 +1425,11 @@ msgstr ""
"Der Schl�ssel wurde %lu Sekunden in der Zukunft erzeugt (Zeitreise oder "
"Uhren stimmen nicht �berein)\n"
-#: g10/keygen.c:1052
+#: g10/keygen.c:1040
msgid "Really create? "
msgstr "Wirklich erzeugen? "
-#: g10/encode.c:91 g10/openfile.c:156 g10/openfile.c:246 g10/tdbio.c:467
+#: g10/encode.c:91 g10/openfile.c:118 g10/openfile.c:208 g10/tdbio.c:467
#: g10/tdbio.c:528
#, c-format
msgid "%s: can't open: %s\n"
@@ -1509,7 +1498,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:1658 g10/trustdb.c:1697
+#: g10/import.c:167 g10/trustdb.c:1670 g10/trustdb.c:1711
#, c-format
msgid "%lu keys so far processed\n"
msgstr "%lu Schl�ssel bislang bearbeitet\n"
@@ -1574,7 +1563,7 @@ msgstr "geheime Schl�ssel importiert: %lu\n"
msgid " secret keys unchanged: %lu\n"
msgstr " unver�nderte geh.Schl.: %lu\n"
-#: g10/import.c:342 g10/import.c:526
+#: g10/import.c:342 g10/import.c:529
#, c-format
msgid "key %08lX: no user id\n"
msgstr "Schl�ssel %08lX: Keine User-ID\n"
@@ -1588,7 +1577,7 @@ msgstr "Schl�ssel %08lX: Keine g�ltigen User-IDs\n"
msgid "this may be caused by a missing self-signature\n"
msgstr "dies k�nnte durch fehlende Eigenbeglaubigung verursacht worden sein\n"
-#: g10/import.c:366 g10/import.c:593
+#: g10/import.c:366 g10/import.c:596
#, c-format
msgid "key %08lX: public key not found: %s\n"
msgstr "Schl�ssel %08lX: �ffentlicher Schl�ssel nicht gefunden: %s\n"
@@ -1597,17 +1586,17 @@ msgstr "Schl�ssel %08lX: �ffentlicher Schl�ssel nicht gefunden: %s\n"
msgid "no default public keyring\n"
msgstr "Kein voreingestellter �ffentlicher Schl�sselbund\n"
-#: g10/import.c:376 g10/openfile.c:186 g10/sign.c:268 g10/sign.c:559
+#: g10/import.c:376 g10/openfile.c:148 g10/sign.c:268 g10/sign.c:559
#, c-format
msgid "writing to `%s'\n"
msgstr "Schreiben nach '%s'\n"
-#: g10/import.c:379 g10/import.c:432 g10/import.c:541 g10/import.c:642
+#: g10/import.c:379 g10/import.c:435 g10/import.c:544 g10/import.c:645
#, c-format
msgid "can't lock keyring `%s': %s\n"
msgstr "kann Schl�sselbund `%s' nicht sperren: %s\n"
-#: g10/import.c:382 g10/import.c:435 g10/import.c:544 g10/import.c:645
+#: g10/import.c:382 g10/import.c:438 g10/import.c:547 g10/import.c:648
#, c-format
msgid "error writing keyring `%s': %s\n"
msgstr "Fehler beim Schreiben des Schl�sselbundes `%s': %s\n"
@@ -1622,118 +1611,118 @@ msgstr "Schl�ssel %08lX: �ffentlicher Schl�ssel importiert\n"
msgid "key %08lX: doesn't match our copy\n"
msgstr "Schl�ssel %08lX: Stimmt nicht mit unserer Kopie �berein\n"
-#: g10/import.c:408 g10/import.c:601
+#: g10/import.c:411 g10/import.c:604
#, c-format
msgid "key %08lX: can't locate original keyblock: %s\n"
msgstr ""
"Schl�ssel %08lX: der lokale originale Schl�sselblocks wurde nicht gefunden: "
"%s\n"
-#: g10/import.c:414 g10/import.c:607
+#: g10/import.c:417 g10/import.c:610
#, c-format
msgid "key %08lX: can't read original keyblock: %s\n"
msgstr ""
"Schl�ssel %08lX: Lesefehler im lokalen originalen Schl�sselblocks: %s\n"
-#: g10/import.c:441
+#: g10/import.c:444
#, c-format
msgid "key %08lX: 1 new user-id\n"
msgstr "Schl�ssel %08lX: 1 neue User-ID\n"
-#: g10/import.c:444
+#: g10/import.c:447
#, c-format
msgid "key %08lX: %d new user-ids\n"
msgstr "Schl�ssel %08lX: %d neue User-IDs\n"
-#: g10/import.c:447
+#: g10/import.c:450
#, c-format
msgid "key %08lX: 1 new signature\n"
msgstr "Schl�ssel %08lX: 1 neue Signatur\n"
-#: g10/import.c:450
+#: g10/import.c:453
#, c-format
msgid "key %08lX: %d new signatures\n"
msgstr "Schl�ssel %08lX: %d neue Signaturen\n"
-#: g10/import.c:453
+#: g10/import.c:456
#, c-format
msgid "key %08lX: 1 new subkey\n"
msgstr "Schl�ssel %08lX: 1 neuer Unterschl�ssel\n"
-#: g10/import.c:456
+#: g10/import.c:459
#, c-format
msgid "key %08lX: %d new subkeys\n"
msgstr "Schl�ssel %08lX: %d neue Unterschl�ssel\n"
-#: g10/import.c:466
+#: g10/import.c:469
#, c-format
msgid "key %08lX: not changed\n"
msgstr "Schl�ssel %08lX: Nicht ge�ndert\n"
-#: g10/import.c:549
+#: g10/import.c:552
#, c-format
msgid "key %08lX: secret key imported\n"
msgstr "Schl�ssel %08lX: Geheimer Schl�ssel importiert\n"
#. we can't merge secret keys
-#: g10/import.c:553
+#: g10/import.c:556
#, c-format
msgid "key %08lX: already in secret keyring\n"
msgstr "Schl�ssel %08lX: Ist bereits im geheimen Schl�sselbund\n"
-#: g10/import.c:558
+#: g10/import.c:561
#, c-format
msgid "key %08lX: secret key not found: %s\n"
msgstr "Schl�ssel %08lX: geheimer Schl�ssel nicht gefunden: %s\n"
-#: g10/import.c:587
+#: g10/import.c:590
#, c-format
msgid "key %08lX: no public key - can't apply revocation certificate\n"
msgstr ""
"Schl�ssel %08lX: Kein �ffentlicher Schl�ssel - der Schl�sselwiderruf kann "
"nicht angebracht werden\n"
-#: g10/import.c:618
+#: g10/import.c:621
#, c-format
msgid "key %08lX: invalid revocation certificate: %s - rejected\n"
msgstr "Schl�ssel %08lX: Ung�ltiges Widerrufzertifikat: %s - zur�ckgewiesen\n"
-#: g10/import.c:650
+#: g10/import.c:653
#, c-format
msgid "key %08lX: revocation certificate imported\n"
msgstr "Schl�ssel %08lX: Widerrufzertifikat importiert\n"
-#: g10/import.c:683
+#: g10/import.c:686
#, c-format
msgid "key %08lX: no user-id for signature\n"
msgstr "Schl�ssel %08lX: Keine User-ID f�r Signatur\n"
-#: g10/import.c:690 g10/import.c:714
+#: g10/import.c:693 g10/import.c:717
#, c-format
msgid "key %08lX: unsupported public key algorithm\n"
msgstr "Schl�ssel %08lX: Nicht unterst�tzetes Public-Key-Verfahren\n"
-#: g10/import.c:691
+#: g10/import.c:694
#, c-format
msgid "key %08lX: invalid self-signature\n"
msgstr "Schl�ssel %08lX: Ung�ltige Eigenbeglaubigung\n"
-#: g10/import.c:706
+#: g10/import.c:709
#, c-format
msgid "key %08lX: no subkey for key binding\n"
msgstr "Schl�ssel %08lX: Kein Unterschl�ssel f�r die Schl�sselanbindung\n"
-#: g10/import.c:715
+#: g10/import.c:718
#, c-format
msgid "key %08lX: invalid subkey binding\n"
msgstr "Schl�ssel %08lX: Ung�ltige Unterschl�ssel-Anbindung\n"
-#: g10/import.c:747
+#: g10/import.c:750
#, c-format
msgid "key %08lX: skipped userid '"
msgstr "Schl�ssel %08lX: �bergehe User-ID '"
-#: g10/import.c:770
+#: g10/import.c:773
#, c-format
msgid "key %08lX: skipped subkey\n"
msgstr "Schl�ssel %08lX: Unterschl�ssel ignoriert\n"
@@ -1742,32 +1731,32 @@ msgstr "Schl�ssel %08lX: Unterschl�ssel ignoriert\n"
#. * to import non-exportable signature when we have the
#. * the secret key used to create this signature - it
#. * seems that this makes sense
-#: g10/import.c:795
+#: g10/import.c:798
#, c-format
msgid "key %08lX: non exportable signature (class %02x) - skipped\n"
msgstr "Schl�ssel %08lX: Nicht exportf�hige Unterschrift - �bergangen\n"
-#: g10/import.c:804
+#: g10/import.c:807
#, c-format
msgid "key %08lX: revocation certificate at wrong place - skipped\n"
msgstr "Schl�ssel %08lX: Widerrufzertifikat an falschem Platz - �bergangen\n"
-#: g10/import.c:812
+#: g10/import.c:815
#, c-format
msgid "key %08lX: invalid revocation certificate: %s - skipped\n"
msgstr "Schl�ssel %08lX: Ung�ltiges Widerrufzertifikat: %s - �bergangen\n"
-#: g10/import.c:912
+#: g10/import.c:915
#, c-format
msgid "key %08lX: duplicated user ID detected - merged\n"
msgstr "Schl�ssel %08lX: Doppelte User-ID entdeckt - zusammengef�hrt\n"
-#: g10/import.c:963
+#: g10/import.c:966
#, c-format
msgid "key %08lX: revocation certificate added\n"
msgstr "Schl�ssel %08lX: Widerrufzertifikat hinzugef�gt\n"
-#: g10/import.c:1076 g10/import.c:1131
+#: g10/import.c:1079 g10/import.c:1134
#, c-format
msgid "key %08lX: our copy has no self-signature\n"
msgstr "Schl�ssel %08lX: Unsere Kopie hat keine Eigenbeglaubigung\n"
@@ -1853,7 +1842,7 @@ msgstr ""
msgid "Really sign? "
msgstr "Wirklich unterschreiben? "
-#: g10/keyedit.c:370 g10/keyedit.c:1806 g10/keyedit.c:1855 g10/sign.c:128
+#: g10/keyedit.c:370 g10/keyedit.c:1800 g10/keyedit.c:1849 g10/sign.c:128
#, c-format
msgid "signing failed: %s\n"
msgstr "Beglaubigung fehlgeschlagen: %s\n"
@@ -2093,21 +2082,19 @@ msgstr "Einen Zweitschl�ssel widerrufen"
#: g10/keyedit.c:591
msgid "disable"
-msgstr ""
+msgstr "disable"
#: g10/keyedit.c:591
-#, fuzzy
msgid "disable a key"
-msgstr "Falscher Schl�ssel"
+msgstr "Schl�ssel abschalten"
#: g10/keyedit.c:592
msgid "enable"
-msgstr ""
+msgstr "enable"
#: g10/keyedit.c:592
-#, fuzzy
msgid "enable a key"
-msgstr "Falscher Schl�ssel"
+msgstr "Schl�ssel anschalten"
#: g10/keyedit.c:611
msgid "can't do that in batchmode\n"
@@ -2202,83 +2189,75 @@ msgstr "M�chten Sie diesen Schl�ssel wirklich wiederrufen? "
msgid "Invalid command (try \"help\")\n"
msgstr "Ung�ltiger Befehl (versuchen Sie's mal mit \"help\")\n"
-#: g10/keyedit.c:1039
-#, fuzzy
-msgid "This key has been disabled"
-msgstr "Hinweis: Dieser Schl�ssel ist verfallen!\n"
-
-#: g10/keyedit.c:1310
+#: g10/keyedit.c:1304
msgid "Delete this good signature? (y/N/q)"
msgstr "Diese korrekte Beglaubigung entfernen? (j/N/q)"
-#: g10/keyedit.c:1314
+#: g10/keyedit.c:1308
msgid "Delete this invalid signature? (y/N/q)"
msgstr "Diese ung�ltige Beglaubigung entfernen= (j/N/q)"
-#: g10/keyedit.c:1318
-#, fuzzy
+#: g10/keyedit.c:1312
msgid "Delete this unknown signature? (y/N/q)"
-msgstr "Diese korrekte Beglaubigung entfernen? (j/N/q)"
+msgstr "Diese unbekannte Beglaubigung entfernen? (j/N/q)"
-#: g10/keyedit.c:1324
+#: g10/keyedit.c:1318
msgid "Really delete this self-signature? (y/N)"
msgstr "Eigenbeglaubigung wirklich entfernen? (j/N)"
-#: g10/keyedit.c:1338
+#: g10/keyedit.c:1332
#, c-format
msgid "Deleted %d signature.\n"
msgstr "%d Beglaubigungen entfernt.\n"
-#: g10/keyedit.c:1339
+#: g10/keyedit.c:1333
#, c-format
msgid "Deleted %d signatures.\n"
msgstr "%d Beglaubigungen entfernt.\n"
-#: g10/keyedit.c:1342
+#: g10/keyedit.c:1336
msgid "Nothing deleted.\n"
msgstr "Nichts entfernt.\n"
-#: g10/keyedit.c:1411
+#: g10/keyedit.c:1405
msgid "Please remove selections from the secret keys.\n"
msgstr "Bitte entfernen Sie die Auswahl von den geheimen Schl�sseln.\n"
-#: g10/keyedit.c:1417
+#: g10/keyedit.c:1411
msgid "Please select at most one secondary key.\n"
msgstr "Bitte w�hlen Sie h�chstens einen Zweitschl�ssel aus.\n"
-#: g10/keyedit.c:1421
-#, fuzzy
+#: g10/keyedit.c:1415
msgid "Changing expiration time for a secondary key.\n"
msgstr "�ndern des Verfallsdatums des Zweitschl�ssels.\n"
-#: g10/keyedit.c:1423
-#, fuzzy
+#: g10/keyedit.c:1417
msgid "Changing expiration time for the primary key.\n"
msgstr "�ndern des Verfallsdatums des Hauptschl�ssels.\n"
-#: g10/keyedit.c:1464
+#: g10/keyedit.c:1458
msgid "You can't change the expiration date of a v3 key\n"
msgstr "Sie k�nnen das Verfallsdatum eines v3-Schl�ssels nicht �ndern\n"
-#: g10/keyedit.c:1480
+#: g10/keyedit.c:1474
msgid "No corresponding signature in secret ring\n"
msgstr "Keine entsprechende Signatur im geheimen Schl�sselbund\n"
-#: g10/keyedit.c:1540
+#: g10/keyedit.c:1534
#, c-format
msgid "No user id with index %d\n"
msgstr "Keine User-ID mit Index %d\n"
-#: g10/keyedit.c:1586
+#: g10/keyedit.c:1580
#, c-format
msgid "No secondary key with index %d\n"
msgstr "Kein Zweitschl�ssel mit Index %d\n"
-#: g10/keyedit.c:1684
+#: g10/keyedit.c:1678
msgid "user ID: \""
msgstr "User-ID: \""
-#: g10/keyedit.c:1687
+#: g10/keyedit.c:1681
#, c-format
msgid ""
"\"\n"
@@ -2287,116 +2266,104 @@ msgstr ""
"\"\n"
"unterschrieben mit Ihrem Schl�ssel %08lX um %s\n"
-#: g10/keyedit.c:1691
+#: g10/keyedit.c:1685
msgid "Create a revocation certificate for this signature? (y/N)"
msgstr "Ein Widerrufszertifikat f�r diese Unterschrift erzeugen (j/N)"
-#: g10/keyedit.c:1771
+#: g10/keyedit.c:1765
msgid "Really create the revocation certificates? (y/N)"
msgstr "Wirklich ein Unterschrift-Widerrufszertifikat erzeugen? (j/N) "
-#: g10/keyedit.c:1794
+#: g10/keyedit.c:1788
msgid "no secret key\n"
msgstr "Kein geheimer Schl�ssel\n"
-#: g10/mainproc.c:213
+#: g10/mainproc.c:184
#, c-format
msgid "public key is %08lX\n"
msgstr "�ffentlicher Schl�ssel ist %08lX\n"
-#: g10/mainproc.c:244
+#: g10/mainproc.c:212
msgid "public key encrypted data: good DEK\n"
msgstr "Mit �ffentlichem Sch�ssel verschl�sselte Daten: Korrekte DEK\n"
-#: 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
+#. 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:219
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "Entschl�sselung mit �ffentlichem Schl�ssel fehlgeschlagen: %s\n"
-#: g10/mainproc.c:323
+#: g10/mainproc.c:247
msgid "decryption okay\n"
msgstr "Enschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:328
+#: g10/mainproc.c:252
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "Warnung: Verschl�sselte Botschaft ist manipuliert worden!\n"
-#: g10/mainproc.c:333
+#: g10/mainproc.c:257
#, c-format
msgid "decryption failed: %s\n"
msgstr "Enschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:351
+#: g10/mainproc.c:275
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
"Hinweis: Der Absender verlangte Vertraulichkeit(\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:353
+#: g10/mainproc.c:277
#, c-format
msgid "original file name='%.*s'\n"
msgstr "Urspr�nglicher Dateiname='%.*s'\n"
-#: g10/mainproc.c:580 g10/mainproc.c:589
+#: g10/mainproc.c:505 g10/mainproc.c:514
msgid "WARNING: invalid notation data found\n"
msgstr "WARNUNG: Ung�ltige \"Notation\"-Daten gefunden\n"
-#: g10/mainproc.c:592
+#: g10/mainproc.c:517
msgid "Notation: "
msgstr "\"Notation\": "
-#: g10/mainproc.c:599
+#: g10/mainproc.c:524
msgid "Policy: "
msgstr "Richtlinie: "
-#: g10/mainproc.c:1018
+#: g10/mainproc.c:929
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:1024
+#: g10/mainproc.c:935
#, 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:1050 g10/mainproc.c:1061
+#: g10/mainproc.c:961 g10/mainproc.c:972
msgid "BAD signature from \""
msgstr "FALSCHE Unterschrift von \""
-#: g10/mainproc.c:1051 g10/mainproc.c:1062
+#: g10/mainproc.c:962 g10/mainproc.c:973
msgid "Good signature from \""
msgstr "Korrekte Unterschrift von \""
-#: g10/mainproc.c:1053
+#: g10/mainproc.c:964
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1104
+#: g10/mainproc.c:1015
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Unterschrift kann nicht gepr�ft werden: %s\n"
-#: g10/mainproc.c:1198
+#: g10/mainproc.c:1109
msgid "old style (PGP 2.x) signature\n"
msgstr "Unterschrift nach alter (PGP 2.x) Art\n"
-#: g10/mainproc.c:1203
+#: g10/mainproc.c:1114
msgid "invalid root packet detected in proc_tree()\n"
msgstr "ung�ltiges root-Paket in proc_tree() entdeckt\n"
@@ -2424,20 +2391,20 @@ msgstr ""
#: g10/misc.c:239
msgid "this cipher algorithm is depreciated; please use a more standard one!\n"
msgstr ""
-"Diees Verschl�sselungsmethode taugt nicht mehr viel; verwenden Sie eine "
+"Diese Verschl�sselungsmethode taugt nicht mehr viel; verwenden Sie eine "
"st�rker standardisierte Methode!\n"
-#: g10/parse-packet.c:113
+#: g10/parse-packet.c:112
#, 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:932
+#: g10/parse-packet.c:931
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "Im Unterpaket des Typs %d ist das \"critical bit\" gesetzt\n"
-#: g10/passphrase.c:159
+#: g10/passphrase.c:157
msgid ""
"\n"
"You need a passphrase to unlock the secret key for\n"
@@ -2447,26 +2414,21 @@ msgstr ""
"Sie ben�tigen ein Mantra, um den geheimen Schl�ssel zu entsperren.\n"
"Benutzer: \""
-#: g10/passphrase.c:168
+#: g10/passphrase.c:166
#, c-format
msgid "%u-bit %s key, ID %08lX, created %s"
msgstr "%u-Bit %s Schl�ssel, ID %08lX, erzeugt %s"
-#: g10/passphrase.c:173
+#: g10/passphrase.c:171
#, c-format
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
+#: g10/passphrase.c:192
msgid "Enter passphrase: "
msgstr "Geben Sie das Mantra ein: "
-#: g10/passphrase.c:198
+#: g10/passphrase.c:196
msgid "Repeat passphrase: "
msgstr "Geben Sie das Mantra nochmal ein: "
@@ -2521,37 +2483,37 @@ msgstr ""
"WARNUNG: Unsicherer Schl�ssel entdeckt -\n"
" bitte Mantra nochmals wechseln.\n"
-#: g10/sig-check.c:199
+#: g10/sig-check.c:187
msgid "assuming bad MDC due to an unknown critical bit\n"
msgstr ""
"Vermutlich ist das Siegel (MDC) BESCH�DIGT (wegen unbekanntem \"critical "
"bit\")\n"
-#: g10/sig-check.c:295
+#: g10/sig-check.c:283
msgid ""
"this is a PGP generated ElGamal key which is NOT secure for signatures!\n"
msgstr ""
"Dieser durch PGP erzeugte ElGamal-Schl�ssel ist f�r Signaturen NICHT sicher "
"genug!\n"
-#: g10/sig-check.c:303
+#: g10/sig-check.c:291
#, c-format
msgid "public key is %lu second newer than the signature\n"
msgstr ""
"�ffentlicher Schl�ssel ist um %lu Sekunde j�nger als die Unterschrift\n"
-#: g10/sig-check.c:304
+#: g10/sig-check.c:292
#, c-format
msgid "public key is %lu seconds newer than the signature\n"
msgstr ""
"�ffentlicher Schl�ssel ist um %lu Sekunden j�nger als die Unterschrift\n"
-#: g10/sig-check.c:320
+#: g10/sig-check.c:308
#, c-format
msgid "NOTE: signature key expired %s\n"
msgstr "Hinweis: Schl�ssel der Signatur ist verfallen am %s.\n"
-#: g10/sig-check.c:377
+#: g10/sig-check.c:365
msgid "assuming bad signature due to an unknown critical bit\n"
msgstr ""
"Vermutlich eine FALSCHE Unterschrift, wegen unbekanntem \"critical bit\"\n"
@@ -2619,7 +2581,7 @@ msgstr "%s: Verzeichnis erzeugt\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: Verzeichnis existiert nicht!\n"
-#: g10/openfile.c:182 g10/openfile.c:253 g10/ringedit.c:1344 g10/tdbio.c:457
+#: g10/openfile.c:144 g10/openfile.c:215 g10/ringedit.c:1344 g10/tdbio.c:457
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: kann nicht erzeugt werden: %s\n"
@@ -2716,303 +2678,323 @@ msgid "%s: failed to append a record: %s\n"
msgstr "%s: konnte Satz nicht anh�ngen: %s\n"
#: g10/tdbio.c:1759
-#, fuzzy
msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
msgstr ""
-"Die \"Trust\"-Datenbank ist besch�digt; verwenden Sie \"gpgm "
-"--fix-trustdb\".\n"
+"Die \"Trust\"-Datenbank ist besch�digt; verwenden Sie \"gpg --fix-trustdb\".\n"
-#: g10/trustdb.c:160
+#: g10/trustdb.c:157
#, c-format
msgid "trust record %lu, req type %d: read failed: %s\n"
msgstr "trust record %lu, req type %d: read failed: %s\n"
-#: g10/trustdb.c:175
+#: g10/trustdb.c:172
#, c-format
msgid "trust record %lu, type %d: write failed: %s\n"
msgstr "trust record %lu, type %d: write failed: %s\n"
-#: g10/trustdb.c:189
+#: g10/trustdb.c:186
#, c-format
msgid "trust record %lu: delete failed: %s\n"
msgstr "Vertrauenssatz %lu: l�schen fehlgeschlagen: %s\n"
-#: g10/trustdb.c:203
+#: g10/trustdb.c:200
#, c-format
msgid "trustdb: sync failed: %s\n"
msgstr "\"Trust-DB\": sync fehlgeschlagen: %s\n"
-#: g10/trustdb.c:347
+#: g10/trustdb.c:344
#, c-format
msgid "error reading dir record for LID %lu: %s\n"
msgstr "Fehler beim Lesen des Dir-Satzes f�r LID %lu: %s\n"
-#: g10/trustdb.c:354
+#: g10/trustdb.c:351
#, c-format
msgid "lid %lu: expected dir record, got type %d\n"
msgstr "lid %lu: Dir-Satz erwartet, aber es kam Typ %d\n"
-#: g10/trustdb.c:359
+#: g10/trustdb.c:356
#, c-format
msgid "no primary key for LID %lu\n"
msgstr "Kein Hauptschl�ssel f�r LID %lu\n"
-#: g10/trustdb.c:364
+#: g10/trustdb.c:361
#, c-format
msgid "error reading primary key for LID %lu: %s\n"
msgstr "Fehler beim Lesen den Hauptschl�ssels der LID %lu: %s\n"
-#: g10/trustdb.c:403
+#: g10/trustdb.c:400
#, c-format
msgid "get_dir_record: search_record failed: %s\n"
msgstr "get_dir_record: search_record fehlgeschlagen: %s\n"
-#: g10/trustdb.c:458
+#: g10/trustdb.c:493
#, c-format
msgid "NOTE: secret key %08lX is NOT protected.\n"
msgstr "HINWEIS: Geheimer Schl�ssel %08lX ist NICHT gesch�tzt.\n"
-#: g10/trustdb.c:466
+#: g10/trustdb.c:501
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr ""
"Schl�ssel %08lX: geheimer Schl�ssel, aber ohne �ffentlichen Schl�ssel - "
"�bersprungen\n"
-#: g10/trustdb.c:473
+#: g10/trustdb.c:508
#, c-format
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:485
+#: g10/trustdb.c:518
#, 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:491
+#: g10/trustdb.c:524
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "Schl�ssel %08lX: Satzabfrage fehlgeschlagen\n"
-#: g10/trustdb.c:500
+#: g10/trustdb.c:533
#, 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:503
+#: g10/trustdb.c:536
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "Schl�ssel %08lX: Akzeptiert als vertrauensw�rdiger Schl�ssel.\n"
-#: g10/trustdb.c:511
+#: g10/trustdb.c:544
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "enum_secret_keys fehlgeschlagen: %s\n"
-#: g10/trustdb.c:802
-#, fuzzy, c-format
+#: g10/trustdb.c:831
+#, c-format
msgid "tdbio_search_sdir failed: %s\n"
-msgstr "tdbio_search_dir fehlgeschlagen: %s\n"
+msgstr "tdbio_search_sdir fehlgeschlagen: %s\n"
-#: g10/trustdb.c:877
+#: g10/trustdb.c:899
+msgid "Too many preferences"
+msgstr "Zu viele Einstellungen"
+
+#: g10/trustdb.c:913
+msgid "Too many preference items"
+msgstr "Zu viele Angaben zur Bevorzugung"
+
+#: g10/trustdb.c:936 g10/trustdb.c:2555 g10/trustdb.c:2585
+msgid "WARNING: can't yet handle long pref records\n"
+msgstr "WARNUNG: Lange 'Pref'-Records k�nnen noch nicht benutzt werden\n"
+
+#: g10/trustdb.c:1020
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "Schl�ssel %08lX.%lu: Korrekte Unterschl�ssel-Anbindung\n"
-#: g10/trustdb.c:883 g10/trustdb.c:918
+#: g10/trustdb.c:1026 g10/trustdb.c:1063
#, 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:895
+#: g10/trustdb.c:1038
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "Schl�ssel %08lX.%lu: G�ltiger Schl�sselwiderruf\n"
-#: g10/trustdb.c:901
+#: g10/trustdb.c:1044
#, 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:912
+#: g10/trustdb.c:1057
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "Schl�ssel %08lX.%lu: G�ltiger Unterschl�sselwiderruf\n"
-#: g10/trustdb.c:1023
+#: g10/trustdb.c:1153
msgid "Good self-signature"
msgstr "Korrekte Eigenbeglaubigung"
-#: g10/trustdb.c:1033
+#: g10/trustdb.c:1163
msgid "Invalid self-signature"
msgstr "Ung�ltige Eigenbeglaubigung"
-#: g10/trustdb.c:1060
-#, fuzzy
+#: g10/trustdb.c:1189
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"
+"vorliegt"
-#: g10/trustdb.c:1066
-#, fuzzy
+#: g10/trustdb.c:1195
msgid "Valid user ID revocation"
-msgstr "G�ltiger User-ID-Widerruf\n"
+msgstr "G�ltiger User-ID-Widerruf"
-#: g10/trustdb.c:1071
+#: g10/trustdb.c:1200
msgid "Invalid user ID revocation"
msgstr "Ung�ltiger User-ID-Widerruf"
-#: g10/trustdb.c:1112
+#: g10/trustdb.c:1236
msgid "Valid certificate revocation"
msgstr "G�ltiger Zerifikat-Widerruf"
-#: g10/trustdb.c:1113
+#: g10/trustdb.c:1237
msgid "Good certificate"
msgstr "Korrektes Zertifikat"
-#: g10/trustdb.c:1134
+#: g10/trustdb.c:1258
msgid "Invalid certificate revocation"
msgstr "Ung�ltiger Zertifikatswiderruf"
-#: g10/trustdb.c:1135
+#: g10/trustdb.c:1259
msgid "Invalid certificate"
msgstr "Ung�ltiges Zertifikat"
-#: g10/trustdb.c:1152 g10/trustdb.c:1156
+#: g10/trustdb.c:1276 g10/trustdb.c:1280
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "Signatursatz %lu[%d] zeigt auf falschen Satz.\n"
-#: g10/trustdb.c:1208
+#: g10/trustdb.c:1330
msgid "duplicated certificate - deleted"
msgstr "Doppelte Zertifikate - entfernt"
-#: g10/trustdb.c:1514
+#. that should never happen
+#: g10/trustdb.c:1551
+#, c-format
+msgid "insert_trust_record: keyblock not found: %s\n"
+msgstr "insert_trust_record: Schl�sselblock nicht gefunden: %s\n"
+
+#: g10/trustdb.c:1572
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1636
+#: g10/trustdb.c:1639
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: Einf�gen fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1641
+#: g10/trustdb.c:1644
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: Einf�gen fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1647
+#: g10/trustdb.c:1650
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: eingef�gt\n"
-#: 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:1655
+#, c-format
+msgid "lid %lu: update failed: %s\n"
+msgstr "lid %lu: �nderung fehlgeschlagen: %s\n"
+
+#: g10/trustdb.c:1661
+#, c-format
+msgid "lid %lu: updated\n"
+msgstr "lid %lu: ge�ndert\n"
+
+#: g10/trustdb.c:1666
+#, c-format
+msgid "lid %lu: okay\n"
+msgstr "lid %lu: In Ordnung\n"
-#: g10/trustdb.c:1660 g10/trustdb.c:1714
+#: g10/trustdb.c:1672 g10/trustdb.c:1726
#, c-format
msgid "%lu keys processed\n"
msgstr "%lu Schl�ssel bearbeitet\n"
-#: g10/trustdb.c:1662 g10/trustdb.c:1718
+#: g10/trustdb.c:1674 g10/trustdb.c:1730
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu Schl�ssel mit Fehlern\n"
-#: g10/trustdb.c:1664
+#: g10/trustdb.c:1676 g10/trustdb.c:1732
+#, c-format
+msgid "\t%lu keys updated\n"
+msgstr "\t%lu Schl�ssel ge�ndert\n"
+
+#: g10/trustdb.c:1678
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu Schl�ssel eingef�gt\n"
-#: g10/trustdb.c:1667
+#: g10/trustdb.c:1681
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "enumerate Schl�sselblock fehlgeschlagen: %s\n"
-#: g10/trustdb.c:1705
+#: g10/trustdb.c:1719
#, 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:1716
+#: g10/trustdb.c:1728
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu Schl�ssel �bersprungen\n"
-#: g10/trustdb.c:1720
-#, c-format
-msgid "\t%lu keys updated\n"
-msgstr "\t%lu Schl�ssel ge�ndert\n"
-
-#: g10/trustdb.c:2057
+#: g10/trustdb.c:2064
msgid "Ooops, no keys\n"
msgstr "Huch, keine Schl�ssel\n"
-#: g10/trustdb.c:2061
+#: g10/trustdb.c:2068
msgid "Ooops, no user ids\n"
msgstr "Huch, keine User-IDs\n"
-#: g10/trustdb.c:2218
+#: g10/trustdb.c:2221
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: Suche nach Dir-Satz fehlgeschlagen: %s\n"
-#: g10/trustdb.c:2227
+#: g10/trustdb.c:2228
#, 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:2231
+#: g10/trustdb.c:2232
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "Schl�ssel %08lX.%lu: in \"trustdb\" eingef�gt\n"
-#: g10/trustdb.c:2239
+#: g10/trustdb.c:2240
#, 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:2248
+#: g10/trustdb.c:2247
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "Schl�ssel %08lX.%lu: verfallen am %s\n"
-#: g10/trustdb.c:2256
+#: g10/trustdb.c:2255
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "Schl�ssel %08lX.%lu: Vertrauenspr�fung fehlgeschlagen: %s\n"
-#: g10/trustdb.c:2362
+#: g10/trustdb.c:2361
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "Benutzer '%s' nicht gefunden: %s\n"
-#: g10/trustdb.c:2364
+#: g10/trustdb.c:2363
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "Problem, '%s' in der Trust-DB zu finden: %s\n"
-#: g10/trustdb.c:2367
+#: g10/trustdb.c:2366
#, 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:2370
+#: g10/trustdb.c:2369
#, 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: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"
-
#: g10/ringedit.c:316
#, c-format
msgid "%s: can't create keyring: %s\n"
@@ -3074,23 +3056,18 @@ msgstr "�berschreiben (j/N)? "
#: g10/openfile.c:97
#, c-format
msgid "%s: unknown suffix\n"
-msgstr ""
+msgstr "%s: unbekannte Dateinamenerweiterung\n"
-#: g10/openfile.c:119
-#, fuzzy
-msgid "Enter new filename"
-msgstr "--store [Dateiname]"
-
-#: g10/openfile.c:160
+#: g10/openfile.c:122
msgid "writing to stdout\n"
msgstr "Schreiben auf die Standardausgabe\n"
-#: g10/openfile.c:219
+#: g10/openfile.c:181
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "die unterzeichneten Daten sind wohl in '%s'\n"
-#: g10/openfile.c:269
+#: g10/openfile.c:231
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: neue Optionendatei erstellt\n"
@@ -3225,24 +3202,24 @@ msgstr "Geben Sie \"Ja\" oder \"Nein\" ein"
msgid "keygen.valid"
msgstr "Geben Sie den erforderlichen Wert ein"
-#: g10/helptext.c:110
+#: g10/helptext.c:107
msgid "keygen.valid.okay"
msgstr "Geben Sie \"Ja\" oder \"Nein\" ein"
# "Enter the name of the key holder"
-#: g10/helptext.c:115
+#: g10/helptext.c:112
msgid "keygen.name"
msgstr "Geben Sie den Namen des Schl�sselinhabers ein"
# "please enter an optional but highly suggested email address"
-#: g10/helptext.c:120
+#: g10/helptext.c:117
msgid "keygen.email"
msgstr ""
"Geben Sie eine E-Mail-Adresse ein. Dies ist zwar nicht notwendig,\n"
"aber empfehlenswert."
# "Please enter an optional comment"
-#: g10/helptext.c:124
+#: g10/helptext.c:121
msgid "keygen.comment"
msgstr "Geben Sie (bei Bedarf) einen Kommentar ein"
@@ -3251,7 +3228,7 @@ msgstr "Geben Sie (bei Bedarf) einen Kommentar ein"
# "E to change the email address.\n"
# "O to continue with key generation.\n"
# "Q to to quit the key generation."
-#: g10/helptext.c:129
+#: g10/helptext.c:126
msgid "keygen.userid.cmd"
msgstr ""
"N um den Namen zu �ndern.\n"
@@ -3261,45 +3238,45 @@ msgstr ""
"B um die Schl�sselerzeugung abbrechen."
# "Answer \"yes\" (or just \"y\") if it is okay to generate the sub key."
-#: g10/helptext.c:138
+#: g10/helptext.c:135
msgid "keygen.sub.okay"
msgstr ""
"Geben Sie \"Ja\" (oder nur \"j\") ein, um den Unterschl�ssel zu erzeugen."
# "Answer \"yes\" or \"no\""
-#: g10/helptext.c:142
+#: g10/helptext.c:139
msgid "sign_uid.okay"
msgstr "Geben Sie \"Ja\" oder \"Nein\" ein"
# "Answer \"yes\" or \"no\""
-#: g10/helptext.c:147
+#: g10/helptext.c:144
msgid "change_passwd.empty.okay"
msgstr "Geben Sie \"Ja\" oder \"Nein\" ein"
# "Answer \"yes\" or \"no\""
-#: g10/helptext.c:152
+#: g10/helptext.c:149
msgid "keyedit.save.okay"
msgstr "Geben Sie \"Ja\" oder \"Nein\" ein"
-#: g10/helptext.c:157
+#: g10/helptext.c:154
msgid "keyedit.cancel.okay"
msgstr "Geben Sie \"Ja\" oder \"Nein\" ein"
# "Answer \"yes\" is you want to sign ALL the user IDs"
-#: g10/helptext.c:161
+#: g10/helptext.c:158
msgid "keyedit.sign_all.okay"
msgstr "Geben Sie \"Ja\" (oder nur \"j\") ein, um alle User-IDs zu beglaubigen"
# "Answer \"yes\" if you really want to delete this user ID.\n"
# "All ceritifcates are then also lost!"
-#: g10/helptext.c:165
+#: g10/helptext.c:162
msgid "keyedit.remove.uid.okay"
msgstr ""
"Geben Sie \"Ja\" (oder nur \"j\") ein, um diese User-ID zu L�SCHEN.\n"
"Alle Zertifikate werden dann auch weg sein!"
# "Answer \"yes\" if it is okay to delete the subkey"
-#: g10/helptext.c:170
+#: g10/helptext.c:167
msgid "keyedit.remove.subkey.okay"
msgstr ""
"Geben Sie \"Ja\" (oder nur \"j\") ein, um diesen Unterschl�ssel zu l�schen"
@@ -3308,7 +3285,7 @@ msgstr ""
# "This is a valid signature on the key; you normally don't want\n"
# "to delete this signature may be important to establish a trust\n"
# "connection to the key or another key certified by this key."
-#: g10/helptext.c:175
+#: g10/helptext.c:172
msgid "keyedit.delsig.valid"
msgstr ""
"Dies ist eine g�ltige Beglaubigung f�r den Schl�ssel. Es ist normalerweise\n"
@@ -3317,23 +3294,23 @@ msgstr ""
"Schl�ssel\n"
"herzustellen"
-# ("keyedit.delsig.invalid"),
-# "The signature is not valid. It does make sense to remove it from\n"
-# "your keyring if it is really invalid and not just unchecked due to\n"
-# "a missing public key (marked by \"sig?\")."
-#: g10/helptext.c:180
-#, fuzzy
+# "This signature can't be checked because you don't have the\n"
+# "corresponding key. You should postpone its deletion until you\n"
+# "know which key was used because this signing key might establish"
+# "a trust connection through another already certified key."
+#: g10/helptext.c:177
msgid "keyedit.delsig.unknown"
msgstr ""
-"Diese Beglaubigung ist ung�ltig. Es ist sinnvoll sie aus Ihrem\n"
-"Schl�sselbund zu entfernen, sofern sie wirklich ung�ltig ist und nicht nur\n"
-"wegen eines fehlenden �ff.Schl�ssel (\"sig?\") unkontrollierbar ist."
+"Diese Beglaubigung kann nicht gepr�ft werden, da Sie den passenden Scl�ssel\n"
+"nicht besitzen. Sie sollten die L�schung der Beglaubigung verschieben, bis\n"
+"sie wissen, welcher Schl�ssel verwendet wurde. Denn vielleicht w�rde genau\n"
+"diese Beglaubigung den \"Trust\"-Weg kompletieren."
# ("keyedit.delsig.invalid"),
# "The signature is not valid. It does make sense to remove it from\n"
# "your keyring if it is really invalid and not just unchecked due to\n"
# "a missing public key (marked by \"sig?\")."
-#: g10/helptext.c:186
+#: g10/helptext.c:183
msgid "keyedit.delsig.invalid"
msgstr ""
"Diese Beglaubigung ist ung�ltig. Es ist sinnvoll sie aus Ihrem\n"
@@ -3346,7 +3323,7 @@ msgstr ""
# "GnuPG might not be able to use this key anymore. So do this\n"
# "only if this self-signature is for some reason not valid and\n"
# "a second one is available."
-#: g10/helptext.c:190
+#: g10/helptext.c:187
msgid "keyedit.delsig.selfsig"
msgstr ""
"Diese Beglaubigung bindet die User-ID an den Schl�ssel. Normalerweise ist\n"
@@ -3359,7 +3336,7 @@ msgstr ""
# ################################
# ####### Help msgids ############
# ################################
-#: g10/helptext.c:199
+#: g10/helptext.c:196
msgid "passphrase.enter"
msgstr ""
"Bitte geben Sie das Mantra ein. Dies ist ein geheimer Satz, der aus\n"
@@ -3374,7 +3351,7 @@ msgstr ""
"werden,\n"
"sind i.d.R. eine gute Wahl"
-#: g10/helptext.c:206
+#: g10/helptext.c:203
msgid "passphrase.repeat"
msgstr ""
"Um sicher zu gehen, da� Sie sich bei der Eingabe des Mantras nicht\n"
@@ -3382,27 +3359,21 @@ msgstr ""
"�bereinstimmen, wird das Mantra akzeptiert."
# "Give the name fo the file to which the signature applies"
-#: g10/helptext.c:210
+#: g10/helptext.c:207
msgid "detached_signature.filename"
msgstr ""
"Geben Sie den Namen der Datei an, zu dem die abgetrennte Unterschrift geh�rt"
# "Answer \"yes\" if it is okay to overwrite the file"
-#. openfile.c (overwrite_filep)
-#: g10/helptext.c:215
+#: g10/helptext.c:211
msgid "openfile.overwrite.okay"
msgstr "Geben Sie \"ja\" ein, wenn Sie die Datei �berschreiben m�chten"
-#. openfile.c (ask_outfile_name)
-#: g10/helptext.c:220
-msgid "openfile.askoutname"
-msgstr ""
-
-#: g10/helptext.c:235
+#: g10/helptext.c:225
msgid "No help available"
msgstr "Keine Hilfe vorhanden."
-#: g10/helptext.c:247
+#: g10/helptext.c:237
#, c-format
msgid "No help available for `%s'"
msgstr "Keine Hilfe f�r '%s' vorhanden."
@@ -3440,12 +3411,6 @@ msgstr "Keine Hilfe f�r '%s' vorhanden."
#~ msgid "lid %lu: can't get keyblock: %s\n"
#~ msgstr "lid %lu: Schl�sselblock nicht verf�gbar: %s\n"
-#~ msgid "Too many preferences"
-#~ msgstr "Zu viele Einstellungen"
-
-#~ msgid "Too many preference items"
-#~ msgstr "Zu viele Angaben zur Bevorzugung"
-
#~ msgid "public key not anymore available"
#~ msgstr "�ffentlicher Schl�ssel ist nicht mehr vorhanden"
@@ -3454,18 +3419,6 @@ msgstr "Keine Hilfe f�r '%s' vorhanden."
#~ "uid %08lX.%lu/%02X%02X: hat \"shadow-dir\" %lu, aber ist noch nicht "
#~ "markiert.\n"
-#~ msgid "insert_trust_record: keyblock not found: %s\n"
-#~ msgstr "insert_trust_record: Schl�sselblock nicht gefunden: %s\n"
-
-#~ msgid "lid %lu: update failed: %s\n"
-#~ msgstr "lid %lu: �nderung fehlgeschlagen: %s\n"
-
-#~ msgid "lid %lu: updated\n"
-#~ msgstr "lid %lu: ge�ndert\n"
-
-#~ msgid "lid %lu: okay\n"
-#~ msgstr "lid %lu: In Ordnung\n"
-
#~ msgid "%s: keyblock read problem: %s\n"
#~ msgstr "%s: Schl�sselblock Leseproblem: %s\n"
@@ -3597,6 +3550,9 @@ msgstr "Keine Hilfe f�r '%s' vorhanden."
#~ msgid "insert trust record failed: %s\n"
#~ msgstr "'trust record' einf�gen fehlgeschlagen: %s\n"
+#~ msgid "error finding dir record: %s\n"
+#~ msgstr "Fehler beim Auffinden des Verz.Satzes: %s\n"
+
#~ msgid "Hmmm, public key lost?"
#~ msgstr "Hmmm, �ffentlicher Sch�ssel verloren?"