aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-04-06 09:59:50 +0000
committerWerner Koch <[email protected]>2001-04-06 09:59:50 +0000
commit7cf01ff10dc811aad1701d268ee07c9e28433f32 (patch)
tree8228a00164be0917ce28f0bc48d0775cf5c6ae6d
parentAdd Turkish translation. (diff)
downloadgnupg-7cf01ff10dc811aad1701d268ee07c9e28433f32.tar.gz
gnupg-7cf01ff10dc811aad1701d268ee07c9e28433f32.zip
Released snapshot 1.0.4g
-rw-r--r--AUTHORS6
-rw-r--r--ChangeLog5
-rw-r--r--cipher/ChangeLog15
-rw-r--r--cipher/blowfish.c37
-rw-r--r--cipher/cast5.c38
-rw-r--r--cipher/des.c23
-rw-r--r--cipher/md5.c16
-rw-r--r--cipher/random.c11
-rw-r--r--cipher/rijndael.c44
-rw-r--r--cipher/rmd160.c15
-rw-r--r--cipher/sha1.c14
-rw-r--r--cipher/tiger.c16
-rw-r--r--cipher/twofish.c44
-rw-r--r--configure.in2
-rw-r--r--doc/FAQ14
-rw-r--r--po/ChangeLog4
-rw-r--r--po/da.po154
-rw-r--r--po/de.po154
-rw-r--r--po/eo.po154
-rw-r--r--po/es_ES.po154
-rw-r--r--po/fr.po154
-rw-r--r--po/id.po154
-rw-r--r--po/it.po154
-rw-r--r--po/ja.po154
-rw-r--r--po/nl.po154
-rw-r--r--po/pl.po154
-rw-r--r--po/pt_BR.po154
-rw-r--r--po/pt_PT.po154
-rw-r--r--po/ru.po154
-rw-r--r--po/sv.po154
-rw-r--r--po/tr.po1190
31 files changed, 2049 insertions, 1601 deletions
diff --git a/AUTHORS b/AUTHORS
index e76accf39..4ca466b44 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -30,13 +30,15 @@ Matthew Skala <[email protected]> Disclaimer
Niklas Hernaeus <[email protected]> Disclaimer
(weak key patches)
+Nilgun Belma Buguner <[email protected]> Translations [tr]
+
Nils Ellmenreich <nils 'at' infosun.fmi.uni-passau.de> Assignment
(configure.in, cipher/rndlinux.c, FAQ)
Paul Eggert <[email protected]>
(configuration macros for LFS)
-Pedro Morais <[email protected]> Translations [pt_BR]
+Pedro Morais <[email protected]> Translations [pt_PT]
R�mi Guyomarch <[email protected]> Assignment
(g10/compress.c, g10/encr-data.c,
@@ -48,7 +50,7 @@ Thiago Jung Bauermann <[email protected]> Translations [pt_BR]
Urko Lusa <[email protected]> Translations [es_ES]
-Walter Koch <[email protected]> Translations [de]
+Walter Koch <[email protected]> Translations [de]
Werner Koch <[email protected]> Assignment
(started the whole thing)
diff --git a/ChangeLog b/ChangeLog
index 232a275b5..e6fcf4f32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-06 Werner Koch <[email protected]>
+
+ * configure.in (ALL_LINGUAS): Add Turkish translation. Thanks
+ to Nilgun Belma Buguner.
+
2001-03-18 Werner Koch <[email protected]>
* configure.in: Hardwire the use of -lsocket for some
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index ede3b892b..7692ef62d 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,18 @@
+2001-04-06 Werner Koch <[email protected]>
+
+ * rijndael.c, des.c, blowfish.c, twofish.c, cast5.c (burn_stack):
+ New. Add wrappers for most functions to be able to call
+ burn_stack after the function invocation. This methods seems to be
+ the most portable way to zeroise the stack used. It does only work
+ on stack frame based machines but it is highly portable and has no
+ side effects. Just setting the automatic variables at the end of
+ a function to zero does not work well because the compiler will
+ optimize them away - marking them as volatile woule be bad for
+ performance.
+ * md5.c, sha1.c, rmd160.c, tiger.c (burn_stack): Likewise.
+ * random.c (burn_stack): New.
+ (mix_pool): Use it here to burn the stack of te mixblock function.
+
2001-04-02 Werner Koch <[email protected]>
* primegen.c (generate_elg_prime): I was not initialized for mode
diff --git a/cipher/blowfish.c b/cipher/blowfish.c
index f58c70f44..0bf497e33 100644
--- a/cipher/blowfish.c
+++ b/cipher/blowfish.c
@@ -278,6 +278,17 @@ function_F( BLOWFISH_context *bc, u32 x )
#endif
#define R(l,r,i) do { l ^= p[i]; r ^= F(l); } while(0)
+static void
+burn_stack (int bytes)
+{
+ char buf[64];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
static void
do_encrypt( BLOWFISH_context *bc, u32 *ret_xl, u32 *ret_xr )
@@ -413,7 +424,7 @@ decrypt( BLOWFISH_context *bc, u32 *ret_xl, u32 *ret_xr )
#undef R
static void
-encrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
+do_encrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
{
u32 d1, d2;
@@ -430,9 +441,15 @@ encrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
outbuf[7] = d2 & 0xff;
}
+static void
+encrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
+{
+ do_encrypt_block (bc, outbuf, inbuf);
+ burn_stack (64);
+}
static void
-decrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
+do_decrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
{
u32 d1, d2;
@@ -449,6 +466,13 @@ decrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
outbuf[7] = d2 & 0xff;
}
+static void
+decrypt_block( BLOWFISH_context *bc, byte *outbuf, byte *inbuf )
+{
+ do_decrypt_block (bc, outbuf, inbuf);
+ burn_stack (64);
+}
+
static const char*
selftest(void)
@@ -481,7 +505,7 @@ selftest(void)
static int
-bf_setkey( BLOWFISH_context *c, byte *key, unsigned keylen )
+do_bf_setkey( BLOWFISH_context *c, byte *key, unsigned keylen )
{
int i, j;
u32 data, datal, datar;
@@ -563,6 +587,13 @@ bf_setkey( BLOWFISH_context *c, byte *key, unsigned keylen )
return 0;
}
+static int
+bf_setkey( BLOWFISH_context *c, byte *key, unsigned keylen )
+{
+ int rc = do_bf_setkey (c, key, keylen);
+ burn_stack (64);
+ return rc;
+}
/****************
* Return some information about the algorithm. We need algo here to
diff --git a/cipher/cast5.c b/cipher/cast5.c
index 329f00ff7..8f9658362 100644
--- a/cipher/cast5.c
+++ b/cipher/cast5.c
@@ -355,7 +355,19 @@ rol(int n, u32 x)
(((s1[I >> 24] + s2[(I>>16)&0xff]) ^ s3[(I>>8)&0xff]) - s4[I&0xff]) )
static void
-encrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
+burn_stack (int bytes)
+{
+ char buf[64];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
+
+static void
+do_encrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
{
u32 l, r, t;
u32 I; /* used by the Fx macros */
@@ -409,7 +421,14 @@ encrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
}
static void
-decrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
+encrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
+{
+ do_encrypt_block (c, outbuf, inbuf);
+ burn_stack (20+4*sizeof(void*));
+}
+
+static void
+do_decrypt_block (CAST5_context *c, byte *outbuf, byte *inbuf )
{
u32 l, r, t;
u32 I;
@@ -449,6 +468,12 @@ decrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
outbuf[7] = l & 0xff;
}
+static void
+decrypt_block( CAST5_context *c, byte *outbuf, byte *inbuf )
+{
+ do_decrypt_block (c, outbuf, inbuf);
+ burn_stack (20+4*sizeof(void*));
+}
static const char*
@@ -547,7 +572,7 @@ key_schedule( u32 *x, u32 *z, u32 *k )
static int
-cast_setkey( CAST5_context *c, byte *key, unsigned keylen )
+do_cast_setkey( CAST5_context *c, byte *key, unsigned keylen )
{
static int initialized;
static const char* selftest_failed;
@@ -589,6 +614,13 @@ cast_setkey( CAST5_context *c, byte *key, unsigned keylen )
return 0;
}
+static int
+cast_setkey( CAST5_context *c, byte *key, unsigned keylen )
+{
+ int rc = do_cast_setkey (c, key, keylen);
+ burn_stack (96+7*sizeof(void*));
+ return rc;
+}
/****************
* Return some information about the algorithm. We need algo here to
diff --git a/cipher/des.c b/cipher/des.c
index 847a3473e..ce436d847 100644
--- a/cipher/des.c
+++ b/cipher/des.c
@@ -449,9 +449,16 @@ static byte weak_keys[64][8] =
#define tripledes_ecb_decrypt(ctx, from, to) tripledes_ecb_crypt(ctx, from, to, 1)
-
-
-
+static void
+burn_stack (int bytes)
+{
+ char buf[64];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
/*
* des_key_schedule(): Calculate 16 subkeys pairs (even/odd) for
@@ -558,6 +565,7 @@ des_setkey (struct _des_ctx *ctx, const byte * key)
return G10ERR_SELFTEST_FAILED;
des_key_schedule (key, ctx->encrypt_subkeys);
+ burn_stack (32);
for(i=0; i<32; i+=2)
{
@@ -616,6 +624,7 @@ tripledes_set2keys (struct _tripledes_ctx *ctx,
des_key_schedule (key1, ctx->encrypt_subkeys);
des_key_schedule (key2, &(ctx->decrypt_subkeys[32]));
+ burn_stack (32);
for(i=0; i<32; i+=2)
{
@@ -653,6 +662,7 @@ tripledes_set3keys (struct _tripledes_ctx *ctx,
des_key_schedule (key1, ctx->encrypt_subkeys);
des_key_schedule (key2, &(ctx->decrypt_subkeys[32]));
des_key_schedule (key3, &(ctx->encrypt_subkeys[64]));
+ burn_stack (32);
for(i=0; i<32; i+=2)
{
@@ -947,8 +957,11 @@ do_tripledes_setkey ( struct _tripledes_ctx *ctx, byte *key, unsigned keylen )
tripledes_set3keys ( ctx, key, key+8, key+16);
- if( is_weak_key( key ) || is_weak_key( key+8 ) || is_weak_key( key+16 ) )
+ if( is_weak_key( key ) || is_weak_key( key+8 ) || is_weak_key( key+16 ) ) {
+ burn_stack (64);
return G10ERR_WEAK_KEY;
+ }
+ burn_stack (64);
return 0;
}
@@ -958,12 +971,14 @@ static void
do_tripledes_encrypt( struct _tripledes_ctx *ctx, byte *outbuf, byte *inbuf )
{
tripledes_ecb_encrypt ( ctx, inbuf, outbuf );
+ burn_stack (32);
}
static void
do_tripledes_decrypt( struct _tripledes_ctx *ctx, byte *outbuf, byte *inbuf )
{
tripledes_ecb_decrypt ( ctx, inbuf, outbuf );
+ burn_stack (32);
}
diff --git a/cipher/md5.c b/cipher/md5.c
index 9bba57641..cf8861d10 100644
--- a/cipher/md5.c
+++ b/cipher/md5.c
@@ -72,6 +72,18 @@ md5_init( MD5_CONTEXT *ctx )
#define FH(b, c, d) (b ^ c ^ d)
#define FI(b, c, d) (c ^ (b | ~d))
+static void
+burn_stack (int bytes)
+{
+ char buf[128];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
+
/****************
* transform n*64 bytes
@@ -217,6 +229,7 @@ md5_write( MD5_CONTEXT *hd, byte *inbuf, size_t inlen)
{
if( hd->count == 64 ) { /* flush the buffer */
transform( hd, hd->buf );
+ burn_stack (80+6*sizeof(void*));
hd->count = 0;
hd->nblocks++;
}
@@ -237,9 +250,9 @@ md5_write( MD5_CONTEXT *hd, byte *inbuf, size_t inlen)
inlen -= 64;
inbuf += 64;
}
+ burn_stack (80+6*sizeof(void*));
for( ; inlen && hd->count < 64; inlen-- )
hd->buf[hd->count++] = *inbuf++;
-
}
@@ -294,6 +307,7 @@ md5_final( MD5_CONTEXT *hd )
hd->buf[62] = msb >> 16;
hd->buf[63] = msb >> 24;
transform( hd, hd->buf );
+ burn_stack (80+6*sizeof(void*));
p = hd->buf;
#ifdef BIG_ENDIAN_HOST
diff --git a/cipher/random.c b/cipher/random.c
index de4bcf6c1..03a54e580 100644
--- a/cipher/random.c
+++ b/cipher/random.c
@@ -139,6 +139,16 @@ initialize(void)
cipher_modules_constructor();
}
+static void
+burn_stack (int bytes)
+{
+ char buf[128];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
void
random_dump_stats()
@@ -269,6 +279,7 @@ mix_pool(byte *pool)
rmd160_mixblock( &md, hashbuf);
memcpy(p, hashbuf, 20 );
}
+ burn_stack (200); /* for the rmd160_mixblock() */
}
diff --git a/cipher/rijndael.c b/cipher/rijndael.c
index 0284989c3..3eac290c1 100644
--- a/cipher/rijndael.c
+++ b/cipher/rijndael.c
@@ -1707,10 +1707,23 @@ static const u32 rcon[30] = {
};
+
+static void
+burn_stack (int bytes)
+{
+ char buf[64];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
+
/* Perform the key setup.
*/
static int
-rijndael_setkey (RIJNDAEL_context *ctx, const byte *key, const unsigned keylen)
+do_setkey (RIJNDAEL_context *ctx, const byte *key, const unsigned keylen)
{
static int initialized = 0;
static const char *selftest_failed=0;
@@ -1719,6 +1732,7 @@ rijndael_setkey (RIJNDAEL_context *ctx, const byte *key, const unsigned keylen)
int i,j, r, t, rconpointer = 0;
byte tk[MAXKC][4];
int KC;
+ /* space for automatic variables is about 64 + 11*int */
if (!initialized) {
initialized = 1;
@@ -1809,6 +1823,14 @@ rijndael_setkey (RIJNDAEL_context *ctx, const byte *key, const unsigned keylen)
return 0;
}
+static int
+rijndael_setkey (RIJNDAEL_context *ctx, const byte *key, const unsigned keylen)
+{
+ int rc = do_setkey (ctx, key, keylen);
+ burn_stack ( 100 + 16*sizeof(int));
+ return rc;
+}
+
/* make a decryption key from an encryption key */
static void
prepare_decryption( RIJNDAEL_context *ctx )
@@ -1847,7 +1869,7 @@ prepare_decryption( RIJNDAEL_context *ctx )
/* Encrypt one block. A and B may be the same. */
static void
-rijndael_encrypt (const RIJNDAEL_context *ctx, byte *b, const byte *a)
+do_encrypt (const RIJNDAEL_context *ctx, byte *b, const byte *a)
{
int r;
byte temp[4][4];
@@ -1924,10 +1946,18 @@ rijndael_encrypt (const RIJNDAEL_context *ctx, byte *b, const byte *a)
*((u32*)(b+12)) ^= *((u32*)rk[ROUNDS][3]);
#undef rk
}
+
+static void
+rijndael_encrypt (const RIJNDAEL_context *ctx, byte *b, const byte *a)
+{
+ do_encrypt (ctx, b, a);
+ burn_stack (16 + 2*sizeof(int));
+}
+
/* Decrypt one block. a and b may be the same. */
static void
-rijndael_decrypt (RIJNDAEL_context *ctx, byte *b, const byte *a)
+do_decrypt (RIJNDAEL_context *ctx, byte *b, const byte *a)
{
#define rk (ctx->keySched2)
int ROUNDS = ctx->ROUNDS;
@@ -1936,6 +1966,7 @@ rijndael_decrypt (RIJNDAEL_context *ctx, byte *b, const byte *a)
if ( !ctx->decryption_prepared ) {
prepare_decryption ( ctx );
+ burn_stack (64);
ctx->decryption_prepared = 1;
}
@@ -2009,6 +2040,13 @@ rijndael_decrypt (RIJNDAEL_context *ctx, byte *b, const byte *a)
*((u32*)(b+12)) ^= *((u32*)rk[0][3]);
#undef rk
}
+
+static void
+rijndael_decrypt (RIJNDAEL_context *ctx, byte *b, const byte *a)
+{
+ do_decrypt (ctx, b, a);
+ burn_stack (16+2*sizeof(int));
+}
/* Test a single encryption and decryption with each key size. */
diff --git a/cipher/rmd160.c b/cipher/rmd160.c
index 94e3ece0b..9f5ab852c 100644
--- a/cipher/rmd160.c
+++ b/cipher/rmd160.c
@@ -141,6 +141,18 @@
* 1 million times "a" 52783243c1697bdbe16d37f97f68f08325dc1528
*/
+static void
+burn_stack (int bytes)
+{
+ char buf[150];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
+
void
rmd160_init( RMD160_CONTEXT *hd )
@@ -405,6 +417,7 @@ rmd160_write( RMD160_CONTEXT *hd, byte *inbuf, size_t inlen)
{
if( hd->count == 64 ) { /* flush the buffer */
transform( hd, hd->buf );
+ burn_stack (108+5*sizeof(void*));
hd->count = 0;
hd->nblocks++;
}
@@ -425,6 +438,7 @@ rmd160_write( RMD160_CONTEXT *hd, byte *inbuf, size_t inlen)
inlen -= 64;
inbuf += 64;
}
+ burn_stack (108+5*sizeof(void*));
for( ; inlen && hd->count < 64; inlen-- )
hd->buf[hd->count++] = *inbuf++;
}
@@ -497,6 +511,7 @@ rmd160_final( RMD160_CONTEXT *hd )
hd->buf[62] = msb >> 16;
hd->buf[63] = msb >> 24;
transform( hd, hd->buf );
+ burn_stack (108+5*sizeof(void*));
p = hd->buf;
#ifdef BIG_ENDIAN_HOST
diff --git a/cipher/sha1.c b/cipher/sha1.c
index 9160bc260..0f8f17ce2 100644
--- a/cipher/sha1.c
+++ b/cipher/sha1.c
@@ -49,7 +49,16 @@ typedef struct {
int count;
} SHA1_CONTEXT;
-
+static void
+burn_stack (int bytes)
+{
+ char buf[128];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
void
@@ -214,6 +223,7 @@ sha1_write( SHA1_CONTEXT *hd, byte *inbuf, size_t inlen)
{
if( hd->count == 64 ) { /* flush the buffer */
transform( hd, hd->buf );
+ burn_stack (88+4*sizeof(void*));
hd->count = 0;
hd->nblocks++;
}
@@ -234,6 +244,7 @@ sha1_write( SHA1_CONTEXT *hd, byte *inbuf, size_t inlen)
inlen -= 64;
inbuf += 64;
}
+ burn_stack (88+4*sizeof(void*));
for( ; inlen && hd->count < 64; inlen-- )
hd->buf[hd->count++] = *inbuf++;
}
@@ -290,6 +301,7 @@ sha1_final(SHA1_CONTEXT *hd)
hd->buf[62] = lsb >> 8;
hd->buf[63] = lsb ;
transform( hd, hd->buf );
+ burn_stack (88+4*sizeof(void*));
p = hd->buf;
#ifdef BIG_ENDIAN_HOST
diff --git a/cipher/tiger.c b/cipher/tiger.c
index adc23c85c..76fcbbdac 100644
--- a/cipher/tiger.c
+++ b/cipher/tiger.c
@@ -631,6 +631,19 @@ print_data( const char *text, u64 a, u64 b, u64 c,
static void
+burn_stack (int bytes)
+{
+ char buf[256];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
+
+
+static void
tiger_init( TIGER_CONTEXT *hd )
{
hd->a = 0x0123456789abcdefLL;
@@ -768,6 +781,7 @@ tiger_write( TIGER_CONTEXT *hd, byte *inbuf, size_t inlen)
{
if( hd->count == 64 ) { /* flush the buffer */
transform( hd, hd->buf );
+ burn_stack (21*8+11*sizeof(void*));
hd->count = 0;
hd->nblocks++;
}
@@ -788,6 +802,7 @@ tiger_write( TIGER_CONTEXT *hd, byte *inbuf, size_t inlen)
inlen -= 64;
inbuf += 64;
}
+ burn_stack (21*8+11*sizeof(void*));
for( ; inlen && hd->count < 64; inlen-- )
hd->buf[hd->count++] = *inbuf++;
}
@@ -841,6 +856,7 @@ tiger_final( TIGER_CONTEXT *hd )
hd->buf[62] = msb >> 16;
hd->buf[63] = msb >> 24;
transform( hd, hd->buf );
+ burn_stack (21*8+11*sizeof(void*));
p = hd->buf;
#ifdef BIG_ENDIAN_HOST
diff --git a/cipher/twofish.c b/cipher/twofish.c
index e5a66520c..3cd59da61 100644
--- a/cipher/twofish.c
+++ b/cipher/twofish.c
@@ -545,11 +545,25 @@ static byte calc_sb_tbl[512] = {
x += y; y += x; ctx->a[j] = x; \
ctx->a[(j) + 1] = (y << 9) + (y >> 23)
+
+static void
+burn_stack (int bytes)
+{
+ char buf[64];
+
+ memset (buf, 0, sizeof buf);
+ bytes -= sizeof buf;
+ if (bytes > 0)
+ burn_stack (bytes);
+}
+
+
+
/* Perform the key setup. Note that this works only with 128- and 256-bit
* keys, despite the API that looks like it might support other sizes. */
static int
-twofish_setkey (TWOFISH_context *ctx, const byte *key, const unsigned keylen)
+do_twofish_setkey (TWOFISH_context *ctx, const byte *key, unsigned int keylen)
{
int i, j, k;
@@ -682,6 +696,16 @@ twofish_setkey (TWOFISH_context *ctx, const byte *key, const unsigned keylen)
return 0;
}
+
+static int
+twofish_setkey (TWOFISH_context *ctx, const byte *key, unsigned int keylen)
+{
+ int rc = do_twofish_setkey (ctx, key, keylen);
+ burn_stack (23+6*sizeof(void*));
+ return rc;
+}
+
+
/* Macros to compute the g() function in the encryption and decryption
* rounds. G1 is the straight g() function; G2 includes the 8-bit
@@ -744,7 +768,7 @@ twofish_setkey (TWOFISH_context *ctx, const byte *key, const unsigned keylen)
/* Encrypt one block. in and out may be the same. */
static void
-twofish_encrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
+do_twofish_encrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
{
/* The four 32-bit chunks of the text. */
u32 a, b, c, d;
@@ -774,11 +798,18 @@ twofish_encrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
OUTUNPACK (2, a, 6);
OUTUNPACK (3, b, 7);
}
+
+static void
+twofish_encrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
+{
+ do_twofish_encrypt (ctx, out, in);
+ burn_stack (24+3*sizeof (void*));
+}
/* Decrypt one block. in and out may be the same. */
static void
-twofish_decrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
+do_twofish_decrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
{
/* The four 32-bit chunks of the text. */
u32 a, b, c, d;
@@ -808,6 +839,13 @@ twofish_decrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
OUTUNPACK (2, c, 2);
OUTUNPACK (3, d, 3);
}
+
+static void
+twofish_decrypt (const TWOFISH_context *ctx, byte *out, const byte *in)
+{
+ do_twofish_decrypt (ctx, out, in);
+ burn_stack (24+3*sizeof (void*));
+}
/* Test a single encryption and decryption with each key size. */
diff --git a/configure.in b/configure.in
index 1f03bbb32..69757c6a8 100644
--- a/configure.in
+++ b/configure.in
@@ -31,7 +31,7 @@ AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(gnupg,`cat $srcdir/VERSION`)
-ALL_LINGUAS="da de eo es_ES fr id it ja nl pl pt_BR pt_PT ru sv"
+ALL_LINGUAS="da de eo es_ES fr id it ja nl pl pt_BR pt_PT ru sv tr"
static_modules="sha1 md5 rmd160"
static_random_module=""
diff --git a/doc/FAQ b/doc/FAQ
index 7d7cf58f8..03c42ec3a 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -2,8 +2,8 @@
GNUPG FREQUENTLY ASKED QUESTIONS
-Version: 1.1
-Last-Modified: Mar 16, 2001
+Version: 1.2
+Last-Modified: Apr 4, 2001
Maintained-by: Nils Ellmenreich <nils 'at' gnupg.org>
@@ -84,6 +84,7 @@ you could search in the mailing list archive.
6.12) Older gpg's (e.g., 1.0) have problems with keys from newer gpgs ...
6.13) With 1.0.4, I get "this cipher algorithm is deprecated ..."
6.14) I still have a problem. How do I report a bug?
+ 6.15) Why doesn't GnuPG support X509 certificates?
7. ADVANCED TOPICS
7.1) How does this whole thing work?
@@ -673,6 +674,15 @@ in it - why?
list. Otherwise, use the GUUG bug tracking system
http://bugs.guug.de/Reporting.html.
+6.15) Why doesn't GnuPG support X509 certificates?
+
+ GnuPG, first and foremost, is an implementation of the OpenPGP
+ standard (RFC 2440), which is a competing infrastructure, different
+ from X509.
+
+ They are both public-key cryptosystems, but how the public keys are
+ actually handled is different.
+
7. ADVANCED TOPICS
7.1) How does this whole thing work?
diff --git a/po/ChangeLog b/po/ChangeLog
index 852ca209d..d850e87d0 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2001-04-06 Werner Koch <[email protected]>
+
+ * tr.po: New.
+
2001-03-18 Werner Koch <[email protected]>
* de.po, de.glo: Updated.
diff --git a/po/da.po b/po/da.po
index a4c0a378a..8fe6e0e5d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.0h\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-03-07 22:51+01:00\n"
"Last-Translator: Birger Langkjer <[email protected]>\n"
"Language-Team: Danish <[email protected]>\n"
@@ -268,63 +268,63 @@ msgstr "... dette er en fejl (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "du fandt en fejl ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "kan ikke �bne '%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "kan ikke �bne '%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "kan ikke �bne '%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "kan ikke oprette %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "kan ikke �bne '%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "kan ikke �bne '%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "ADVARSEL: bruger usikker tilf�ldig-nummer-generator!!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -902,79 +902,79 @@ msgstr ""
msgid "a notation value must not use any control characters\n"
msgstr "en notationsv�rdi m� ikke bruge nogen kontroltegn\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "panser: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "ugyldigt panserhoved: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "panserhoved: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr ""
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr ""
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr ""
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "uforventet beskyttelse:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "ugyldigt radix64 tegn %02x udeladt\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "for tidlig eof (ingen CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "for tidlig eof (i CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "d�rlig CRC\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "CRC fejl; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "for tidlig eof (i trailer)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "fejl i trailerlinie\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "ingen gyldig OpenPGP data fundet.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "ugyldigt panser: linie l�ngere end %d tegn\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr "quoted printable-tegn i panser - m�ske pga. en fejlbeh�ftet MTA\n"
@@ -1567,7 +1567,7 @@ msgstr ""
msgid "Really create? "
msgstr "Vil du virkelig oprette?"
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1625,17 +1625,17 @@ msgstr ""
msgid "too many entries in unk cache - disabled\n"
msgstr ""
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "bruger sekund�r n�gle %08lX istedetfor prim�r n�gle %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr ""
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: bruger ikke fundet\n"
@@ -1743,7 +1743,7 @@ msgstr "n�gle %08lX: ikke en rfc2440 n�gle - udeladt\n"
msgid "no default public keyring\n"
msgstr "ingen standard offentlig n�glering\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "skriver til `%s'\n"
@@ -2488,115 +2488,121 @@ msgid "no secret key\n"
msgstr ""
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "N�gle udl�ber d. %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr ""
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr ""
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr ""
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr ""
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr ""
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr ""
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr ""
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr ""
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr ""
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr ""
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Politik: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr ""
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "opret en separat signatur"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr ""
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "D�RLIG signatur fra \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "God signatur fra \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Kan ikke tjekke signatur: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "opret en separat signatur"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr ""
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "gammeldags (PGP 2.x) signatur\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr ""
@@ -2704,23 +2710,23 @@ msgstr "Gentag kodes�tning: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr ""
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr ""
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr ""
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "l�ser stdin ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
msgid "no signed data\n"
msgstr ""
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr ""
@@ -2891,7 +2897,7 @@ msgstr ""
msgid "%s: directory does not exist!\n"
msgstr ""
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr ""
@@ -3363,31 +3369,31 @@ msgstr "%s: ukendt suffiks\n"
msgid "Enter new filename"
msgstr "Indtast nyt filnavn"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "skriver til stdout\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr ""
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr ""
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: kan ikke oprette mappe: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: mappe oprettet\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
diff --git a/po/de.po b/po/de.po
index f5d899f32..eb4024292 100644
--- a/po/de.po
+++ b/po/de.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.0.4\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2001-02-20 21:20+0200\n"
"Last-Translator: Walter Koch <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
@@ -268,64 +268,64 @@ 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:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "'%s' kann nicht ge�ffnet werden: %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "Status von '%s' ist nicht feststellbar: %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "'%s' ist keine normale Datei - sie bleibt unbeachtet\n"
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "Hinweis: 'random_seed'-Datei ist leer\n"
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
"Warnung: Falsche Gr��e der 'random_seed'-Datei - sie wird nicht verwendet\n"
-#: cipher/random.c:337
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "'%s' ist unlesbar: %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "Hinweis: 'random_seed'-Datei bleibt unver�ndert\n"
-#: cipher/random.c:395
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "'%s' kann nicht erzeugt werden: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "kann '%s' nicht schreiben: %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "kann '%s' nicht schliessen: %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr "Zu viele Zufallswerte angefordert: Die Grenze liegt bei %d\n"
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "WARNUNG: Der Zufallsgenerator erzeugt keine echten Zufallszahlen!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -913,79 +913,79 @@ msgstr ""
msgid "a notation value must not use any control characters\n"
msgstr "Ein \"notation\"-Wert darf keine Kontrollzeichen verwenden\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "ASCII-H�lle: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "Ung�ltige ASCII-H�lle"
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "ASCII-H�lle: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "Ung�ltige Klartextsignatur-Einleitung\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "verschachtelte Klartextunterschriften\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "Ung�ltige mit Bindestrich \"escapte\" Zeile: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "Unerwartete ASCII-H�lle:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "Ung�ltiges \"radix64\" Zeichen %02x ignoriert\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "vorzeitiges Dateiende (keine Pr�fsumme)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "vorzeitiges Dateiende (innerhalb der Pr�fsumme)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "Falsch aufgebaute Pr�fsumme\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "Pr�fsummenfehler; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "vorzeitiges Dateiende (im Nachsatz)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "Fehler in der Nachsatzzeile\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "Weitere Infos: siehe http://www.gnupg.org"
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "Keine g�ltigen OpenPGP-Daten gefunden.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "ung�ltige ASCII-H�lle: Zeile ist l�nger als %d Zeichen\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1655,7 +1655,7 @@ msgstr ""
msgid "Really create? "
msgstr "Wirklich erzeugen? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1713,20 +1713,20 @@ msgstr "zu viele Eintr�ge im pk-Lager - abgeschaltet\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "zu viele Eintr�ge im unk-Lager - abgeschaltet\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr ""
"der Zweitschl�ssel %08lX wird anstelle des Hauptschl�ssels %08lX verwendet\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, 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/getkey.c:2490
+#: g10/getkey.c:2499
msgid "[User id not found]"
msgstr "[User-ID nicht gefunden]"
@@ -1833,7 +1833,7 @@ msgstr "Schl�ssel %08lX: neuer Schl�ssel - �bersprungen\n"
msgid "no default public keyring\n"
msgstr "Kein voreingestellter �ffentlicher Schl�sselbund\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "Schreiben nach '%s'\n"
@@ -2594,119 +2594,125 @@ msgid "no secret key\n"
msgstr "Kein geheimer Schl�ssel\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr " [verf�llt: %s]"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "�ffentlicher Schl�ssel ist %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "Mit �ffentlichem Sch�ssel verschl�sselte Daten: Korrekte DEK\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "verschl�sselt mit %u-Bit %s Schl�ssel, ID %08lX, erzeugt %s\n"
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
# [kw]
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "verschl�sselt mit %s Schl�ssel, ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "Entschl�sselung mit �ffentlichem Schl�ssel fehlgeschlagen: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "Enschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "Warnung: Verschl�sselte Botschaft ist manipuliert worden!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "Enschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
"Hinweis: Der Absender verlangte Vertraulichkeit(\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "Urspr�nglicher Dateiname='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"Einzelner Widerruf - verwenden Sie \"gpg --import\" um ihn anzuwenden\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "WARNUNG: Ung�ltige \"Notation\"-Daten gefunden\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "\"Notation\": "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Richtlinie: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "Unterschriften-�berpr�fung unterdr�ckt\n"
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "keine abgetrennte Unterschrift\n"
+
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
-#: g10/mainproc.c:1217
+#: g10/mainproc.c:1256
#, 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:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "FALSCHE Unterschrift von \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Korrekte Unterschrift von \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Unterschrift kann nicht gepr�ft werden: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
msgid "not a detached signature\n"
msgstr "keine abgetrennte Unterschrift\n"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "Einzelne Unterschrift der Klasse 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "Unterschrift nach alter (PGP 2.x) Art\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "ung�ltiges root-Paket in proc_tree() entdeckt\n"
@@ -2819,23 +2825,23 @@ msgid "data not saved; use option \"--output\" to save it\n"
msgstr ""
"Daten wurden nicht gespeichert; verwenden Sie daf�r die Option \"--output\"\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Abgetrennte Beglaubigungen.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Bitte geben Sie den Namen der Datendatei ein: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "lese stdin ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
msgid "no signed data\n"
msgstr "keine unterschriebene Daten\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "kann signierte Datei '%s' nicht �ffnen.\n"
@@ -3014,7 +3020,7 @@ msgstr "%s: kann nicht zugegriffen werden: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: Verzeichnis existiert nicht!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: kann nicht erzeugt werden: %s\n"
@@ -3502,31 +3508,31 @@ msgstr "%s: unbekannte Dateinamenerweiterung\n"
msgid "Enter new filename"
msgstr "Neuen Dateinamen eingeben"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "Schreiben auf die Standardausgabe\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "die unterzeichneten Daten sind wohl in '%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: neue Optionendatei erstellt\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: Verzeichnis kann nicht erzeugt werden: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: Verzeichnis erzeugt\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"Sie m�ssen GnuPG noch einmal starten, damit es die neue Optionsdatei liest\n"
diff --git a/po/eo.po b/po/eo.po
index 14fbc1577..48204af67 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.1e\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-08-16 23:19+01:00\n"
"Last-Translator: Edmund GRIMLEY EVANS <[email protected]>\n"
"Language-Team: Esperanto <[email protected]>\n"
@@ -266,63 +266,63 @@ msgstr "... �i tio estas cimo (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "vi trovis cimon ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "ne povas malfermi '%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "ne povas stat-i '%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "'%s' ne estas normala dosiero - ignorita\n"
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "noto: dosiero random_seed estas malplena\n"
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr "averto: nevalida grando de la dosiero random_seen - ne uzita\n"
-#: cipher/random.c:337
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "ne povas legi '%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "noto: dosiero random_seed ne aktualigita\n"
-#: cipher/random.c:395
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "ne povas krei '%s': %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "ne povas skribi '%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "ne povas fermi '%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr "tro da stokastaj bitoj petitaj; la limo estas %d\n"
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "AVERTO: uzas malsekuran stokastilon!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -900,79 +900,79 @@ msgstr "punktoj en notacia nomo devas esti inter aliaj signoj\n"
msgid "a notation value must not use any control characters\n"
msgstr "notacia valoro ne povas enhavi stirsignojn\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "kiraso: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "nevalida kiraso�apo: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "kiraso�apo: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "nevalida �apo de klarteksta subskribo\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "ingitaj klartekstaj subskriboj\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "nevalida strek-eskapita linio: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "neatendita kiraso:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "nevalida signo %02x en bazo 64 ignorita\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "tro frua dosierfino (nenia CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "tro frua dosierfino (en CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "misformita CRC\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "CRC-eraro; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "tro frua dosierfino (en vosto)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "eraro en vostolinio\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "Por informoj vidu http://www.gnupg.org"
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "validaj OpenPGP-datenoj ne trovitaj.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "nevalida kiraso: linio pli longa ol %d signojn\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1625,7 +1625,7 @@ msgstr ""
msgid "Really create? "
msgstr "�u vere krei? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1683,17 +1683,17 @@ msgstr "tro da registroj en pk-staplo - mal�altas\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "tro da registroj en unk-staplo - mal�altas\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "uzas flankan �losilon %08lX anstata� la �efa �losilo %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "�losilo %08lX: sekreta �losilo sen publika �losilo - ignorita\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
msgid "[User id not found]"
msgstr "[Uzantidentigilo ne trovita]"
@@ -1800,7 +1800,7 @@ msgstr "�losilo %08lX: ne estas RFC-2440-�losilo - ignorita\n"
msgid "no default public keyring\n"
msgstr "mankas implicita publika �losilaro\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "skribas al '%s'\n"
@@ -2554,115 +2554,121 @@ msgid "no secret key\n"
msgstr "mankas sekreta �losilo\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr " [eksvalidi�os: %s]"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "publika �losilo estas %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "publik�losile �ifritaj datenoj: bona DEK\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "�ifrita per %u-bita %s-�losilo, %08lX, kreita je %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "�ifrita per %s-�losilo, %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "publik�losila mal�ifrado malsukcesis: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "mal�ifrado sukcesis\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "AVERTO: �ifrita mesa�o estis manipulita!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "mal�ifrado malsukcesis: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTO: sendinto petis konfidencon (\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "originala dosiernomo='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "memstara revoko - uzu \"gpg --import\" por apliki �in\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "AVERTO: nevalida notacia dateno trovita\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Notacio: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Gvidlinio: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "kontrolo de subskribo estas mal�altita\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "fari apartan subskribon"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Subskribo farita je %.*s per %s, �losilo %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "MALBONA subskribo de \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Bona subskribo de \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alinome \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Ne povas kontroli subskribon: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "fari apartan subskribon"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "memstara subskribo de klaso 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "malnovstila subskribo (PGP 2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "nevalida radikpaketo trovita en proc_tree()\n"
@@ -2777,24 +2783,24 @@ msgstr "Ripetu pasfrazon: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "datenoj ne savitaj; uzu la opcion \"--output\" por savi ilin\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Aparta subskribo.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Bonvolu doni la nomon de la dosiero: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "legas la normalan enigon ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "ne povas malfermi subskribitan dosieron '%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "ne povas malfermi subskribitan dosieron '%s'\n"
@@ -2967,7 +2973,7 @@ msgstr "%s: ne povas aliri: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: dosierujo ne ekzistas!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: ne povas krei: %s\n"
@@ -3447,31 +3453,31 @@ msgstr "%s: nekonata sufikso\n"
msgid "Enter new filename"
msgstr "Donu novan dosiernomon"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "skribas al la normala eligo\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "supozas subskribitajn datenojn en '%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: nova opcio-dosiero kreita\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: ne povas krei dosierujon: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: dosierujo kreita\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"vi devas restartigi GnuPG, por ke �i povu legi la novan opcio-dosieron\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 12ca28576..ade62c3e1 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,7 +7,7 @@
# GPG version: 1.0.0
msgid ""
msgstr ""
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 1999-10-27 06:35+0200\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Date: 1998-11-13 10:49:25+0100\n"
@@ -276,64 +276,64 @@ msgstr "... esto es un bug (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "Ha encontrado Vd. un bug... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "no puede crearse %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "no puede abrirse `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr ""
"ATENCI�N: �se est� usando un generador de n�meros aleatorios inseguro!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -917,79 +917,79 @@ msgstr "los puntos en una notaci�n deben estar rodeados por otros caracteres\n"
msgid "a notation value must not use any control characters\n"
msgstr "un valor de notaci�n no debe usar ning�n caracter de control\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "armadura: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "cabecera de armadura no v�lida: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "cabecera de armadura: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "cabecera de firma clara no v�lida\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "firmas en texto claro anidadas\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "L�nea con guiones no v�lida: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "armadura inesperada"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "caracteres no v�lidos radix64 %02x ignorados\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "Fin de fichero prematuro\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "Fin de suma de comprobaci�n prematuro\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "Suma de comprobaci�n mal creada\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "Error en suma de comprobaci�n: %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "fin de fichero prematuro (en el cierre)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "error en la l�nea de cierre\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "no se han encontrados datos OpenPGP v�lidos\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armadura incorrecta: l�nea m�s larga de %d caracteres\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1652,7 +1652,7 @@ msgstr ""
msgid "Really create? "
msgstr "�Crear de verdad? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1710,17 +1710,17 @@ msgstr "demasiados registros en la cache pk - anulada\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "demasiados registros en la cache unk - anulada\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "usando clave secundaria %08lX en vez de clave primaria %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "clave %08lX: clave secreta sin clave p�blica - ignorada\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: usuario no encontrado\n"
@@ -1828,7 +1828,7 @@ msgstr "clave %08lX: no es conforme a rfc2440 - ignorada\n"
msgid "no default public keyring\n"
msgstr "no hay anillo p�blico por defecto\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "escribiendo en `%s'\n"
@@ -2586,115 +2586,121 @@ msgid "no secret key\n"
msgstr "no hay clave secreta\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "La clave caduca el %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "la clave p�blica es %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "datos cifrados de la clave p�blica: DEK bueno\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "cifrado con clave %2$s de %1$u bits, ID %3$08lX, creada el %4$s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "cifrado con clave %s, ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descifrado de la clave p�blica fallido: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "descifrado correcto\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATENCI�N: �el mensaje cifrado ha sido manipulado!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "descifrado fallido: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: el remitente solicit� \"s�lo-para-tus-ojos\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nombre fichero original='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "ATENCI�N: encontrados datos de notaci�n no v�lidos\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Notaci�n: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Pol�tica: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "suprimida la verificaci�n de la firma\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "hace una firma separada"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Firma creada el %.*s usando clave %s ID %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "Firma INCORRECTA de \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Firma correcta de \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr "tambi�n conocido como \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposible comprobar la firma: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "hace una firma separada"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, fuzzy, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "Clase de firma desconocida"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "firma viejo estilo (PGP 2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquete ra�z no v�lido detectado en proc_tree()\n"
@@ -2812,25 +2818,25 @@ msgstr "Repita contrase�a: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "datos no grabados; use la opci�n \"--output\" para grabarlos\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
#, fuzzy
msgid "Detached signature.\n"
msgstr "%d firmas borradas.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Introduzca el nombre del fichero de datos: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "leyendo stdin...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "imposible abrir datos firmados `%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "imposible abrir datos firmados `%s'\n"
@@ -3004,7 +3010,7 @@ msgstr "%s: no puede abrirse: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: �el directorio no existe!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: no puede crearse: %s\n"
@@ -3483,31 +3489,31 @@ msgstr "%s: sufijo desconocido\n"
msgid "Enter new filename"
msgstr "Introduzca nuevo nombre de fichero"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "escribiendo en stdout\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "asumiendo que hay datos firmados en `%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: se ha creado un nuevo fichero de opciones\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: no puede crearse el directorio: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: directorio creado\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index d431d3d3c..4d5fae11f 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.1h\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-06-28 18:41+02:00\n"
"Last-Translator: Ga�l Qu�ri <[email protected]>\n"
"Language-Team: French <[email protected]>\n"
@@ -273,68 +273,68 @@ msgstr "... c'est un bug (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "vous avez trouv� un bug... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "impossible d'ouvrir `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "impossible d'acc�der � `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "`%s' n'est pas un fichier r�gulier - ignor�\n"
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "note: le fichier `random_seed' est vide\n"
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
"avertissement: la taille du fichier `random_seed' est invalide.\n"
"Celui-ci ne sera pas utilis�.\n"
-#: cipher/random.c:337
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "impossible de lire `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "note: le fichier `random_seed' n'a pas �t� mis � jour\n"
-#: cipher/random.c:395
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "impossible de cr�er `%s': %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "impossible d'�crire `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "impossible de fermer `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
"une quantit� de donn�es al�atoires trop importante a �t� demand�e.\n"
"La limite est %d bits.\n"
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr ""
"ATTENTION: utilisation d'un g�n�rateur de nombres al�atoires peu s�r !!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -919,79 +919,79 @@ msgstr ""
msgid "a notation value must not use any control characters\n"
msgstr "une valeur de notation ne doit utiliser aucun caract�re de contr�le\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "armure: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "en-t�te d'armure invalide: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "en-t�te d'armure: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "en-t�te de signature claire invalide\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "signatures en texte clair imbriqu�es\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "ligne �chapp�e par `-' invalide: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "armure inattendue:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "caract�re %02x invalide en base 64 ignor�\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "fin de fichier pr�matur�e (pas de CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "fin de fichier pr�matur�e (dans le CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC d�form�\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "Erreur de CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "fin de fichier pr�matur�e (dans la remorque)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "erreur dans la ligne de remorque\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "Pour information voir http://www.gnupg.org"
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "aucune donn�e OpenPGP valide n'a �t� trouv�e.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armure invalide: ligne plus longue que %d caract�res\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1654,7 +1654,7 @@ msgstr ""
msgid "Really create? "
msgstr "Cr�er vraiment ? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1712,19 +1712,19 @@ msgstr "trop d'entr�es dans le cache pk - d�sactiv�\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "trop d'entr�es dans le cache unk - d�sactiv�\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr ""
"utilisation de la cl� secondaire %08lX � la place de la cl�\n"
"principale %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "cl� %08lX: cl� secr�te sans cl� publique - non prise en compte\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
msgid "[User id not found]"
msgstr "[Nom utilisateur introuvable]"
@@ -1831,7 +1831,7 @@ msgstr "cl� %08lX: ce n'est pas une cl� rfc2440 - ignor�e\n"
msgid "no default public keyring\n"
msgstr "pas de porte-cl�s public par d�faut\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "�criture de `%s'\n"
@@ -2587,115 +2587,121 @@ msgid "no secret key\n"
msgstr "pas de cl� secr�te\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr " [expire: %s]"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "la cl� publique est %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "donn�es chiffr�es par cl� publique: bonne cl� de chiffrement (DEK)\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "chiffr� avec une cl� de %u bits %s, ID %08lX, cr��e le %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "chiffr� avec une cl� %s, %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "le d�chiffrement par cl� publique a �chou�: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "le d�chiffrement a r�ussi\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATTENTION: le message chiffr� a �t� manipul� !\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "le d�chiffrement a �chou�: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTE: l'exp�diteur a demand� �pour vos yeux seulement�\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nom de fichier original: '%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "r�vocation autonome - utilisez �gpg --import� pour l'appliquer\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "ATTENTION: des donn�es de notation invalides ont �t� d�tect�es\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Notation: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Politique: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "v�rification de signature supprim�e\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "faire une signature d�tach�e"
+
+#: g10/mainproc.c:1256
#, 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:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "MAUVAISE signature de \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Bonne signature de \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Impossible de v�rifier la signature: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "faire une signature d�tach�e"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "signature autonome de classe 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "signature d'un ancien style (PGP 2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquet racine invalide d�tect� dans proc_tree()\n"
@@ -2814,24 +2820,24 @@ msgstr ""
"les donn�es ne sont pas enregistr�es; utilisez l'option �--output� pour\n"
"les enregistrer\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Signature d�tach�e.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Entrez le nom du fichier de donn�es: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "lecture de l'entr�e standard...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "impossible d'ouvir les donn�es sign�es `%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "impossible d'ouvir les donn�es sign�es `%s'\n"
@@ -3008,7 +3014,7 @@ msgstr "%s: impossible d'acc�der: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: le r�pertoire n'existe pas !\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: impossible de cr�er: %s\n"
@@ -3505,31 +3511,31 @@ msgstr "%s: suffixe inconnu\n"
msgid "Enter new filename"
msgstr "Entrez le nouveau nom de fichier"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "�criture vers la sortie standard\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "les donn�es sign�es sont suppos�es �tre dans `%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: nouveau fichier d'options cr��\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: impossible de cr�er le r�pertoire: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: r�pertoire cr��\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"vous devez red�marrer GnuPG pour qu'il puisse lire le nouveau\n"
diff --git a/po/id.po b/po/id.po
index 5ca777906..569da0b75 100644
--- a/po/id.po
+++ b/po/id.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: GNU Privacy Guard 1.0.1\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-02-06 18:04+07:00\n"
"Last-Translator: Tedi Heriyanto <[email protected]>\n"
"Language-Team: Indonesia <[email protected]>\n"
@@ -267,63 +267,63 @@ msgstr "... kesalahan (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "anda menemukan kesalahan ...(%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "tidak dapat membuka `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "tidak dapat membuka `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "tidak dapat membuka `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "tidak dapat membuat %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "tidak dapat membuka `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "tidak dapat membuka `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "PERINGATAN: menggunakan random number generator yang tidak aman!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -900,79 +900,79 @@ msgstr "titik dalam nama notasi harus diapit oleh karakter lain\n"
msgid "a notation value must not use any control characters\n"
msgstr "nilai notasi tidak boleh menggunakan karakter kendali\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "armor: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "header armor tidak valid: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "header armor: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "header clearsig tidak valid\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "signature teks bersarang\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "dash escaped line tidak valid: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "armor tidak terduga:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "karakter radix64 tidak valid %02x dilewati\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "eof prematur (tanpa CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "eof prematur (dalam CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC tidak tepat\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "kesalahan CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "eof prematur (dalam Trailer)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "kesalahan dalam garis trailer\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "tidak ditemukan data OpenPGP yang valid.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armor tidak valid: baris melebihi %d karakter\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1621,7 +1621,7 @@ msgstr ""
msgid "Really create? "
msgstr "Ingin diciptakan? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1679,17 +1679,17 @@ msgstr "terlalu banyak masukan dalam pk cache - ditiadakan\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "terlalu banyak masukan di unk cache - ditiadakan\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "menggunakan kunci sekunder %08lX selain kunci primer %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "kunci %08lX: kunci rahasia tanpa kunci publik - dilewati\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: user tidak ditemukan\n"
@@ -1797,7 +1797,7 @@ msgstr "kunci %08lX: bukan kunci rfc2440 - dilewati\n"
msgid "no default public keyring\n"
msgstr "tidak ada keyring publik baku\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "menulis ke `%s'\n"
@@ -2552,115 +2552,121 @@ msgid "no secret key\n"
msgstr "tidak ada kunci rahasia\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "Kunci berakhir pada %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "kunci publik adalah %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "data terenkripsi dengan kunci publik: DEK baik\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "dienkripsi dengan %u-bit kunci %s, ID %08lX, tercipta %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "dienkripsi dengan kunci %s, ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "gagal dekripsi kunci publik: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "dekripsi lancar\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "PERINGATAN: pesan terenkripsi telah dimanipulasi!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "gagal dekripsi: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "CATATAN: pengirim meminta \"for-your-eyes-only\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nama file asli='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "PERINGATAN: ditemukan notasi data tidak valid\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Notasi: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Kebijakan: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "verifikasi signature tidak optimal\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "buat detached signature"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Signature dibuat %.*s menggunakan kunci %s ID %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "signature BURUK dari \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Signature baik dari \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Tidak dapat memeriksa signature: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "buat detached signature"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, fuzzy, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "kelas signature tidak dikenal"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "signature model lama (PGP 2.X)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "terdeteksi root paket tidak valid dalam proc_tree()\n"
@@ -2776,25 +2782,25 @@ msgstr "Ulangi passphrase: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "data tidak disimpan; gunakan pilihan \"--output\" untuk menyimpannya\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
#, fuzzy
msgid "Detached signature.\n"
msgstr "Menghapus %d signature.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Silakan masukkan nama file data: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "membaca stdin ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "tidak dapat membuka data tertandai `%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "tidak dapat membuka data tertandai `%s'\n"
@@ -2966,7 +2972,7 @@ msgstr "%s: tidak dapat akses: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: direktori tidak ada!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: tidak dapat membuat: %s\n"
@@ -3443,31 +3449,31 @@ msgstr "%s: suffix tidak dikenal\n"
msgid "Enter new filename"
msgstr "Masukkan nama file baru"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "menulis ke stdout\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "mengasumsikan data bertanda dalam `%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: file pilihan baru tercipta\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: tidak dapat membuat direktori: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: direktori tercipta\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 0dd6cc567..43f234c97 100644
--- a/po/it.po
+++ b/po/it.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.0.0h\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 1999-12-08 15:51+02:00\n"
"Last-Translator: Marco d'Itri <[email protected]>\n"
"Language-Team: Italian <[email protected]>\n"
@@ -267,64 +267,64 @@ msgstr "... questo � un bug (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "Hai trovato un bug... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "impossibile creare %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "impossibile aprire `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr ""
"ATTENZIONE: si sta usando un generatore di numeri casuali non sicuro!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -905,79 +905,79 @@ msgstr "nel nome di una nota i punti devono avere altri caratteri intorno\n"
msgid "a notation value must not use any control characters\n"
msgstr "il valore di una nota non deve usare caratteri di controllo\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "armatura: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "header dell'armatura non valido: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "header dell'armatura: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "header della firma in chiaro non valido\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "firme in chiaro annidate\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "riga protetta con il trattino non valida: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "armatura inaspettata:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "Carattere radix64 non valido %02x saltato\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "eof prematura (nessun CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "eof prematura (nel CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC malformato\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "errore nel CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "eof prematura (nella coda)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "errore nella riga della coda\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "Non sono stati trovati dati OpenPGP validi.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armatura non valida: linea pi� lunga di %d caratteri\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1635,7 +1635,7 @@ msgstr ""
msgid "Really create? "
msgstr "Crea davvero? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1693,17 +1693,17 @@ msgstr "troppe voci nella pk cache - disabilitata\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "troppe voci nella unk cache - disabilitata\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "uso la chiave secondaria %08lX invece della chiave primaria %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "chiave %08lX: chiave segreta senza chiave pubblica - saltata\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: utente non trovato\n"
@@ -1811,7 +1811,7 @@ msgstr "chiave %08lX: chiave non rfc2440 - saltata\n"
msgid "no default public keyring\n"
msgstr "nessun portachiavi pubblico predefinito\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "scrittura in `%s'\n"
@@ -2569,115 +2569,121 @@ msgid "no secret key\n"
msgstr "manca la chiave segreta\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "La chiave scadr� il %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "la chiave pubblica � %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "dati cifrati con la chiave pubblica: DEK corretto\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "cifrato con la chiave %2$s di %1$u bit, ID %3$08lX, creata il %4$s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "Cifrato con la chiave %s con ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "decifratura della chiave pubblica fallita: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "decifratura corretta\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATTENZIONE: il messaggio cifrato � stato manipolato!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "decifratura fallita: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: il mittente ha richiesto \"solo-per-i-tuoi-occhi\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome del file originale='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revoca solitaria - usa \"gpg --import\" per applicarla\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "ATTENZIONE: trovati dati di una nota non validi\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Nota: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Policy: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "verifica della firma soppressa\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "fai una firma separata"
+
+#: g10/mainproc.c:1256
#, 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:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "Firma NON corretta da \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Firma valida da \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " anche noto come \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Impossibile controllare la firma: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "fai una firma separata"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "firma solitaria di classe 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "firma vecchio stile (PGP 2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "individuato un pacchetto radice non valido in proc_tree()\n"
@@ -2793,24 +2799,24 @@ msgid "data not saved; use option \"--output\" to save it\n"
msgstr ""
"i dati non sono stati salvati; usa l'opzione \"--output\" per salvarli\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Firma separata.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Inserisci il nome del file di dati: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "viene letto stdin...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "impossibile aprire i dati firmati `%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "impossibile aprire i dati firmati `%s'\n"
@@ -2986,7 +2992,7 @@ msgstr "%s: impossibile acedere a: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: la directory non esiste!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: impossibile creare: %s\n"
@@ -3470,31 +3476,31 @@ msgstr "%s: suffisso sconosciuto\n"
msgid "Enter new filename"
msgstr "Inserire il nuovo nome del file"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "scrivo su stdout\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "suppongo che i dati firmati siano in `%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: creato un nuovo file delle opzioni\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: impossibile creare la directory: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: directory creata\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"� necessario eseguire di nuovo GnuPG in modo che possa leggere il nuovo\n"
diff --git a/po/ja.po b/po/ja.po
index f02002ba4..5dadd1504 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.4\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-10-19 23:08+09:00\n"
"Last-Translator: IIDA Yosiaki <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\n"
@@ -268,63 +268,63 @@ msgstr "... �Х��Ǥ� (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "�Х��򸫤Ĥ����褦�Ǥ� ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "`%s'�������ޤ���: %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "`%s'��Ĵ�٤뤳�Ȥ��Ǥ��ޤ���: %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "`%s' �����̤Υե�����ǤϤ���ޤ��� - ̵��\n"
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "����: random_seed �ե�����϶��Ǥ�\n"
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr "�ٹ�: ̵���ʥ������� random_seed �ե����� - �Ȥ��ޤ���\n"
-#: cipher/random.c:337
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "`%s'���ɤ�ޤ���: %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "����: random_seed �ե�����ι����򤷤ޤ���\n"
-#: cipher/random.c:395
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "`%s'���Ǥ��ޤ���: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "`%s'�˽񤱤ޤ���: %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "`%s'���Ĥ����ޤ���: %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr "�����ࡦ�ӥåȤ򤿤������׵ᤷ�᤮�Ǥ����³��� %d\n"
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "�ٹ�: ��Ф���������Ҥ��Ȥ��Ƥ��ޤ�!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -941,79 +941,79 @@ msgstr "����̾�ΥɥåȤ�¾��ʸ���ǰϤޤʤ���Фʤ�ޤ���\n"
msgid "a notation value must not use any control characters\n"
msgstr "����̾���ͤ�����ʸ�����Ѥ��ƤϤ����ޤ���\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "����: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "̵���������إå���: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "�����إå���: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "̵���ʥ��ꥢ��̾�إå���\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "����ҤΥ��ꥢ��̾\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "̵���ʥ��å���ǥ��������פ��줿��: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "ͽ����������:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "̵����64��ʸ��%02x��ȤФ��ޤ�\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "�ե������������᤹���ޤ� (CRC������ޤ���)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "�ե������������᤹���ޤ� (CRC����ˤ���ޤ�)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC�ν񼰤�����������ޤ���\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "CRC���顼��%06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "�ե������������᤹���ޤ� (����������ˤ���ޤ�)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "�����ιԤ˥��顼������ޤ�\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "KUHASIKU WA http://www.gnupg.org/ WO GORANKUDASAI"
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "ͭ����OpenPGP�ǡ��������Ĥ���ޤ���\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "̵��������: �Ԥ�Ĺ����%dʸ����Ķ���Ƥ��ޤ�\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1659,7 +1659,7 @@ msgstr "����%lu��̤��ˤǤ��ޤ��� (����ι�Ԥ����פΤ��뤤�Ǥ��礦)\n"
msgid "Really create? "
msgstr "�����˺��ޤ���? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1717,17 +1717,17 @@ msgstr "pk����å���Υ���ȥ꡼��¿�����ޤ� - ���Ѷػ�\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "unk����å���Υ���ȥ꡼��¿�����ޤ� - ���Ѷػ�\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "����%08lX��縰%08lX�����Ѥ��ޤ�\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "��%08lX: �������Τʤ���̩���Ǥ��������å�\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
msgid "[User id not found]"
msgstr "[�桼����id�����Ĥ���ޤ���]"
@@ -1834,7 +1834,7 @@ msgstr "�� %08lX: ���������Ǥ� - �����å�\n"
msgid "no default public keyring\n"
msgstr "����θ������ؤ�����ޤ���\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "`%s'�ؤν�Ф�\n"
@@ -2586,115 +2586,121 @@ msgid "no secret key\n"
msgstr "��̩��������ޤ���\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr " [ͭ������: %s]"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "��������%08lX�Ǥ�\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "�������ǰŹ沽���줿�ǡ���: ������DEK�Ǥ�\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "%u-�ӥå�%s��, ID %08lX�ǰŹ沽%s�ˤǤ��ޤ���\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "%s��, ID %08lX�ǰŹ沽����ޤ���\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "������������˼��Ԥ��ޤ���: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "���������\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "�ٹ�: �Ź沽���줿��å������ϲ��⤵��Ƥ��ޤ�!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "����˼��Ԥ��ޤ���: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "����: �����Ԥϡ����ˤ���פ褦�˵��Ƥ��ޤ�\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "���Υե�����̾='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "��Ω�˴�����gpg --import�פ�Ȥä�Ŭ�Ѥ��Ƥ�������\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "�ٹ�: ̵��������ǡ���������ޤ�\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "����: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "�ݥꥷ��: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "��̾�θ��ڤ��ά\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "ʬΥ��̾�����"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "%.*s ��%s��ID %08lX�ˤ���̾\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "������ ��̾: \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "��������̾: \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " ��̾ \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "��̾�򸡾ڤǤ��ޤ���: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "ʬΥ��̾�����"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "���饹0x%02x����Ω��̾\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "�Ť����� (PGP 2.x) �ν�̾\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "proc_tree() �����̵���ʥѥ��åȤ򸡽Ф��ޤ���\n"
@@ -2813,24 +2819,24 @@ msgstr ""
"�ǡ�������¸����Ƥ��ޤ���\n"
"��¸����ˤϡ�--output�ץ��ץ�������Ѥ��Ƥ�������\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "ʬΥ��̾��\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "�ǡ������ե������̾��������: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "ɸ�����Ϥ���ɹ����� ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "��̾���줿�ǡ���`%s'�������ޤ���\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "��̾���줿�ǡ���`%s'�������ޤ���\n"
@@ -3002,7 +3008,7 @@ msgstr "%s: ���������Ǥ��ޤ���: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: ���񤬤���ޤ���!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: �����Ǥ��ޤ���: %s\n"
@@ -3482,31 +3488,31 @@ msgstr "%s: ̤�Τγ�ĥ��\n"
msgid "Enter new filename"
msgstr "�������ե�����̾�����Ϥ��Ƥ�������"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "ɸ����Ϥ˽񤭽Ф��ޤ�\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "��̾���줿�ǡ�����`%s'�ˤ�������ꤷ�ޤ�\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: ���������ץ���󡦥ե����뤬�Ǥ��ޤ���\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: ���񤬤Ǥ��ޤ���: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: ���񤬤Ǥ��ޤ���\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr "���ץ���󡦥ե�������ɤ�ľ���褦��GnuPG��Ƶ�ư���Ƥ�������\n"
diff --git a/po/nl.po b/po/nl.po
index b964651a6..f76d8d3c5 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.0h\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-02-20 21:30+01:00\n"
"Last-Translator: Ivo Timmermans <[email protected]>\n"
"Language-Team: Dutch <[email protected]>\n"
@@ -266,63 +266,63 @@ msgstr "... dit is een programmeerfout (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "u heeft een fout in het programma gevonden ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "kan `%s' niet openen: %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "kan `%s' niet openen: %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "kan `%s' niet openen: %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "kan %s niet aanmaken: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "kan `%s' niet openen: %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "kan `%s' niet openen: %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "LET OP: de willekeurige getallengenerator is niet veilig!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -904,81 +904,81 @@ msgstr "punten in notitienamen moeten omgeven zijn door andere tekens\n"
msgid "a notation value must not use any control characters\n"
msgstr "een notitienaam mag geen controletekens bevatten\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "beveiliging: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "ongeldige beveiliginsinformatie: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "beveiligingsinformatie"
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "ongeldige informatie over leesbare ondertekening\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "geneste leesbare ondertekeningen\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "ongeldige regel met streepjes: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "onverwachte beveiliging:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "ongeldig wortel64 teken %02x overgeslagen\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "voortijdig einde (geen controlesom)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "voortijdig einde (in controlesom)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "verkeerde controlesom\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "fout in controlesom; %06lx - %06lx\n"
# fixme
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "voortijdig einde (in trailer)\n"
# fixme
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "fout in de trailer regel\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "geen geldige OpenPGP gegevens gevonden.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "ongeldige beveiliging: regel langer dan %d tekens\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1647,7 +1647,7 @@ msgstr ""
msgid "Really create? "
msgstr "Echt maken? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1705,18 +1705,18 @@ msgstr "te veel ingangen in de pk cache - uitgezet\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "te veel ingangen in de unk cache - uitgezet\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "gebruik secundaire sleutel %08lx in plaats van de primaire %08lx\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr ""
"sleutel %08lX: geheime sleutel zonder openbare sleutel - overgeslagen\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: gebruiker niet gevonden\n"
@@ -1825,7 +1825,7 @@ msgstr "sleutel %08lx: geen sleutel volgens rfc2240 - overgeslagen\n"
msgid "no default public keyring\n"
msgstr "geen standaard openbare sleutelbos\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "schrijven naar `%s'\n"
@@ -2589,116 +2589,122 @@ msgid "no secret key\n"
msgstr "geen geheime sleutel\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "Sleutel verloopt op %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "openbare sleutel is %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "gegevens versleuteld met een openbare sleutel: goede DEK\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "versleuteld met %u-bit %s sleutel, nummer %08lX, gemaakt op %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "versleuteld met %s sleutel, nummer %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "openbare sleutel-ontsleuteling ging niet: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "ontsleutelen ging goed\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "LET OP: het versleutelde bericht is veranderd!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "ontsleuteling mislukte: %s\n"
# Dit kan wel Engels blijven.. toch?
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "LET OP: afzender vroeg om \"for-your-eyes-only\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "originele bestandsnaam='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "alleenstaande intrekking - gebruik \"gpg --import\" om uit te voeren\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "LET OP: ongeldige aantekeningen gevonden\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Aantekening: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Beleid: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "controle van de ondertekening overgeslagen\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "maak een losstaande ondertekening"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Ondertekening gemaakt op %.*s met %s sleutel nummer %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "FOUTE ondertekening van \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Correcte ondertekening van \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Kan ondertekening niet controleren: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "maak een losstaande ondertekening"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "losstaande ondertekening van type 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "oude stijl (PGP 2.x) ondertekening\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "ongeldig hoofdpakket gevonden in proc_tree()\n"
@@ -2814,24 +2820,24 @@ msgid "data not saved; use option \"--output\" to save it\n"
msgstr ""
"gegevens niet bewaard; gebruik de optie \"--output\" om het op te slaan in\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Losstaande ondertekening.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Geef de naam van het gegevensbestand: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "lezen uit standaard invoer ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "kan ondertekende gegevens `%s' niet openen\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "kan ondertekende gegevens `%s' niet openen\n"
@@ -3007,7 +3013,7 @@ msgstr "%s: kan er niet bij: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: map bestaat niet!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: kan hem niet aanmaken: %s\n"
@@ -3493,31 +3499,31 @@ msgstr "%s: onbekend achtervoegsel\n"
msgid "Enter new filename"
msgstr "Geef een nieuwe bestandsnaam"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "naar standaard uitvoer schrijven\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "ik neem aan dat de getekende gegevens zich in `%s' bevinden\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: nieuw optiebestand aangemaakt\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: kan map niet aamaken: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: map aangemaakt\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"u moet GnuPG opnieuw starten, zodat het het nieuwe optiebestand kan inlezen\n"
diff --git a/po/pl.po b/po/pl.po
index eeca4a9c3..141360a2a 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.0.4\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-10-18 22:54+02:00\n"
"Last-Translator: Janusz A. Urbanowicz <[email protected]>\n"
"Language-Team: Polish <[email protected]>\n"
@@ -276,66 +276,66 @@ msgstr "... to jest b��d w programie (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "znalaz�e�(a�) b��d w programie ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "nie mo�na otworzy� %s: %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "nie mo�na sprawdzi� %s: %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "'%s' nie jest zwyk�ym plikiem - zostaje pomini�ty\n"
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "uwaga: plik random_seed jest pusty\n"
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
"ostrze�enie: plik random_seed ma niew�a�ciwy rozmiar - nie zostanie u�yty\n"
-#: cipher/random.c:337
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "nie mo�na odczyta� %s: %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "uwaga: plik random_seed nie jest uaktualniony\n"
-#: cipher/random.c:395
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "nie mo�na stworzy� %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "nie mo�na zapisa� %s: %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "nie mo�na zamkn�� %s: %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr "��danie zbyt wielu losowych bit�w; ograniczenie wynosi %d\n"
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr ""
"OSTRZE�ENIE: u�ywany generator liczb losowych\n"
"nie jest kryptograficznie bezpieczny!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -915,79 +915,79 @@ msgstr "kropki w adnotacji musz� znajdowa� si� pomi�dzy innymi znakami\n"
msgid "a notation value must not use any control characters\n"
msgstr "warto�� adnotacji nie mo�e zawiera� znak�w steruj�cych\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "opakowanie: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "niepoprawny nag��wek opakowania: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "nag��wek opakowania: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "niew�a�ciwy nag��wek czytelnego podpisanego dokumentu\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "zagnie�d�one podpisy na czytelnym dokumencie\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "niepoprawne oznaczenie linii minusami: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "nieoczekiwane opakowanie:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "niew�a�ciwy znak formatu radix64 %02x zosta� pomini�ty\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "przewczesny koniec pliku (brak CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "przedwczesny koniec pliku (w CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "b��d formatu CRC\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "B��d sumy CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "przedwczesny koniec pliku (w linii ko�cz�cej)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "b��d w linii ko�cz�cej\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "Dalsze informacje znajduj� si� na http://www.gnupg.org/"
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "nie odnaleziono poprawnych danych w formacie OpenPGP.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "b��d opakowania: linia d�u�sza ni� %d znak�w\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1655,7 +1655,7 @@ msgstr ""
msgid "Really create? "
msgstr "Na pewno utworzy�? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1713,17 +1713,17 @@ msgstr "zbyt wiele wpis�w w buforze kluczy publicznych - wy��czony\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "zbyt wiele wpis�w w buforze nieznanych kluczy - wy��czony\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "u�ywany jest podklucz %08lX zamiast klucza g��wnego %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "klucz %08lX: klucz tajny bez klucza jawnego - pomini�ty\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
msgid "[User id not found]"
msgstr "[brak identyfikatora u�ytkownika]"
@@ -1830,7 +1830,7 @@ msgstr "klucz %08lX: nowy klucz - pomini�ty\n"
msgid "no default public keyring\n"
msgstr "brak domy�lnego zbioru kluczy publicznych\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "zapis do '%s'\n"
@@ -2590,79 +2590,85 @@ msgid "no secret key\n"
msgstr "brak klucza prywatnego\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr "[wygasa :%s]"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "klucz publiczny %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "dane zaszyfrowane kluczem publicznym: poprawny klucz sesyjny\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, 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\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "zaszyfrowane kluczem %s, o identyfikatorze %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "b��d odszyfrowywania kluczem publicznym: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "odszyfrowane poprawnie\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "OSTRZE�ENIE: zaszyfrowana wiadomo�� by�a manipulowana!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "b��d odszyfrowywania: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "UWAGA: nadawca zaznaczy� �e wiadomo�� nie powinna by� zapisywana\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "pierwotna nazwa pliku='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"osobny certyfikat uniewa�nienia - u�yj \"gpg --import\" aby go przyj��\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "OSTRZE�ENIE: niepoprawne dane w adnotacji\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Adnotacja:"
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Regulamin:"
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "wymuszono pomini�cie sprawdzenia podpisu\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "z�o�enie podpisu oddzielonego od dokumentu"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr ""
@@ -2670,38 +2676,38 @@ msgstr ""
"z u�yciem klucza o identyfikatorze %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "NIEPOPRAWNY podpis z�o�ony przez \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Poprawny podpis z�o�ony przez \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " alias \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nie mog� sprawdzi� podpisu: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "z�o�enie podpisu oddzielonego od dokumentu"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "osobny podpis klasy 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "podpis starego typu (PGP 2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "wykryto niepoprawny pakiet pierwotny w proc_tree()\n"
@@ -2819,24 +2825,24 @@ msgid "data not saved; use option \"--output\" to save it\n"
msgstr ""
"dane nie zosta�y zapisane; aby to zrobi�, nale�y u�y� opcji \"--output\"\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Podpis oddzielony od danych.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Nazwa pliku danych: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "czytam strumie� standardowego wej�cia\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "nie mo�na otworzy� podpisanego pliku '%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "nie mo�na otworzy� podpisanego pliku '%s'\n"
@@ -3013,7 +3019,7 @@ msgstr "%s: dost�p niemo�liwy: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: katalog nie istnieje!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: nie mog� utworzy�: %s\n"
@@ -3498,31 +3504,31 @@ msgstr "%s: nieznana ko�c�wka\n"
msgid "Enter new filename"
msgstr "Nazwa pliku"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "zapisywanie na wyj�cie standardowe\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "przyj�to obecno�� podpisanych danych w '%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: stworzono nowy plik ustawie�\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: nie mog� utworzy� katalogu: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: katalog utworzony\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr "aby u�y� nowego pliku ustawie�, nale�y od nowa uruchomi� GnuPG\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 6adf7e869..b26342576 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+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"
@@ -272,63 +272,63 @@ msgstr "... isto � um bug (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "voc� encontrou um bug ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "imposs�vel criar %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "AVISO: usando gerador de n�meros aleat�rios inseguro!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -931,79 +931,79 @@ msgstr ""
msgid "a notation value must not use any control characters\n"
msgstr "um valor de nota��o n�o deve usar caracteres de controle\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "armadura: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "cabe�alho de armadura inv�lido: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "cabe�alho de armadura: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "cabe�alho de assinatura em texto puro inv�lido\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "assinaturas em texto puro aninhadas\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "linha com h�fen inv�lida: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "armadura inesperada:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "caractere radix64 inv�lido %02x ignorado\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "fim de arquivo prematuro (sem CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "fim de arquivo prematuro (no CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC malformado\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "erro de CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "fim de arquivo prematuro (no \"Trailer\")\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "erro na linha \"trailer\"\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "nenhum dado OpenPGP v�lido encontrado.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armadura inv�lida: linha maior que %d caracteres\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1661,7 +1661,7 @@ msgstr ""
msgid "Really create? "
msgstr "Realmente criar? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1719,17 +1719,17 @@ msgstr "entradas demais no cache pk - desativado\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "entradas demais no cache unk - desativado\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "usando chave secund�ria %08lX ao inv�s de chave prim�ria %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "chave %08lX: chave secreta sem chave p�blica - ignorada\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: usu�rio n�o encontrado\n"
@@ -1837,7 +1837,7 @@ msgstr "chave %08lX: n�o � uma chave rfc2440 - ignorada\n"
msgid "no default public keyring\n"
msgstr "sem chaveiro p�blico padr�o\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "escrevendo para `%s'\n"
@@ -2595,115 +2595,121 @@ msgid "no secret key\n"
msgstr "nenhuma chave secreta\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "A chave expira em %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "a chave p�blica � %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "dados criptografados com chave p�blica: DEK v�lido\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "criptografado com chave %u-bit %s, ID %08lX, criada em %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "criptografado com chave %s, ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descriptografia de chave p�blica falhou: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "descriptografia correta\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "CUIDADO: a mensagem criptografada foi manipulada!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "descriptografia falhou: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: o remetente solicitou \"apenas-para-seus-olhos\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome de arquivo original='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revoga��o isolada - use \"gpg --import\" para aplic�-la\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "AVISO: dados de nota��o inv�lidos encontrados\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Nota��o: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Pol�tica: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "verifica��o de assinatura suprimida\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "fazer uma assinatura separada"
+
+#: g10/mainproc.c:1256
#, 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:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "Assinatura INCORRETA de \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Assinatura correta de \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " ou \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposs�vel verificar assinatura: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "fazer uma assinatura separada"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "assinatura isolada da classe 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "formato de assinatura antigo (PGP2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "pacote raiz inv�lido detectado em proc_tree()\n"
@@ -2821,24 +2827,24 @@ msgstr "Repita a frase secreta: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "dados n�o salvos; use a op��o \"--output\" para salv�-los\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Assinatura separada.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Por favor digite o nome do arquivo de dados: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "lendo de \"stdin\" ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "imposs�vel abrir dados assinados `%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "imposs�vel abrir dados assinados `%s'\n"
@@ -3011,7 +3017,7 @@ msgstr "%s: imposs�vel acessar: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: diret�rio inexistente!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: imposs�vel criar: %s\n"
@@ -3496,31 +3502,31 @@ msgstr "%s: sufixo desconhecido\n"
msgid "Enter new filename"
msgstr "Digite novo nome de arquivo"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "escrevendo em \"stdout\"\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "assumindo dados assinados em `%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: novo arquivo de op��es criado\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: imposs�vel criar diret�rio: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: diret�rio criado\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"voc� deve reiniciar o GnuPG, para que ele possa ler o novo arquivo\n"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 95e4c83b2..41eddc504 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 1999-09-09 20:28+0000\n"
"Last-Translator: Pedro Morais <[email protected]>\n"
"Language-Team: pt\n"
@@ -269,63 +269,63 @@ msgstr "... isto � um bug (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "voc� encontrou um bug ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "imposs�vel criar %s: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "AVISO: a utilizar gerador de n�meros aleat�rios inseguro!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -923,79 +923,79 @@ msgstr ""
msgid "a notation value must not use any control characters\n"
msgstr "um valor de nota��o n�o deve usar caracteres de controle\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "armadura: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "cabe�alho de armadura inv�lido: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "cabe�alho de armadura: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "cabe�alho de assinatura em texto puro inv�lido\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "assinaturas em texto puro aninhadas\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "linha com h�fen inv�lida: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "armadura inesperada:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "caracter radix64 inv�lido %02x ignorado\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "fim de ficheiro prematuro (sem CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "fim de ficheiro prematuro (no CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC malformado\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "erro de CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "fim de ficheiro prematuro (no \"Trailer\")\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "erro na linha \"trailer\"\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "nenhum dado OpenPGP v�lido encontrado.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armadura inv�lida: linha maior que %d caracteres\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1655,7 +1655,7 @@ msgstr ""
msgid "Really create? "
msgstr "Realmente criar? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1713,17 +1713,17 @@ msgstr "entradas demais no cache pk - desactivado\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "entradas demais no cache unk - desactivado\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "usando chave secund�ria %08lX ao inv�s de chave prim�ria %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "chave %08lX: chave secreta sem chave p�blica - ignorada\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: utilizador n�o encontrado\n"
@@ -1831,7 +1831,7 @@ msgstr "chave %08lX: n�o � uma chave rfc2440 - ignorada\n"
msgid "no default public keyring\n"
msgstr "sem porta-chaves p�blico padr�o\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "a escrever para `%s'\n"
@@ -2589,115 +2589,121 @@ msgid "no secret key\n"
msgstr "nenhuma chave secreta\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "A chave expira em %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "a chave p�blica � %08lX\n"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "dados encriptados com chave p�blica: DEK v�lido\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "encriptado com chave %u-bit %s, ID %08lX, criada em %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "encriptado com chave %s, ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "desencripta��o de chave p�blica falhou: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "desencripta��o correcta\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "CUIDADO: a mensagem encriptada foi manipulada!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "desencripta��o falhou: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: o remetente solicitou \"apenas-para-seus-olhos\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome do ficheiro original='%.*s'\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revoca��o solit�ria - utilize \"gpg --import\" para aplicar\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "AVISO: dados de nota��o inv�lidos encontrados\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Nota��o: "
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Pol�tica: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "verifica��o de assinatura suprimida\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "fazer uma assinatura separada"
+
+#: g10/mainproc.c:1256
#, 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:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "Assinatura INCORRECTA de \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Assinatura correta de \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " ou \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposs�vel verificar assinatura: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "fazer uma assinatura separada"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "assinatura de classe 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "formato de assinatura antigo (PGP2.x)\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "pacote raiz inv�lido detectado em proc_tree()\n"
@@ -2814,24 +2820,24 @@ msgstr "Repita a frase secreta: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "dados n�o gravados; use a op��o \"--output\" para grav�-los\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Assinatura desacoplada.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Por favor digite o nome do ficheiro de dados: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "lendo do \"stdin\" ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "imposs�vel abrir dados assinados `%s'\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "imposs�vel abrir dados assinados `%s'\n"
@@ -3004,7 +3010,7 @@ msgstr "%s: imposs�vel aceder: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: diretoria inexistente!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: imposs�vel criar: %s\n"
@@ -3487,31 +3493,31 @@ msgstr "%s: sufixo desconhecido\n"
msgid "Enter new filename"
msgstr "Digite novo nome de ficheiro"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "a escrever em \"stdout\"\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "a assumir dados assinados em `%s'\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: novo ficheiro de op��es criado\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: imposs�vel criar directoria: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: directoria criada\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr "vai ter de reiniciar o GnuPG, para poder ler as novas op��es\n"
diff --git a/po/ru.po b/po/ru.po
index 34c1b6353..4dddec7bb 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: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-01-26 22:08:36+0100\n"
"From: Gregory Steuck <[email protected]>\n"
@@ -324,64 +324,64 @@ msgstr "��-�� ... ������ � ��������� (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "�� ����� ������ � ��������� ... (%s:%d)\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, fuzzy, c-format
msgid "can't open `%s': %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, fuzzy, c-format
msgid "can't stat `%s': %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr ""
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr ""
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr ""
-#: cipher/random.c:337
+#: cipher/random.c:348
#, fuzzy, c-format
msgid "can't read `%s': %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr ""
-#: cipher/random.c:395
+#: cipher/random.c:406
#, fuzzy, c-format
msgid "can't create `%s': %s\n"
msgstr "%s: ���������� �������: %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, fuzzy, c-format
msgid "can't write `%s': %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, fuzzy, c-format
msgid "can't close `%s': %s\n"
msgstr "���������� ������� ���� `%s': %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr ""
-#: cipher/random.c:648
+#: cipher/random.c:659
#, fuzzy
msgid "WARNING: using insecure random number generator!!\n"
msgstr "��������: ������������ ���������� ��������� ��������� �����!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -982,83 +982,83 @@ msgstr ""
msgid "a notation value must not use any control characters\n"
msgstr ""
-#: g10/armor.c:304
+#: g10/armor.c:306
#, fuzzy, c-format
msgid "armor: %s\n"
msgstr "���������: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr ""
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr ""
-#: g10/armor.c:351
+#: g10/armor.c:353
#, fuzzy
msgid "invalid clearsig header\n"
msgstr "������������ ������ ��������� �������\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
#, fuzzy
msgid "nested clear text signatures\n"
msgstr "|[����]|������� ��������� �������"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "������������ ������ ������������ � �������: "
-#: g10/armor.c:539
+#: g10/armor.c:541
#, fuzzy
msgid "unexpected armor:"
msgstr "����������� ������"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, fuzzy, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "������������ ��� ��������� radix64 ������ %02x ��������\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "����������� ����� ����� (��� CRC)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "����������� ����� ����� (� CRC)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "������������ ����� CRC\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "������ CRC; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "����������� ����� ����� (� ������)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "������ � ����������� ������\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr ""
-#: g10/armor.c:1048
+#: g10/armor.c:1050
#, fuzzy
msgid "no valid OpenPGP data found.\n"
msgstr "�� ������� ���������� RFC1991 ��� OpenPGP ������.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr ""
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1722,7 +1722,7 @@ msgstr ""
msgid "Really create? "
msgstr "������������� �������? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1781,17 +1781,17 @@ msgstr ""
msgid "too many entries in unk cache - disabled\n"
msgstr ""
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "������������ �������������� ���� %09lX ������ ��������� %08lX%\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, fuzzy, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "��������� ���� %08lX: �� ����� ���������������� ��������� �����.\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: ������������ �� ������\n"
@@ -1899,7 +1899,7 @@ msgstr "��������� ���� %08lX: �� ����� ���������������� ��������� �����.\n"
msgid "no default public keyring\n"
msgstr "��� ������ �������� ������ �� ���������\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "������������ � `%s'\n"
@@ -2702,119 +2702,125 @@ msgid "no secret key\n"
msgstr "������ ��������� ����"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, fuzzy, c-format
msgid " [expires: %s]"
msgstr "���� ��������� �� %s\n"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, fuzzy, c-format
msgid "public key is %08lX\n"
msgstr "�������� ���� �� ������"
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
#, fuzzy
msgid "public key encrypted data: good DEK\n"
msgstr "����������� �������� ������ �� ������� %s\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, 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:378
+#: g10/mainproc.c:376
#, fuzzy, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "������� ������� %.*s, ��������� %s ���� %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "����������� �������� ������ �� ������� %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
#, fuzzy
msgid "decryption okay\n"
msgstr "����������� �� �������: %s\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr ""
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "����������� �� �������: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
#, fuzzy
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "���������: ����������� �������� \"������-���-�����-����\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr ""
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "�� ������� ���������� RFC1991 ��� OpenPGP ������.\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr ""
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr ""
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr ""
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "������� ��������� �������"
+
+#: g10/mainproc.c:1256
#, 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:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "������ ������� �� \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "������� ������� �� \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr ""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "���������� ��������� �������: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "������� ��������� �������"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, fuzzy, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "������� ������������ ����"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr ""
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr ""
@@ -2946,25 +2952,25 @@ msgstr "��������� �������� �����: %s\n"
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "������ �� ���� ���������; �������������� --\"output\" ��� ����������\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
#, fuzzy
msgid "Detached signature.\n"
msgstr "%d ������ ��������\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "����������, ������� ��� ����� ������: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr ""
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "���������� ������� ����������� ������ `%s' .\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "���������� ������� ����������� ������ `%s' .\n"
@@ -3139,7 +3145,7 @@ msgstr "%s: ���������� �������: %s\n"
msgid "%s: directory does not exist!\n"
msgstr ""
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, fuzzy, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: ���������� �������: %s\n"
@@ -3623,32 +3629,32 @@ msgstr ""
msgid "Enter new filename"
msgstr "--store [��� �����]"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
#, fuzzy
msgid "writing to stdout\n"
msgstr "������������ � `%s'\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, fuzzy, c-format
msgid "assuming signed data in `%s'\n"
msgstr "���������� ������� ����������� ������ `%s' .\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr ""
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, fuzzy, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: ���������� �������: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, fuzzy, c-format
msgid "%s: directory created\n"
msgstr "%s: ���������� �������: %s\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 4ceec9c2a..e9a320b09 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.1e\n"
-"POT-Creation-Date: 2001-03-27 16:54+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-04-23 16:43+02:00\n"
"Last-Translator: Daniel Resare <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
@@ -279,63 +279,63 @@ msgstr "... detta �r en bugg (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "du har hittat en bugg ... (%s:%d)\\n\n"
-#: cipher/random.c:309 g10/import.c:129 g10/keygen.c:1265
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "kan inte �ppna \"%s\": %s\n"
-#: cipher/random.c:313
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "kan inte ta status p� \"%s\": %s\n"
-#: cipher/random.c:318
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "\"%s\" �r inte �n vanlig fil - ignorerad\n"
-#: cipher/random.c:323
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "notera: filen random_seed �r tom\n"
-#: cipher/random.c:329
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr "varning: random_seed har en felaktig storlek och anv�nds d�rf�r inte\n"
-#: cipher/random.c:337
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "kan inte l�sa \"%s\": %s\n"
-#: cipher/random.c:375
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "notera: random_seed uppdaterades inte\n"
-#: cipher/random.c:395
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "kan inte skapa \"%s\": %s\n"
-#: cipher/random.c:402
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "kan inte skriva till \"%s\": %s\n"
-#: cipher/random.c:405
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "kan inte st�nga \"%s\": %s\n"
-#: cipher/random.c:416
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr "f�r m�nga slumpm�ssiga bitar efterfr�gades; maximalt antal �r %d\n"
-#: cipher/random.c:648
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "VARNING: anv�nder en os�ker slumptalsgenerator!!\n"
-#: cipher/random.c:649
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -928,79 +928,79 @@ msgstr "punkter i ett notationsnamn m�ste vara omgivna av andra tecken\n"
msgid "a notation value must not use any control characters\n"
msgstr "ett notationsv�rde f�r inte ineh�lla n�gra kontrolltecken\n"
-#: g10/armor.c:304
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "skal: %s\n"
-#: g10/armor.c:333
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "felaktig rubrikrad i skalet: "
-#: g10/armor.c:340
+#: g10/armor.c:342
msgid "armor header: "
msgstr "rad i skalet: "
-#: g10/armor.c:351
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "felaktig rubrikrad i klartextsignatur\n"
-#: g10/armor.c:403
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "flera klartextsignaturer g�r in i varandra\n"
-#: g10/armor.c:527
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "felaktig bindestreck-kodad rad: "
-#: g10/armor.c:539
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "ov�ntat skal:"
-#: g10/armor.c:665
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "ogiltigt radix64-tecken %02x hoppades �ver\n"
-#: g10/armor.c:708
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "f�r tidigt filslut (ingen CRC-summa)\n"
-#: g10/armor.c:742
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "f�r tidigt filslut (i CRC-summan)\n"
-#: g10/armor.c:746
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "felformaterad CRC-summa\n"
-#: g10/armor.c:750
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "CRC-fel; %06lx - %06lx\n"
-#: g10/armor.c:770
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "f�r tidigt filslut (i den avslutande raden)\n"
-#: g10/armor.c:774
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "fel i avslutande rad\n"
-#: g10/armor.c:920
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "F�r information se http://www.gnupg.org/"
-#: g10/armor.c:1048
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "hittade ingen giltig OpenPGP-data.\n"
-#: g10/armor.c:1053
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "felaktigt skal: raden �r l�ngre �n %d tecken\n"
-#: g10/armor.c:1057
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -1665,7 +1665,7 @@ msgstr ""
msgid "Really create? "
msgstr "Vill du verkligen skapa? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1723,17 +1723,17 @@ msgstr "f�r m�nga poster i pk-cachen - inaktiverad\n"
msgid "too many entries in unk cache - disabled\n"
msgstr "f�r m�nga poster i unk-cachen - inaktiverad\n"
-#: g10/getkey.c:2160
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "anv�nder sekund�ra nyckeln %08lX ist�llet f�r prim�rnyckeln %08lX\n"
-#: g10/getkey.c:2202 g10/trustdb.c:577
+#: g10/getkey.c:2211 g10/trustdb.c:577
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "nyckel %08lX: hemlig nyckel utan publik nyckel - hoppade �ver\n"
-#: g10/getkey.c:2490
+#: g10/getkey.c:2499
#, fuzzy
msgid "[User id not found]"
msgstr "%s: hittade inte anv�ndaren\n"
@@ -1841,7 +1841,7 @@ msgstr "nyckeln %08lX f�ljer inte standarden RFC2440 - �verhoppad\n"
msgid "no default public keyring\n"
msgstr "ingen f�rvald publik nyckel\n"
-#: g10/import.c:452 g10/openfile.c:230 g10/sign.c:312 g10/sign.c:635
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "skriver till \"%s\"\n"
@@ -2601,12 +2601,12 @@ msgid "no secret key\n"
msgstr "ingen hemlig nyckel\n"
#. of subkey
-#: g10/keylist.c:279 g10/mainproc.c:838
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr "[g�r ut: %s]"
-#: g10/mainproc.c:271
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "den publika nyckeln �r %08lX\n"
@@ -2618,108 +2618,114 @@ msgstr "den publika nyckeln �r %08lX\n"
# r�tt publik nyckel att kryptera datat med. Jag tycker
# inte att svenska �vers�ttningen �r mycket obskyrare �n engelska
# originalet iallafall.
-#: g10/mainproc.c:316
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "data krypterad med publik nyckel: korrekt krypteringsnyckel\n"
-#: g10/mainproc.c:368
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "krypterad med %u-bitars %s-nyckel, ID %08lX, skapad %s\n"
-#: g10/mainproc.c:378
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "krypterad med %s-nyckel, ID %08lX\n"
-#: g10/mainproc.c:392
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "dekryptering med publik nyckel misslyckades: %s\n"
-#: g10/mainproc.c:432
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "dekrypteringen lyckades\n"
-#: g10/mainproc.c:437
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "VARNING: det krypterade meddelandet har �ndrats!\n"
-#: g10/mainproc.c:442
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "dekrypteringen misslyckades: %s\n"
-#: g10/mainproc.c:461
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTERA: avs�ndaren efterfr�gade \"endast-f�r-dina-�gon\"\n"
-#: g10/mainproc.c:463
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "ursprungligt filnamn=\"%.*s\"\n"
-#: g10/mainproc.c:619
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"frist�ende �terkallelsecertifikat - anv�nd \"gpg --import\" f�r\n"
"att applicera\n"
-#: g10/mainproc.c:706 g10/mainproc.c:715
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "VARNING: ogiltig notationsdata hittades\n"
-#: g10/mainproc.c:718
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Notation: "
# finns det n�gon bra svensk �vers�ttning av policy?
-#: g10/mainproc.c:727
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "Policy: "
-#: g10/mainproc.c:1180
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "signaturen verifierades inte\n"
-#: g10/mainproc.c:1217
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "skapa en signatur i en separat fil"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Signerades %.*s med hj�lp av %s-nyckeln med ID %08lX\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1245 g10/mainproc.c:1253
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "FELAKTIG signatur fr�n \""
-#: g10/mainproc.c:1246 g10/mainproc.c:1254
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Korrekt signatur fr�n \""
-#: g10/mainproc.c:1269
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " �ven k�nd som \""
-#: g10/mainproc.c:1319
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Kan inte verifiera signaturen: %s\n"
-#: g10/mainproc.c:1376 g10/mainproc.c:1392 g10/mainproc.c:1454
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
#, fuzzy
msgid "not a detached signature\n"
msgstr "skapa en signatur i en separat fil"
-#: g10/mainproc.c:1403
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "frist�ende signatur av klassen 0x%02x\n"
-#: g10/mainproc.c:1458
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "signatur av den gamla (PGP 2.x) typen\n"
-#: g10/mainproc.c:1463
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "felaktigt rotpaket hittades i proc_tree()\n"
@@ -2836,24 +2842,24 @@ msgstr "Repetera l�senordsfrasen: "
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "data sparades inte, anv�nd flaggan \"--output\" f�r att spara den\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "L�skopplad signatur.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "Ange namnet p� datafilen: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "l�ser fr�n standard in ...\n"
-#: g10/plaintext.c:383
+#: g10/plaintext.c:391
#, fuzzy
msgid "no signed data\n"
msgstr "kan inte �ppna signerad data \"%s\"\n"
-#: g10/plaintext.c:391
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "kan inte �ppna signerad data \"%s\"\n"
@@ -3027,7 +3033,7 @@ msgstr "%s: ingen �tkomst: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: katalogen finns inte!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1371 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: kan inte skapa: %s\n"
@@ -3517,32 +3523,32 @@ msgstr "%s: ok�nt suffix\n"
msgid "Enter new filename"
msgstr "Ange nytt filnamn"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "skriver till standard ut\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "antar att signera data finns i filen \"%s\"\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: ny inst�llningsfil skapad\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: kan inte skapa katalog: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: katalog skapad\n"
# GnuPG borde v�l ers�ttas med %s?
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr "du m�ste starta om GnuPG, s� att den nya inst�llningsfilen kan l�sas\n"
diff --git a/po/tr.po b/po/tr.po
index eb19c24d3..02b4d7738 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.0.4\n"
-"POT-Creation-Date: 2000-10-16 19:22+0200\n"
+"POT-Creation-Date: 2001-04-06 10:29+0200\n"
"PO-Revision-Date: 2000-11-01 05:20+300\n"
"Last-Translator: Nilg�n Belma Bug�ner <[email protected]>\n"
"Language-Team: Turkish <[email protected]>\n"
@@ -17,11 +17,11 @@ msgstr ""
msgid "Warning: using insecure memory!\n"
msgstr "Uyar�: kullan�lan bellek g�venli de�il!\n"
-#: util/secmem.c:295
+#: util/secmem.c:299
msgid "operation is not possible without initialized secure memory\n"
msgstr "g�venli bellek haz�rlanmadan i�lem yapmak m�mk�n de�il\n"
-#: util/secmem.c:296
+#: util/secmem.c:300
msgid "(you may have used the wrong program for this task)\n"
msgstr "(bu g�rev i�in yanl�� program kullanm�� olabilirsiniz)\n"
@@ -41,7 +41,7 @@ msgstr "hay�r"
msgid "nN"
msgstr "yY"
-#: g10/keyedit.c:580 util/miscutil.c:308
+#: g10/keyedit.c:581 util/miscutil.c:308
msgid "quit"
msgstr "��k��"
@@ -245,6 +245,17 @@ msgstr "�ifrelenemedi"
msgid "not processed"
msgstr "i�lenemedi"
+#. the key cannot be used for a specific usage
+#: util/errors.c:105
+#, fuzzy
+msgid "unusable public key"
+msgstr "genel anahtar hatal�"
+
+#: util/errors.c:106
+#, fuzzy
+msgid "unusable secret key"
+msgstr "gizli anahtar hatal�"
+
#: util/logger.c:224
#, c-format
msgid "... this is a bug (%s:%d:%s)\n"
@@ -255,63 +266,63 @@ msgstr "... bu bir yaz�l�m hatas� (%s:%d:%s)\n"
msgid "you found a bug ... (%s:%d)\n"
msgstr "bir yaz�l�m hatas� buldunuz ... (%s:%d)\n"
-#: cipher/random.c:311 g10/import.c:128 g10/keygen.c:1256
+#: cipher/random.c:320 g10/import.c:129 g10/keygen.c:1265
#, c-format
msgid "can't open `%s': %s\n"
msgstr "`%s' a��lam�yor: %s\n"
-#: cipher/random.c:315
+#: cipher/random.c:324
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "`%s' durumlanam�yor: %s\n"
-#: cipher/random.c:320
+#: cipher/random.c:329
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "`%s' d�zenli bir dosya de�il - g�r�lmedi\n"
-#: cipher/random.c:325
+#: cipher/random.c:334
msgid "note: random_seed file is empty\n"
msgstr "not: \"random_seed\" dosyas� bo�\n"
-#: cipher/random.c:331
+#: cipher/random.c:340
msgid "warning: invalid size of random_seed file - not used\n"
msgstr "uyar�: \"random_seed\" dosyas�n�n boyu hatal� - kullan�lmad�\n"
-#: cipher/random.c:339
+#: cipher/random.c:348
#, c-format
msgid "can't read `%s': %s\n"
msgstr "\"%s\" okunamyor: %s\n"
-#: cipher/random.c:377
+#: cipher/random.c:386
msgid "note: random_seed file not updated\n"
msgstr "not: \"random_seed\" dosyas� g�ncel de�il\n"
-#: cipher/random.c:397
+#: cipher/random.c:406
#, c-format
msgid "can't create `%s': %s\n"
msgstr "\"%s\" olu�turulam�yor: %s\n"
-#: cipher/random.c:404
+#: cipher/random.c:413
#, c-format
msgid "can't write `%s': %s\n"
msgstr "\"%s\" yaz�lam�yor: %s\n"
-#: cipher/random.c:407
+#: cipher/random.c:416
#, c-format
msgid "can't close `%s': %s\n"
msgstr "\"%s\" kapat�lam�yor: %s\n"
-#: cipher/random.c:418
+#: cipher/random.c:427
#, c-format
msgid "too many random bits requested; the limit is %d\n"
msgstr "�ok fazla rasgele bit istendi; s�n�r: %d\n"
-#: cipher/random.c:650
+#: cipher/random.c:659
msgid "WARNING: using insecure random number generator!!\n"
msgstr "UYARI: kullan�lan rasgele say� �reteci g�venli de�il!!\n"
-#: cipher/random.c:651
+#: cipher/random.c:660
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
@@ -337,7 +348,7 @@ msgstr ""
"daha fazla ganimet toplayabilmesi i�in i�letim sistemine\n"
"bir �ans! verin. (%d bayt daha gerekiyor)\n"
-#: g10/g10.c:206
+#: g10/g10.c:216
msgid ""
"@Commands:\n"
" "
@@ -345,139 +356,139 @@ msgstr ""
"@Komutlar:\n"
" "
-#: g10/g10.c:208
+#: g10/g10.c:218
msgid "|[file]|make a signature"
msgstr "|[dosya]|bir imza yapar"
-#: g10/g10.c:209
+#: g10/g10.c:219
msgid "|[file]|make a clear text signature"
msgstr "|[dosya]|a��k�a okunabilen bir imza yapar"
-#: g10/g10.c:210
+#: g10/g10.c:220
msgid "make a detached signature"
msgstr "ba��ms�z bir imza yapar"
-#: g10/g10.c:211
+#: g10/g10.c:221
msgid "encrypt data"
msgstr "veriyi �ifreler"
-#: g10/g10.c:212
+#: g10/g10.c:222
msgid "encryption only with symmetric cipher"
msgstr "sadece simetrik �ifre ile �ifreler"
-#: g10/g10.c:213
+#: g10/g10.c:223
msgid "store only"
msgstr "sadece saklar"
-#: g10/g10.c:214
+#: g10/g10.c:224
msgid "decrypt data (default)"
msgstr "veri �ifresini a�ar (�ntan�ml�)"
-#: g10/g10.c:215
+#: g10/g10.c:225
msgid "verify a signature"
msgstr "bir imzay� do�rular"
-#: g10/g10.c:217
+#: g10/g10.c:227
msgid "list keys"
msgstr "anahtarlar� listeler"
-#: g10/g10.c:219
+#: g10/g10.c:229
msgid "list keys and signatures"
msgstr "anahtarlar� ve imzalar� listeler"
-#: g10/g10.c:220
+#: g10/g10.c:230
msgid "check key signatures"
msgstr "anahtar imzalar�n� kontrol eder"
-#: g10/g10.c:221
+#: g10/g10.c:231
msgid "list keys and fingerprints"
msgstr "anahtarlar� ve parmak izlerini listeler"
-#: g10/g10.c:222
+#: g10/g10.c:232
msgid "list secret keys"
msgstr "gizli anahtarlar� listeler"
-#: g10/g10.c:223
+#: g10/g10.c:233
msgid "generate a new key pair"
msgstr "yeni bir anahtar �ifti �retir"
-#: g10/g10.c:224
+#: g10/g10.c:234
msgid "remove key from the public keyring"
msgstr "genel anahtar demetinden anahtar� kald�r�r"
-#: g10/g10.c:226
+#: g10/g10.c:236
msgid "remove key from the secret keyring"
msgstr "gizli anahtar demetinden anahtar� kald�r�r"
-#: g10/g10.c:227
+#: g10/g10.c:237
msgid "sign a key"
msgstr "bir anahtar� imzalar"
-#: g10/g10.c:228
+#: g10/g10.c:238
msgid "sign a key locally"
msgstr "bir anahtar� yerel olarak imzalar"
-#: g10/g10.c:229
+#: g10/g10.c:239
msgid "sign or edit a key"
msgstr "bir anahtar� d�zenler ve imzalar"
-#: g10/g10.c:230
+#: g10/g10.c:240
msgid "generate a revocation certificate"
msgstr "bir y�r�rl�kten kald�rma sertifikas� �retir"
-#: g10/g10.c:231
+#: g10/g10.c:241
msgid "export keys"
msgstr "anahtarlar� g�nderir"
-#: g10/g10.c:232
+#: g10/g10.c:242
msgid "export keys to a key server"
msgstr "anahtarlar� bir anahtar sunucusuna g�nderir"
-#: g10/g10.c:233
+#: g10/g10.c:243
msgid "import keys from a key server"
msgstr "anahtarlar� bir anahtar sunucusundan indirir"
-#: g10/g10.c:237
+#: g10/g10.c:247
msgid "import/merge keys"
msgstr "anahtarlar� indirir/kat��t�r�r"
-#: g10/g10.c:239
+#: g10/g10.c:249
msgid "list only the sequence of packets"
msgstr "sadece paketlerin silsilesini listeler"
-#: g10/g10.c:241
+#: g10/g10.c:251
msgid "export the ownertrust values"
msgstr "sahibining�vencesi de�erlerini g�nderir"
-#: g10/g10.c:243
+#: g10/g10.c:253
msgid "import ownertrust values"
msgstr "sahibining�vencesi de�erlerini indirir"
-#: g10/g10.c:245
+#: g10/g10.c:255
msgid "update the trust database"
msgstr "g�vence veritaban�n� g�nceller"
-#: g10/g10.c:247
+#: g10/g10.c:257
msgid "|[NAMES]|check the trust database"
msgstr "|[�S�MLER]|g�vence veritaban�n� kontrol eder"
-#: g10/g10.c:248
+#: g10/g10.c:258
msgid "fix a corrupted trust database"
msgstr "bozulan g�vence veritaban�n� onar�r"
-#: g10/g10.c:249
+#: g10/g10.c:259
msgid "De-Armor a file or stdin"
msgstr "Bir dosya veya standard girdinin z�rh�n� kald�r�r"
-#: g10/g10.c:251
+#: g10/g10.c:261
msgid "En-Armor a file or stdin"
msgstr "Bir dosya veya standard girdiyi z�rhlar"
-#: g10/g10.c:253
+#: g10/g10.c:263
msgid "|algo [files]|print message digests"
msgstr "|algo [dosyalar]|ileti �z�mlemelerini g�sterir"
-#: g10/g10.c:257
+#: g10/g10.c:267
msgid ""
"@\n"
"Options:\n"
@@ -487,154 +498,158 @@ msgstr ""
"Se�enekler:\n"
" "
-#: g10/g10.c:259
+#: g10/g10.c:269
msgid "create ascii armored output"
msgstr "ascii z�rhl� ��kt� olu�turur"
-#: g10/g10.c:261
+#: g10/g10.c:271
msgid "|NAME|encrypt for NAME"
msgstr "|�S�M|�S�M i�in �ifreleme yapar"
-#: g10/g10.c:264
+#: g10/g10.c:274
msgid "|NAME|use NAME as default recipient"
msgstr "|�S�M|�ntan�ml� al�c� olarak �S�M kullan�l�r"
-#: g10/g10.c:266
+#: g10/g10.c:276
msgid "use the default key as default recipient"
msgstr "�ntan�ml� al�c� olarak �ntan�ml� anahtar kullan�l�r"
-#: g10/g10.c:270
+#: g10/g10.c:280
msgid "use this user-id to sign or decrypt"
msgstr "imzalamak ya da �ifre ��zmek i�in bu �zg�n dizi kullan�l�r"
-#: g10/g10.c:271
+#: g10/g10.c:281
msgid "|N|set compress level N (0 disables)"
msgstr "|N|s�k��t�rma seviyesi N olarak ayarlan�r (0 ise s�k��t�rma yap�lmaz)"
-#: g10/g10.c:273
+#: g10/g10.c:283
msgid "use canonical text mode"
msgstr "me�ru metin kipini kullan�r"
-#: g10/g10.c:274
+#: g10/g10.c:284
msgid "use as output file"
msgstr "��kt� dosyas� olarak kullan�l�r"
-#: g10/g10.c:275
+#: g10/g10.c:285
msgid "verbose"
msgstr "�ok detayl�"
-#: g10/g10.c:276
+#: g10/g10.c:286
msgid "be somewhat more quiet"
msgstr "daha az detayl�"
-#: g10/g10.c:277
+#: g10/g10.c:287
msgid "don't use the terminal at all"
msgstr "her�eye terminal kullanma"
-#: g10/g10.c:278
+#: g10/g10.c:288
msgid "force v3 signatures"
msgstr "v3 imzalar�na zorlar"
-#: g10/g10.c:279
+#: g10/g10.c:289
msgid "always use a MDC for encryption"
msgstr "�ifreleme i�in daima bir MDC kullan�l�r"
-#: g10/g10.c:280
+#: g10/g10.c:290
msgid "do not make any changes"
msgstr "hi�bir de�i�iklik yapmaz"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
-#: g10/g10.c:282
+#: g10/g10.c:292
+msgid "use the gpg-agent"
+msgstr ""
+
+#: g10/g10.c:293
msgid "batch mode: never ask"
msgstr "�nceden belirlenmi� i�lemler kipi: hi� sormaz"
-#: g10/g10.c:283
+#: g10/g10.c:294
msgid "assume yes on most questions"
msgstr "sorular�n �o�unda cevap evet farzedilir"
-#: g10/g10.c:284
+#: g10/g10.c:295
msgid "assume no on most questions"
msgstr "sorular�n �o�unda cevap hay�r farzedilir"
-#: g10/g10.c:285
+#: g10/g10.c:296
msgid "add this keyring to the list of keyrings"
msgstr "bu anahtar demetini anahtar demetleri listesine ekler"
-#: g10/g10.c:286
+#: g10/g10.c:297
msgid "add this secret keyring to the list"
msgstr "bu gizli anahtar demetini listeye ekler"
-#: g10/g10.c:287
+#: g10/g10.c:298
msgid "|NAME|use NAME as default secret key"
msgstr "|�S�M|�ntan�ml� gizli anahtar olarak �S�M kullan�l�r"
-#: g10/g10.c:288
+#: g10/g10.c:299
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|SUNUCU|anahtarlar� aramak i�in bu anahtar sunucusu kullan�l�r"
-#: g10/g10.c:289
+#: g10/g10.c:300
msgid "|NAME|set terminal charset to NAME"
msgstr "|�S�M|terminal karakter setini �S�M olarak ayarlar"
-#: g10/g10.c:290
+#: g10/g10.c:301
msgid "read options from file"
msgstr "se�enekleri dosyadan okur"
-#: g10/g10.c:294
+#: g10/g10.c:305
msgid "|FD|write status info to this FD"
msgstr "|FD|durum bilgisini bu FD'ye yazar"
-#: g10/g10.c:299
+#: g10/g10.c:310
msgid "|KEYID|ulimately trust this key"
msgstr "|ANAHTAR-K�ML�K|bu anahtar son derece g�vence alt�nda"
-#: g10/g10.c:300
+#: g10/g10.c:311
msgid "|FILE|load extension module FILE"
msgstr "|DOSYA|geni�letme mod�l� olarak DOSYA y�klenir"
-#: g10/g10.c:301
+#: g10/g10.c:312
msgid "emulate the mode described in RFC1991"
msgstr "RFC1991 de a��klanan kipi uygular"
-#: g10/g10.c:302
+#: g10/g10.c:313
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr "t�m paket, �ifre ve �z�mleme se�eneklerini OpenPGP tarz�nda ayarlar"
-#: g10/g10.c:303
+#: g10/g10.c:314
msgid "|N|use passphrase mode N"
msgstr "|N|anahtar parolas� kipi olarak N kullan�l�r"
-#: g10/g10.c:305
+#: g10/g10.c:316
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr ""
"|�S�M|anahtar parolalar� i�in ileti �z�mleme algoritmas� olarak �S�M "
"kullan�l�r"
-#: g10/g10.c:307
+#: g10/g10.c:318
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr "|�S�M|anahtar parolalar� i�in �ifre algoritmas� olarak �S�M kullan�l�r"
-#: g10/g10.c:308
+#: g10/g10.c:319
msgid "|NAME|use cipher algorithm NAME"
msgstr "|�S�M|�ifre algoritmas� olarak �S�M kullan�l�r"
-#: g10/g10.c:309
+#: g10/g10.c:320
msgid "|NAME|use message digest algorithm NAME"
msgstr "|�S�M|�z�mleme algoritmas� olarak �S�M kullan�l�r"
-#: g10/g10.c:310
+#: g10/g10.c:321
msgid "|N|use compress algorithm N"
msgstr "|N|s�k��t�rma algoritmas� olarak N kullan�l�r"
-#: g10/g10.c:311
+#: g10/g10.c:322
msgid "throw keyid field of encrypted packets"
msgstr "�ifreli paketlerin anahtar-kimlik alanlar�n� kurar"
-#: g10/g10.c:312
+#: g10/g10.c:323
msgid "|NAME=VALUE|use this notation data"
msgstr "|�S�M=DE�ER|veri bu nitelemeyle kullan�l�r"
-#: g10/g10.c:315
+#: g10/g10.c:326
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
@@ -642,7 +657,7 @@ msgstr ""
"@\n"
"(T�m komut ve se�eneklerin komple listesi i�in man sayfalar�na bak�n)\n"
-#: g10/g10.c:318
+#: g10/g10.c:329
msgid ""
"@\n"
"Examples:\n"
@@ -662,15 +677,15 @@ msgstr ""
" --list-keys [isimler] anahtarlar� listeler\n"
" --fingerprint [isimler] parmak izlerini g�sterir\n"
-#: g10/g10.c:418
+#: g10/g10.c:438
msgid "Please report bugs to <[email protected]>.\n"
msgstr "Yaz�l�m hatalar�n� l�tfen <[email protected]> adresine bildirin.\n"
-#: g10/g10.c:422
+#: g10/g10.c:442
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Kullan�m�: gpg [se�enekler] [dosyalar] (yard�m i�in -h)"
-#: g10/g10.c:425
+#: g10/g10.c:445
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
@@ -680,7 +695,7 @@ msgstr ""
"imzalama, kontrol, �ifreleme veya ��zme\n"
"�ntan�ml� i�lem girilen veriye ba��ml�d�r\n"
-#: g10/g10.c:432
+#: g10/g10.c:452
msgid ""
"\n"
"Supported algorithms:\n"
@@ -688,186 +703,191 @@ msgstr ""
"\n"
"Desteklenen algoritmalar:\n"
-#: g10/g10.c:511
+#: g10/g10.c:531
msgid "usage: gpg [options] "
msgstr "kullan�m�: gpg [se�enekler] "
-#: g10/g10.c:564
+#: g10/g10.c:584
msgid "conflicting commands\n"
msgstr "�eli�en komutlar\n"
-#: g10/g10.c:704
+#: g10/g10.c:734
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOT: \"%s\" �ntan�ml� se�enek dosyas� yok\n"
-#: g10/g10.c:708
+#: g10/g10.c:738
#, c-format
msgid "option file `%s': %s\n"
msgstr "se�enek dosyas� \"%s\": %s\n"
-#: g10/g10.c:715
+#: g10/g10.c:745
#, c-format
msgid "reading options from `%s'\n"
msgstr "\"%s\"den se�enekler okunuyor\n"
-#: g10/g10.c:905
+#: g10/g10.c:950
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s ge�erli bir karakter seti de�il\n"
-#: g10/g10.c:970
+#: g10/g10.c:1024
msgid "WARNING: program may create a core file!\n"
msgstr "UYARI: program bir \"core\" dosyas� yaratabilir!\n"
-#: g10/g10.c:974 g10/g10.c:983
+#: g10/g10.c:1028 g10/g10.c:1037
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "NOT: %s normal kullan�m i�in de�il!\n"
-#: g10/g10.c:976
+#: g10/g10.c:1030
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s ile %s birlikte kullan�lmaz!\n"
-#: g10/g10.c:979
+#: g10/g10.c:1033
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s, %s ile etkisiz olur!\n"
-#: g10/g10.c:998 g10/g10.c:1010
+#: g10/g10.c:1053 g10/g10.c:1065
msgid "selected cipher algorithm is invalid\n"
msgstr "se�ilen cipher algoritmas� ge�ersiz\n"
-#: g10/g10.c:1004 g10/g10.c:1016
+#: g10/g10.c:1059 g10/g10.c:1071
msgid "selected digest algorithm is invalid\n"
msgstr "se�ilen �z�mleme algoritmas� ge�ersiz\n"
-#: g10/g10.c:1020
+#: g10/g10.c:1075
msgid "the given policy URL is invalid\n"
msgstr "verilmi� g�venlik URL(=web adresi) ge�ersiz\n"
-#: g10/g10.c:1023
+#: g10/g10.c:1078
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "s�k��t�rma algoritmas� %d..%d aral���nda olmal�\n"
-#: g10/g10.c:1025
+#: g10/g10.c:1080
msgid "completes-needed must be greater than 0\n"
msgstr "\"completes-needed\" 0 dan b�y�k olmal�\n"
-#: g10/g10.c:1027
+#: g10/g10.c:1082
msgid "marginals-needed must be greater than 1\n"
msgstr "\"marginals-needed\" 1 den b�y�k olmal�\n"
-#: g10/g10.c:1029
+#: g10/g10.c:1084
msgid "max-cert-depth must be in range 1 to 255\n"
msgstr "\"max-cert-depth\" 1 ile 255 aras�nda olmal�\n"
-#: g10/g10.c:1032
+#: g10/g10.c:1087
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "NOT: basit S2K kipi (0) kesinlikle cesaret k�r�c�\n"
-#: g10/g10.c:1036
+#: g10/g10.c:1091
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "S2K kipi ge�ersiz; 0, 1 veya 3 olmal�\n"
-#: g10/g10.c:1121
+#: g10/g10.c:1176
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "\"TrustDB\" g�vence veritaban� ba�lang�� a�amas�nda ba�ar�s�z: %s\n"
-#: g10/g10.c:1127
+#: g10/g10.c:1182
msgid "--store [filename]"
msgstr "--store [dosyaismi]"
-#: g10/g10.c:1134
+#: g10/g10.c:1189
msgid "--symmetric [filename]"
msgstr "--symmetric [dosyaismi]"
-#: g10/g10.c:1142
+#: g10/g10.c:1197
msgid "--encrypt [filename]"
msgstr "--encrypt [dosyaismi]"
-#: g10/g10.c:1155
+#: g10/g10.c:1210
msgid "--sign [filename]"
msgstr "--sign [dosyaismi]"
-#: g10/g10.c:1168
+#: g10/g10.c:1223
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [dosyaismi]"
-#: g10/g10.c:1182
+#: g10/g10.c:1237
msgid "--clearsign [filename]"
msgstr "--clearsign [dosyaismi]"
-#: g10/g10.c:1199
+#: g10/g10.c:1254
msgid "--decrypt [filename]"
msgstr "--decrypt [dosyaismi]"
-#: g10/g10.c:1207
+#: g10/g10.c:1262
msgid "--sign-key user-id"
msgstr "--sign-key �z-dizi"
-#: g10/g10.c:1215
+#: g10/g10.c:1270
msgid "--lsign-key user-id"
msgstr "--lsign-key �z-dizi"
-#: g10/g10.c:1223
+#: g10/g10.c:1278
msgid "--edit-key user-id [commands]"
msgstr "--edit-key �z-dizi [komutlar]"
-#: g10/g10.c:1239
+#: g10/g10.c:1294
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key �z-dizi"
-#: g10/g10.c:1242
+#: g10/g10.c:1297
msgid "--delete-key user-id"
msgstr "--delete-key �z-dizi"
-#: g10/encode.c:265 g10/g10.c:1279 g10/sign.c:393
+#: g10/g10.c:1305
+#, fuzzy
+msgid "--delete-secret-and-public-key user-id"
+msgstr "--delete-secret-key �z-dizi"
+
+#: g10/encode.c:268 g10/g10.c:1342 g10/sign.c:410
#, c-format
msgid "can't open %s: %s\n"
msgstr "%s a��lamad�: %s\n"
-#: g10/g10.c:1294
+#: g10/g10.c:1357
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [�z-dizi] [anahtardemeti]"
-#: g10/g10.c:1360
+#: g10/g10.c:1423
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "z�rh�n kald�r�lmas� ba�ar�s�z: %s\n"
-#: g10/g10.c:1368
+#: g10/g10.c:1431
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "z�rhlama ba�ar�s�z: %s\n"
-#: g10/g10.c:1439
+#: g10/g10.c:1502
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "\"s\" hash algoritmas� ge�ersiz\n"
-#: g10/g10.c:1520
+#: g10/g10.c:1589
msgid "[filename]"
msgstr "[dosyaismi]"
-#: g10/g10.c:1524
+#: g10/g10.c:1593
msgid "Go ahead and type your message ...\n"
msgstr "Ba�a d�n�p iletinizi yaz�n ...\n"
-#: g10/decrypt.c:59 g10/g10.c:1527 g10/verify.c:68 g10/verify.c:113
+#: g10/decrypt.c:59 g10/g10.c:1596 g10/verify.c:94 g10/verify.c:139
#, c-format
msgid "can't open `%s'\n"
msgstr "\"s\" a��lamad�\n"
-#: g10/g10.c:1737
+#: g10/g10.c:1805
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr "bir niteleme isminin ilk karakteri bir harf ya da alt�izgi olmal�\n"
-#: g10/g10.c:1743
+#: g10/g10.c:1811
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
@@ -875,89 +895,89 @@ msgstr ""
"bir niteleme ismi sadece harf, rakam, nokta, ve alt�izgi karakterleri "
"i�erebilir ve bir \"=\" i�areti ile biter\n"
-#: g10/g10.c:1749
+#: g10/g10.c:1817
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
"bir niteleme isminde noktalar di�er karakterler taraf�ndan ku�at�lm�� "
"olmal�d�r\n"
-#: g10/g10.c:1757
+#: g10/g10.c:1825
msgid "a notation value must not use any control characters\n"
msgstr "bir niteleme de�erinde kontrol karakterleri kullan�lamaz\n"
-#: g10/armor.c:302
+#: g10/armor.c:306
#, c-format
msgid "armor: %s\n"
msgstr "z�rh: %s\n"
-#: g10/armor.c:331
+#: g10/armor.c:335
msgid "invalid armor header: "
msgstr "z�rh ba�l��� ge�ersiz: "
-#: g10/armor.c:338
+#: g10/armor.c:342
msgid "armor header: "
msgstr "z�rh ba�l���: "
-#: g10/armor.c:349
+#: g10/armor.c:353
msgid "invalid clearsig header\n"
msgstr "a��k�a okunabilen imza ba�l��� ge�ersiz\n"
-#: g10/armor.c:401
+#: g10/armor.c:405
msgid "nested clear text signatures\n"
msgstr "a��k�a okunabilen imzalar dahil edildi\n"
-#: g10/armor.c:525
+#: g10/armor.c:529
msgid "invalid dash escaped line: "
msgstr "\"dash escaped\" (ara�izgisi escape'l�) sat�r ge�ersiz: "
-#: g10/armor.c:537
+#: g10/armor.c:541
msgid "unexpected armor:"
msgstr "beklenmeyen z�rh: "
-#: g10/armor.c:654
+#: g10/armor.c:667 g10/armor.c:1235
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "ge�ersiz radix64 karakteri %02x atland�\n"
-#: g10/armor.c:697
+#: g10/armor.c:710
msgid "premature eof (no CRC)\n"
msgstr "dosya sonu belirsiz (CRC yok)\n"
-#: g10/armor.c:731
+#: g10/armor.c:744
msgid "premature eof (in CRC)\n"
msgstr "dosya sonu belirsiz (CRC i�inde)\n"
-#: g10/armor.c:735
+#: g10/armor.c:748
msgid "malformed CRC\n"
msgstr "CRC bozulmu�\n"
-#: g10/armor.c:739
+#: g10/armor.c:752 g10/armor.c:1272
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "CRC hatas�; %06lx - %06lx\n"
-#: g10/armor.c:756
+#: g10/armor.c:772
msgid "premature eof (in Trailer)\n"
msgstr "dosya sonu belirsiz (kuyruk i�inde)\n"
-#: g10/armor.c:760
+#: g10/armor.c:776
msgid "error in trailer line\n"
msgstr "kuyruk sat�r�nda hata\n"
-#: g10/armor.c:906
+#: g10/armor.c:922
msgid "For info see http://www.gnupg.org"
msgstr "Bilgi i�in http://www.gnupg.org adresine bir bak�n"
-#: g10/armor.c:1027
+#: g10/armor.c:1050
msgid "no valid OpenPGP data found.\n"
msgstr "ge�erli OpenPGP verisi yok\n"
-#: g10/armor.c:1032
+#: g10/armor.c:1055
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "ge�ersiz z�rh: sat�r %d karakterden uzun\n"
-#: g10/armor.c:1036
+#: g10/armor.c:1059
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
@@ -966,7 +986,7 @@ msgstr ""
#. Translators: this shoud fit into 24 bytes to that the fingerprint
#. * data is properly aligned with the user ID
-#: g10/keyedit.c:1189 g10/pkclist.c:53
+#: g10/keyedit.c:1190 g10/pkclist.c:53
msgid " Fingerprint:"
msgstr " Parmak izi:"
@@ -1193,58 +1213,58 @@ msgstr "UYARI: Bu anahtar yeterince g�venceli imzalarla sertifikalanmam��!\n"
msgid " It is not certain that the signature belongs to the owner.\n"
msgstr " Bu imzan�n sahibine ait oldu�u kesin de�il.\n"
-#: g10/pkclist.c:819 g10/pkclist.c:841 g10/pkclist.c:967 g10/pkclist.c:1012
+#: g10/pkclist.c:819 g10/pkclist.c:840 g10/pkclist.c:966 g10/pkclist.c:1011
#, c-format
msgid "%s: skipped: %s\n"
msgstr "%s: atland�: %s\n"
-#: g10/pkclist.c:827 g10/pkclist.c:994
+#: g10/pkclist.c:826 g10/pkclist.c:993
#, c-format
msgid "%s: skipped: public key already present\n"
msgstr "%s: atland�: genel anahtar zaten mevcut\n"
-#: g10/pkclist.c:854
+#: g10/pkclist.c:853
msgid ""
"You did not specify a user ID. (you may use \"-r\")\n"
"\n"
msgstr "Bir �zg�n dizi belirtmediniz. (\"-r\" kullanabilirsiniz)\n"
-#: g10/pkclist.c:864
+#: g10/pkclist.c:863
msgid "Enter the user ID: "
msgstr "�zg�n diziyi girin:"
-#: g10/pkclist.c:876
+#: g10/pkclist.c:875
msgid "No such user ID.\n"
msgstr "B�yle bir �zg�n dizi yok.\n"
-#: g10/pkclist.c:881
+#: g10/pkclist.c:880
msgid "skipped: public key already set as default recipient\n"
msgstr "atland�: genel anahtar zaten �ntan�ml� al�c� olarak ayarlanm��\n"
-#: g10/pkclist.c:904
+#: g10/pkclist.c:903
msgid "Public key is disabled.\n"
msgstr "Genel anahtar iptal edildi.\n"
-#: g10/pkclist.c:911
+#: g10/pkclist.c:910
msgid "skipped: public key already set with --encrypt-to\n"
msgstr "atland�: genel anahtar --encrypt-to ile zaten ayarlanm��\n"
-#: g10/pkclist.c:942
+#: g10/pkclist.c:941
#, c-format
msgid "unknown default recipient `%s'\n"
msgstr "�ntan�ml� al�c� \"%s\" bilinmiyor\n"
-#: g10/pkclist.c:975
+#: g10/pkclist.c:974
#, c-format
msgid "%s: error checking key: %s\n"
msgstr "%s: anahtar kontrol edilirken hata: %s\n"
-#: g10/pkclist.c:980
+#: g10/pkclist.c:979
#, c-format
msgid "%s: skipped: public key is disabled\n"
msgstr "%s: atland�: genel anahtar iptal edildi\n"
-#: g10/pkclist.c:1018
+#: g10/pkclist.c:1017
msgid "no valid addressees\n"
msgstr "ge�erli adresler yok\n"
@@ -1252,62 +1272,66 @@ msgstr "ge�erli adresler yok\n"
msgid "writing self signature\n"
msgstr "�z-imza yaz�l�yor\n"
-#: g10/keygen.c:214
+#: g10/keygen.c:217
msgid "writing key binding signature\n"
msgstr "anahtar� garantileyen imzay� yaz�yor\n"
-#: g10/keygen.c:262 g10/keygen.c:346 g10/keygen.c:436
+#: g10/keygen.c:269 g10/keygen.c:353 g10/keygen.c:445
#, c-format
msgid "keysize invalid; using %u bits\n"
msgstr "anahtar uzunlu�u ge�ersiz; %u bit kullan�l�yor\n"
-#: g10/keygen.c:267 g10/keygen.c:351 g10/keygen.c:441
+#: g10/keygen.c:274 g10/keygen.c:358 g10/keygen.c:450
#, c-format
msgid "keysize rounded up to %u bits\n"
msgstr "anahtar uzunlu�u %u bite yuvarland�\n"
-#: g10/keygen.c:540
+#: g10/keygen.c:549
msgid "Please select what kind of key you want:\n"
msgstr "L�tfen istedi�iniz anahtar� se�iniz:\n"
-#: g10/keygen.c:542
+#: g10/keygen.c:551
#, c-format
msgid " (%d) DSA and ElGamal (default)\n"
msgstr " (%d) DSA ve ElGamal (�ntan�ml�)\n"
-#: g10/keygen.c:543
+#: g10/keygen.c:552
#, c-format
msgid " (%d) DSA (sign only)\n"
msgstr " (%d) DSA (yaln�z imzalamak i�in)\n"
-#: g10/keygen.c:545
+#: g10/keygen.c:554
#, c-format
msgid " (%d) ElGamal (encrypt only)\n"
msgstr " (%d) ElGamal (Yan�z �ifrelemek i�in)\n"
-#: g10/keygen.c:546
+#: g10/keygen.c:555
#, c-format
msgid " (%d) ElGamal (sign and encrypt)\n"
msgstr " (%d) ElGamal (imzalamak ve �ifrelemek i�in)\n"
-#: g10/keygen.c:548
+#: g10/keygen.c:557
#, c-format
msgid " (%d) RSA (sign and encrypt)\n"
msgstr " (%d) RSA (imzalamak ve �ifrelemek i�in)\n"
-#: g10/keygen.c:552
+#: g10/keygen.c:561
msgid "Your selection? "
msgstr "Se�iminiz? "
-#: g10/keygen.c:563 g10/keygen.c:571
+#: g10/keygen.c:572
msgid "Do you really want to create a sign and encrypt key? "
msgstr "Bir imza ve �ifreleme anahtar� yaratmay� ger�ekten istiyor musunuz? "
-#: g10/keygen.c:585
+#: g10/keygen.c:580
+msgid "The use of this algorithm is deprecated - create anyway? "
+msgstr ""
+
+#: g10/keygen.c:594
msgid "Invalid selection.\n"
msgstr "Se�im ge�ersiz.\n"
-#: g10/keygen.c:597
+#: g10/keygen.c:606
#, c-format
msgid ""
"About to generate a new %s keypair.\n"
@@ -1320,19 +1344,19 @@ msgstr ""
" �ntan�ml� anahtar uzunlu�u: 1024 bit\n"
" �nerilebilecek en b�y�k anahtar uzunlu�u: 2048 bit\n"
-#: g10/keygen.c:604
+#: g10/keygen.c:613
msgid "What keysize do you want? (1024) "
msgstr "�stedi�iniz anahtar uzunlu�u nedir? (1024) "
-#: g10/keygen.c:609
+#: g10/keygen.c:618
msgid "DSA only allows keysizes from 512 to 1024\n"
msgstr "DSA anahtar�n�n uzunlu�u 512 ile 1024 bit aras�nda olabilir\n"
-#: g10/keygen.c:611
+#: g10/keygen.c:620
msgid "keysize too small; 768 is smallest value allowed.\n"
msgstr "anahtar uzunlu�u �ok k���k; en k���k anahtar uzunlu�u 768 bit'tir.\n"
-#: g10/keygen.c:613
+#: g10/keygen.c:622
msgid "keysize too small; 1024 is smallest value allowed for RSA.\n"
msgstr ""
"anahtar uzunlu�u �ok k���k; RSA anahtar� i�in en k���k uzunluk: 1024 bit\n"
@@ -1345,12 +1369,12 @@ msgstr ""
#. * So, before you complain about this limitation, I suggest that
#. * you start a discussion with Marvin about this theme and then
#. * do whatever you want.
-#: g10/keygen.c:624
+#: g10/keygen.c:633
#, c-format
msgid "keysize too large; %d is largest value allowed.\n"
msgstr "anahtar uzunlu�u �ok b�y�k; izin verilen en b�y�k de�er: %d bit\n"
-#: g10/keygen.c:629
+#: g10/keygen.c:638
msgid ""
"Keysizes larger than 2048 are not suggested because\n"
"computations take REALLY long!\n"
@@ -1358,11 +1382,11 @@ msgstr ""
"Hesaplama EPEYCE UZUN zaman alaca��ndan anahtar uzunluklar�nda 2048 bitten "
"fazlas� tavsiye edilmez.\n"
-#: g10/keygen.c:632
+#: g10/keygen.c:641
msgid "Are you sure that you want this keysize? "
msgstr "Bu anahtar uzunlu�unu istedi�inizden emin misiniz? "
-#: g10/keygen.c:633
+#: g10/keygen.c:642
msgid ""
"Okay, but keep in mind that your monitor and keyboard radiation is also very "
"vulnerable to attacks!\n"
@@ -1370,21 +1394,21 @@ msgstr ""
"Pekala, �imdi monit�r ve klavyeden uzakla��n! Anahtar �retimi s�ras�ndaki bu "
"ayg�tlardan yay�lacak radyasyon size zarar verebilir!\n"
-#: g10/keygen.c:641
+#: g10/keygen.c:650
msgid "Do you really need such a large keysize? "
msgstr "Bu kadar b�y�k anahtar uzunlu�una ger�ekten ihtiyac�n�z var m�?"
-#: g10/keygen.c:647
+#: g10/keygen.c:656
#, c-format
msgid "Requested keysize is %u bits\n"
msgstr "�stenen anahtar uzunlu�u: %u bit\n"
-#: g10/keygen.c:650 g10/keygen.c:654
+#: g10/keygen.c:659 g10/keygen.c:663
#, c-format
msgid "rounded up to %u bits\n"
msgstr "%u bite yuvarland�\n"
-#: g10/keygen.c:702
+#: g10/keygen.c:711
msgid ""
"Please specify how long the key should be valid.\n"
" 0 = key does not expire\n"
@@ -1400,25 +1424,25 @@ msgstr ""
" <n>m = anahtar n ay ge�erli\n"
" <n>y = anahtar n y�l ge�erli\n"
-#: g10/keygen.c:717
+#: g10/keygen.c:726
msgid "Key is valid for? (0) "
msgstr "Anahtar ne kadar ge�erli olacak? (0) "
-#: g10/keygen.c:722
+#: g10/keygen.c:731
msgid "invalid value\n"
msgstr "de�er hatal�\n"
-#: g10/keygen.c:727
+#: g10/keygen.c:736
msgid "Key does not expire at all\n"
msgstr "Anahtar hayat�n�z boyunca ge�erli\n"
#. print the date when the key expires
-#: g10/keygen.c:733
+#: g10/keygen.c:742
#, c-format
msgid "Key expires at %s\n"
msgstr "Anahtar�n son kullanma tarihi: %s\n"
-#: g10/keygen.c:736
+#: g10/keygen.c:745
msgid ""
"Your system can't display dates beyond 2038.\n"
"However, it will be correctly handled up to 2106.\n"
@@ -1426,11 +1450,11 @@ msgstr ""
"Sisteminiz 2038 y�l�ndan sonraki tarihleri g�steremiyor.\n"
"Ama emin olun ki 2106 y�l�na kadar elde edilebilecek.\n"
-#: g10/keygen.c:741
+#: g10/keygen.c:750
msgid "Is this correct (y/n)? "
msgstr "Bu do�ru mu? (e/h)? "
-#: g10/keygen.c:784
+#: g10/keygen.c:793
msgid ""
"\n"
"You need a User-ID to identify your key; the software constructs the user "
@@ -1446,44 +1470,44 @@ msgstr ""
" \"Fatih Sultan Mehmet (padisah) <[email protected]>\"\n"
"�eklinde olu�turur.\n"
-#: g10/keygen.c:796
+#: g10/keygen.c:805
msgid "Real name: "
msgstr "Ad�n�z ve Soyad�n�z: "
-#: g10/keygen.c:804
+#: g10/keygen.c:813
msgid "Invalid character in name\n"
msgstr "Ad ve soyad�n�zda ge�ersiz karakter var\n"
-#: g10/keygen.c:806
+#: g10/keygen.c:815
msgid "Name may not start with a digit\n"
msgstr "Ad ve soyad�n�z bir rakamla ba�lamamal�\n"
-#: g10/keygen.c:808
+#: g10/keygen.c:817
msgid "Name must be at least 5 characters long\n"
msgstr "Ad ve soyad�n�z en az 5 harfli olmal�\n"
-#: g10/keygen.c:816
+#: g10/keygen.c:825
msgid "Email address: "
msgstr "Eposta adresiniz: "
-#: g10/keygen.c:827
+#: g10/keygen.c:836
msgid "Not a valid email address\n"
msgstr "ge�erli bir Eposta adresi de�il\n"
-#: g10/keygen.c:835
+#: g10/keygen.c:844
msgid "Comment: "
msgstr "Yorum: "
-#: g10/keygen.c:841
+#: g10/keygen.c:850
msgid "Invalid character in comment\n"
msgstr "Yorum alan�nda ge�ersiz karakter\n"
-#: g10/keygen.c:864
+#: g10/keygen.c:873
#, c-format
msgid "You are using the `%s' character set.\n"
msgstr "\"%s\" karakter setini kullan�yorsunuz.\n"
-#: g10/keygen.c:870
+#: g10/keygen.c:879
#, c-format
msgid ""
"You selected this USER-ID:\n"
@@ -1494,29 +1518,29 @@ msgstr ""
" \"%s\"\n"
"\n"
-#: g10/keygen.c:874
+#: g10/keygen.c:883
msgid "Please don't put the email address into the real name or the comment\n"
msgstr ""
"L�tfen Eposta adresinizi Ad� ve Soyad� veya Yorum alan� i�ine koymay�n\n"
-#: g10/keygen.c:879
+#: g10/keygen.c:888
msgid "NnCcEeOoQq"
msgstr "AaYyEeTt��"
-#: g10/keygen.c:889
+#: g10/keygen.c:898
msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? "
msgstr "(A)d� ve Soyad�, (Y)orum, (E)posta alanlar�n� de�i�tir ya da (�)�k? "
-#: g10/keygen.c:890
+#: g10/keygen.c:899
msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? "
msgstr ""
"(A)d� ve Soyad�, (Y)orum, (E)posta alanlar�n� de�i�tir ya da (T)amam/(�)�k? "
-#: g10/keygen.c:909
+#: g10/keygen.c:918
msgid "Please correct the error first\n"
msgstr "L�tfen �nce hatay� d�zeltin\n"
-#: g10/keygen.c:947
+#: g10/keygen.c:956
msgid ""
"You need a Passphrase to protect your secret key.\n"
"\n"
@@ -1524,11 +1548,11 @@ msgstr ""
"Gizli anahtar�n�z� korumak i�in bir anahtar parolas�na gereksiniminiz var.\n"
"\n"
-#: g10/keyedit.c:468 g10/keygen.c:955
+#: g10/keyedit.c:469 g10/keygen.c:964
msgid "passphrase not correctly repeated; try again.\n"
msgstr "anahtar parolas� do�ru olarak tekrarlanmad�; tekrar deneyin.\n"
-#: g10/keygen.c:961
+#: g10/keygen.c:970
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"
@@ -1540,7 +1564,7 @@ msgstr ""
"se�ene�i ile kullanarak her zaman de�i�tirebilirsiniz.\n"
"\n"
-#: g10/keygen.c:982
+#: g10/keygen.c:991
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"
@@ -1553,29 +1577,29 @@ msgstr ""
"iyi olacakt�r; bu yeterli ganimet kazanmak i�in rasgele say� �retimine daha\n"
"fazla �ans verir.\n"
-#: g10/keygen.c:1431
+#: g10/keygen.c:1440
msgid "DSA keypair will have 1024 bits.\n"
msgstr "DSA anahtar �ifti 1024 bit olacak.\n"
-#: g10/keygen.c:1474
+#: g10/keygen.c:1483
msgid "Key generation canceled.\n"
msgstr "Anahtar �retimi durduruldu.\n"
-#: g10/keygen.c:1571
+#: g10/keygen.c:1581
#, c-format
msgid "writing public key to `%s'\n"
msgstr "genel anahtar� \"%s\"e yaz�yor\n"
-#: g10/keygen.c:1572
+#: g10/keygen.c:1582
#, c-format
msgid "writing secret key to `%s'\n"
msgstr "gizli anahtar� \"%s\"e yaz�yor\n"
-#: g10/keygen.c:1668
+#: g10/keygen.c:1679
msgid "public and secret key created and signed.\n"
msgstr "genel ve gizli anahtar �retildi ve imzaland�.\n"
-#: g10/keygen.c:1673
+#: g10/keygen.c:1684
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"
@@ -1584,29 +1608,29 @@ msgstr ""
"�ifrelemede kullanmak amac�yla ikinci bir anahtar �retmek isterseniz\n"
"\"--edit-key\" se�ene�ini kullanabilirsiniz.\n"
-#: g10/keygen.c:1690 g10/keygen.c:1791
+#: g10/keygen.c:1701 g10/keygen.c:1807
#, c-format
msgid "Key generation failed: %s\n"
msgstr "Anahtar �retimi ba�ar�s�zl��a u�rad�: %s\n"
-#: g10/keygen.c:1734 g10/sig-check.c:315 g10/sign.c:112
+#: g10/keygen.c:1748 g10/sig-check.c:315 g10/sign.c:112
#, c-format
msgid ""
"key has been created %lu second in future (time warp or clock problem)\n"
msgstr "anahtar �retimi %lu saniye s�recek (zaman sapmas� veya h�z problemi)\n"
-#: g10/keygen.c:1736 g10/sig-check.c:317 g10/sign.c:114
+#: g10/keygen.c:1750 g10/sig-check.c:317 g10/sign.c:114
#, c-format
msgid ""
"key has been created %lu seconds in future (time warp or clock problem)\n"
msgstr ""
"anahtar �retimi %lu saniye s�recek (zaman sapmas� ya da h�z problemi)\n"
-#: g10/keygen.c:1769
+#: g10/keygen.c:1783
msgid "Really create? "
msgstr "Ger�ekten yarat�lacak m�? "
-#: g10/encode.c:91 g10/openfile.c:178 g10/openfile.c:288 g10/tdbio.c:454
+#: g10/encode.c:91 g10/openfile.c:180 g10/openfile.c:300 g10/tdbio.c:454
#: g10/tdbio.c:515
#, c-format
msgid "%s: can't open: %s\n"
@@ -1617,17 +1641,17 @@ msgstr "%s: a��lamad�: %s\n"
msgid "error creating passphrase: %s\n"
msgstr "anahtar parolas� olu�turulurken hata: %s\n"
-#: g10/encode.c:171 g10/encode.c:324
+#: g10/encode.c:171 g10/encode.c:327
#, c-format
msgid "%s: WARNING: empty file\n"
msgstr "%s: UYARI: dosya bo�\n"
-#: g10/encode.c:271
+#: g10/encode.c:274
#, c-format
msgid "reading from `%s'\n"
msgstr "\"%s\"den okuyor\n"
-#: g10/encode.c:492
+#: g10/encode.c:497
#, c-format
msgid "%s/%s encrypted for: %s\n"
msgstr "%s/%s %s i�in �ifrelendi\n"
@@ -1652,282 +1676,280 @@ msgstr "%08lX anahtar�: bir RFC2440 anahtar� de�il - atland�\n"
msgid "key %08lX: not protected - skipped\n"
msgstr "%08lX anahtar�: korunmam�� - atland�\n"
-#: g10/export.c:232
+#: g10/export.c:236
msgid "WARNING: nothing exported\n"
msgstr "UYARI: hi�bir �ey g�nderilmedi\n"
-#: g10/getkey.c:211
+#: g10/getkey.c:214
msgid "too many entries in pk cache - disabled\n"
msgstr "pk belle�inde �ok fazla girdi - iptal edildi\n"
-#: g10/getkey.c:350
+#: g10/getkey.c:449
msgid "too many entries in unk cache - disabled\n"
msgstr "unk belle�inde �ok fazla girdi - iptal edildi\n"
-#: g10/getkey.c:1308 g10/getkey.c:1347
-msgid "RSA key cannot be used in this version\n"
-msgstr "Bu s�r�mde RSA anahtar� kullan�lamaz\n"
-
-#: g10/getkey.c:1310 g10/getkey.c:1349
-msgid "No key for user ID\n"
-msgstr "�zg�n dizi i�in anahtar yok\n"
-
-#: g10/getkey.c:1388 g10/getkey.c:1428
-msgid "No user ID for key\n"
-msgstr "Anahtar i�in �zg�n dizi yok\n"
-
-#: g10/getkey.c:1628 g10/getkey.c:1675 g10/getkey.c:1731
+#: g10/getkey.c:2169
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "yard�mc� anahtar %08lX, as�l anahtar %08lX yerine kullan�l�yor\n"
-#: g10/getkey.c:2050
+#: g10/getkey.c:2211 g10/trustdb.c:577
+#, c-format
+msgid "key %08lX: secret key without public key - skipped\n"
+msgstr "%08lX anahtar�: genel anahtars�z gizli anahtar - atland�\n"
+
+#: g10/getkey.c:2499
msgid "[User id not found]"
msgstr "[�zg�n dizi bulunamad�]"
-#: g10/import.c:182
+#: g10/import.c:184
#, c-format
msgid "skipping block of type %d\n"
msgstr "%d tipindeki blok atland�\n"
-#: g10/import.c:189 g10/trustdb.c:1806 g10/trustdb.c:1847
+#: g10/import.c:191 g10/trustdb.c:1806 g10/trustdb.c:1847
#, c-format
msgid "%lu keys so far processed\n"
msgstr "�u ana kadar her�ey yolunda giderek %lu anahtar i�lenmi�\n"
-#: g10/import.c:194
+#: g10/import.c:196
#, c-format
msgid "error reading `%s': %s\n"
msgstr "\"%s\" okunurken hata: %s\n"
-#: g10/import.c:204
+#: g10/import.c:206
#, c-format
msgid "Total number processed: %lu\n"
msgstr "��lenmi� toplam miktar: %lu\n"
-#: g10/import.c:206
+#: g10/import.c:208
#, c-format
msgid " skipped new keys: %lu\n"
msgstr " yeni anahtarlar atland�: %lu\n"
-#: g10/import.c:209
+#: g10/import.c:211
#, c-format
msgid " w/o user IDs: %lu\n"
msgstr " �zg�n dizi olmaks�z�n: %lu\n"
-#: g10/import.c:211
+#: g10/import.c:213
#, c-format
msgid " imported: %lu"
msgstr " indirildi: %lu"
-#: g10/import.c:217
+#: g10/import.c:219
#, c-format
msgid " unchanged: %lu\n"
msgstr " de�i�medi: %lu\n"
-#: g10/import.c:219
+#: g10/import.c:221
#, c-format
msgid " new user IDs: %lu\n"
msgstr " yeni �zg�n dizi: %lu\n"
-#: g10/import.c:221
+#: g10/import.c:223
#, c-format
msgid " new subkeys: %lu\n"
msgstr " yeni yard�mc� anahtarlar: %lu\n"
-#: g10/import.c:223
+#: g10/import.c:225
#, c-format
msgid " new signatures: %lu\n"
msgstr " yeni imzalar: %lu\n"
-#: g10/import.c:225
+#: g10/import.c:227
#, c-format
msgid " new key revocations: %lu\n"
msgstr " yeni anahtar iptalleri: %lu\n"
-#: g10/import.c:227
+#: g10/import.c:229
#, c-format
msgid " secret keys read: %lu\n"
msgstr " gizli anahtarlar okunuyor: %lu\n"
-#: g10/import.c:229
+#: g10/import.c:231
#, c-format
msgid " secret keys imported: %lu\n"
msgstr " gizli anahtarlar indirildi: %lu\n"
-#: g10/import.c:231
+#: g10/import.c:233
#, c-format
msgid " secret keys unchanged: %lu\n"
msgstr " gizli anahtarlar de�i�medi: %lu\n"
-#: g10/import.c:391 g10/import.c:590
+#: g10/import.c:408 g10/import.c:617
#, c-format
msgid "key %08lX: no user ID\n"
msgstr "anahtar %08lX: �zg�n dizi yok\n"
-#: g10/import.c:405
+#: g10/import.c:422
#, c-format
msgid "key %08lX: no valid user IDs\n"
msgstr "key %08lX: �zg�n dizi ge�erli de�il\n"
-#: g10/import.c:407
+#: g10/import.c:424
msgid "this may be caused by a missing self-signature\n"
msgstr "bu kay�p bir �z-imza taraf�ndan meydana gelebilir\n"
-#: g10/import.c:418 g10/import.c:657
+#: g10/import.c:435 g10/import.c:684
#, c-format
msgid "key %08lX: public key not found: %s\n"
msgstr "anahtar %08lX: genel anahtar bulunamad�: %s\n"
-#: g10/import.c:423
+#: g10/import.c:440
#, c-format
msgid "key %08lX: new key - skipped\n"
msgstr "anahtar %08lX: yeni anahtar - atland�\n"
-#: g10/import.c:431
+#: g10/import.c:448
msgid "no default public keyring\n"
msgstr "genel anahtar demeti �ntan�ml� de�il\n"
-#: g10/import.c:435 g10/openfile.c:230 g10/sign.c:295 g10/sign.c:615
+#: g10/import.c:452 g10/openfile.c:244 g10/sign.c:312 g10/sign.c:635
#, c-format
msgid "writing to `%s'\n"
msgstr "\"%s\"e yaz�yor\n"
-#: g10/import.c:438 g10/import.c:496 g10/import.c:605 g10/import.c:706
+#: g10/import.c:455 g10/import.c:513 g10/import.c:632 g10/import.c:733
#, c-format
msgid "can't lock keyring `%s': %s\n"
msgstr "\"%s\" anahtar demeti kilitlenemez: %s\n"
-#: g10/import.c:441 g10/import.c:499 g10/import.c:608 g10/import.c:709
+#: g10/import.c:458 g10/import.c:516 g10/import.c:635 g10/import.c:736
#, c-format
msgid "error writing keyring `%s': %s\n"
msgstr "\"%s\" anahtar demetini yazarken hata: %s\n"
-#: g10/import.c:446
+#: g10/import.c:463
#, c-format
msgid "key %08lX: public key imported\n"
msgstr "anahtar %08lX: genel anahtar indirildi\n"
-#: g10/import.c:463
+#: g10/import.c:480
#, c-format
msgid "key %08lX: doesn't match our copy\n"
msgstr "anahtar %08lX: bizim kopyam�zla e�le�mez\n"
-#: g10/import.c:472 g10/import.c:665
+#: g10/import.c:489 g10/import.c:692
#, c-format
msgid "key %08lX: can't locate original keyblock: %s\n"
msgstr "anahtar %08lX: �zg�n anahtar bloku yerle�tirilemedi: %s\n"
-#: g10/import.c:478 g10/import.c:671
+#: g10/import.c:495 g10/import.c:698
#, c-format
msgid "key %08lX: can't read original keyblock: %s\n"
msgstr "anahtar %08lX: �zg�n anahtar bloku okunamad�\n"
-#: g10/import.c:505
+#: g10/import.c:522
#, c-format
msgid "key %08lX: 1 new user ID\n"
msgstr "anahtar %08lX: 1 yeni �zg�n dizi\n"
-#: g10/import.c:508
+#: g10/import.c:525
#, c-format
msgid "key %08lX: %d new user IDs\n"
msgstr "anahtar %08lX: %d yeni �zg�n dizi\n"
-#: g10/import.c:511
+#: g10/import.c:528
#, c-format
msgid "key %08lX: 1 new signature\n"
msgstr "anahtar %08lX: 1 yeni imza\n"
-#: g10/import.c:514
+#: g10/import.c:531
#, c-format
msgid "key %08lX: %d new signatures\n"
msgstr "anahtar %08lX: %d yeni imza\n"
-#: g10/import.c:517
+#: g10/import.c:534
#, c-format
msgid "key %08lX: 1 new subkey\n"
msgstr "anahtar %08lX: bir yeni yard�mc� anahtar\n"
-#: g10/import.c:520
+#: g10/import.c:537
#, c-format
msgid "key %08lX: %d new subkeys\n"
msgstr "anahtar %08lX: %d yeni yard�mc� anahtar\n"
-#: g10/import.c:530
+#: g10/import.c:547
#, c-format
msgid "key %08lX: not changed\n"
msgstr "anahtar %08lX: de�i�medi\n"
-#: g10/import.c:613
+#: g10/import.c:610
+#, c-format
+msgid "secret key %08lX not imported (use %s to allow for it)\n"
+msgstr ""
+
+#: g10/import.c:640
#, c-format
msgid "key %08lX: secret key imported\n"
msgstr "anahtar %08lX: gizli anahtar indirildi\n"
#. we can't merge secret keys
-#: g10/import.c:617
+#: g10/import.c:644
#, c-format
msgid "key %08lX: already in secret keyring\n"
msgstr "anahtar %08lX: zaten gizli anahtar demetinde\n"
-#: g10/import.c:622
+#: g10/import.c:649
#, c-format
msgid "key %08lX: secret key not found: %s\n"
msgstr "anahtar %08lX: gizli anahtar bulunamad�: %s\n"
-#: g10/import.c:651
+#: g10/import.c:678
#, c-format
msgid "key %08lX: no public key - can't apply revocation certificate\n"
msgstr ""
"anahtar %08lX: genel anahtar de�il - y�r�rl�kten kald�rma sertifikas� "
"uygulanamaz\n"
-#: g10/import.c:682
+#: g10/import.c:709
#, c-format
msgid "key %08lX: invalid revocation certificate: %s - rejected\n"
msgstr ""
"anahtar %08lX: y�r�rl�kten kald�rma sertifikas� ge�ersiz: %s - reddedildi\n"
-#: g10/import.c:714
+#: g10/import.c:741
#, c-format
msgid "key %08lX: revocation certificate imported\n"
msgstr "anahtar %08lX: y�r�rl�kten kald�rma sertifikas� indirildi\n"
-#: g10/import.c:756
+#: g10/import.c:783
#, c-format
msgid "key %08lX: no user ID for signature\n"
msgstr "anahtar %08lX: imza i�in �zg�n dizi yok\n"
-#: g10/import.c:763 g10/import.c:787
+#: g10/import.c:790 g10/import.c:814
#, c-format
msgid "key %08lX: unsupported public key algorithm\n"
msgstr "anahtar %08lX: genel anahtar algoritmas� desteklenmiyor\n"
-#: g10/import.c:764
+#: g10/import.c:791
#, c-format
msgid "key %08lX: invalid self-signature\n"
msgstr "anahtar %08lX: �z-imza ge�ersiz\n"
-#: g10/import.c:779
+#: g10/import.c:806
#, c-format
msgid "key %08lX: no subkey for key binding\n"
msgstr "anahtar %08lX: anahtar� garantilemek i�in yard�mc� anahtar yok\n"
-#: g10/import.c:788
+#: g10/import.c:815
#, c-format
msgid "key %08lX: invalid subkey binding\n"
msgstr "anahtar %08lX: yard�mc� anahtar garantileme ge�ersiz\n"
-#: g10/import.c:815
+#: g10/import.c:842
#, c-format
msgid "key %08lX: accepted non self-signed user ID '"
msgstr "anahtar %08lX: �z-imzal� olmayan �zg�n dizi kabul edildi: '"
-#: g10/import.c:844
+#: g10/import.c:871
#, c-format
msgid "key %08lX: skipped user ID '"
msgstr "anahtar %08lX: �zg�n dizi atland�: '"
-#: g10/import.c:867
+#: g10/import.c:894
#, c-format
msgid "key %08lX: skipped subkey\n"
msgstr "anahtar %08lX: yard�mc� anahtar atland�\n"
@@ -1936,100 +1958,100 @@ msgstr "anahtar %08lX: yard�mc� anahtar atland�\n"
#. * to import non-exportable signature when we have the
#. * the secret key used to create this signature - it
#. * seems that this makes sense
-#: g10/import.c:892
+#: g10/import.c:919
#, c-format
msgid "key %08lX: non exportable signature (class %02x) - skipped\n"
msgstr "anahtar %08lX: imza g�nderilebilir de�il (%02x s�n�f�) - atland�\n"
-#: g10/import.c:901
+#: g10/import.c:928
#, c-format
msgid "key %08lX: revocation certificate at wrong place - skipped\n"
msgstr ""
"anahtar %08lX: y�r�rl�kten kald�rma sertifikas� yanl�� yerde - atland�\n"
-#: g10/import.c:909
+#: g10/import.c:936
#, c-format
msgid "key %08lX: invalid revocation certificate: %s - skipped\n"
msgstr ""
"anahtar %08lX: y�r�rl�kten kald�rma sertifikas� ge�ersiz: %s - atland�\n"
-#: g10/import.c:1009
+#: g10/import.c:1036
#, c-format
msgid "key %08lX: duplicated user ID detected - merged\n"
msgstr "anahtar %08lX: �ift �zg�n kimlik saptand� - kat��t�r�ld�\n"
-#: g10/import.c:1060
+#: g10/import.c:1088
#, c-format
msgid "key %08lX: revocation certificate added\n"
msgstr "anahtar %08lX: y�r�rl�kten kald�rma sertifikas� eklendi\n"
-#: g10/import.c:1174 g10/import.c:1227
+#: g10/import.c:1202 g10/import.c:1255
#, c-format
msgid "key %08lX: our copy has no self-signature\n"
msgstr "anahtar %08lX: bizim koya �z-imzaya sahip de�il\n"
-#: g10/delkey.c:64 g10/keyedit.c:94
+#: g10/delkey.c:67 g10/keyedit.c:94
#, c-format
msgid "%s: user not found\n"
msgstr "%s: kullan�c� bulunamad�\n"
-#: g10/keyedit.c:155
+#: g10/keyedit.c:156
msgid "[revocation]"
msgstr "[y�r�rl�kten kald�rma]"
-#: g10/keyedit.c:156
+#: g10/keyedit.c:157
msgid "[self-signature]"
msgstr "[�z-imza]"
-#: g10/keyedit.c:220
+#: g10/keyedit.c:221
msgid "1 bad signature\n"
msgstr "1 k�t� imza\n"
-#: g10/keyedit.c:222
+#: g10/keyedit.c:223
#, c-format
msgid "%d bad signatures\n"
msgstr "%d k�t� imza\n"
-#: g10/keyedit.c:224
+#: g10/keyedit.c:225
msgid "1 signature not checked due to a missing key\n"
msgstr "1 imza kay�p bir anahtar y�z�nden kontrol edilmedi\n"
-#: g10/keyedit.c:226
+#: g10/keyedit.c:227
#, c-format
msgid "%d signatures not checked due to missing keys\n"
msgstr "%d imza kay�p bir anahtar y�z�nden kontrol edilmedi\n"
-#: g10/keyedit.c:228
+#: g10/keyedit.c:229
msgid "1 signature not checked due to an error\n"
msgstr "1 imza bir hata y�z�nden kontrol edilmedi\n"
-#: g10/keyedit.c:230
+#: g10/keyedit.c:231
#, c-format
msgid "%d signatures not checked due to errors\n"
msgstr "%d imza hatalardan dolay� kontrol edilmedi\n"
-#: g10/keyedit.c:232
+#: g10/keyedit.c:233
msgid "1 user ID without valid self-signature detected\n"
msgstr "1 �z-imzas� ge�ersiz �zg�n dizi saptand�\n"
-#: g10/keyedit.c:234
+#: g10/keyedit.c:235
#, c-format
msgid "%d user IDs without valid self-signatures detected\n"
msgstr "%d �z-imzas� ge�ersiz �zg�n dizi saptand�\n"
#. Fixme: see whether there is a revocation in which
#. * case we should allow to sign it again.
-#: g10/keyedit.c:316
+#: g10/keyedit.c:317
#, c-format
msgid "Already signed by key %08lX\n"
msgstr "%08lX anahtar� taraf�ndan zaten imzalanm��\n"
-#: g10/keyedit.c:324
+#: g10/keyedit.c:325
#, c-format
msgid "Nothing to sign with key %08lX\n"
msgstr "%08lX anahtar� ile imzalanan hi�bir �ey yok\n"
-#: g10/keyedit.c:333
+#: g10/keyedit.c:334
msgid ""
"Are you really sure that you want to sign this key\n"
"with your key: \""
@@ -2037,7 +2059,7 @@ msgstr ""
"Bu anahtar� �u anahtar�n�zla imzalamak istedi�inize ger�ekten emin misiniz?: "
"\""
-#: g10/keyedit.c:342
+#: g10/keyedit.c:343
msgid ""
"The signature will be marked as non-exportable.\n"
"\n"
@@ -2045,33 +2067,33 @@ msgstr ""
"Bu imza g�nderilemez olarak i�aretlenmi� olacak\n"
"\n"
-#: g10/keyedit.c:347
+#: g10/keyedit.c:348
msgid "Really sign? "
msgstr ""
-#: g10/keyedit.c:373 g10/keyedit.c:1871 g10/keyedit.c:1933 g10/sign.c:136
+#: g10/keyedit.c:374 g10/keyedit.c:1872 g10/keyedit.c:1934 g10/sign.c:157
#, c-format
msgid "signing failed: %s\n"
msgstr "imzalama ba�ar�s�z: %s\n"
-#: g10/keyedit.c:427
+#: g10/keyedit.c:428
msgid "This key is not protected.\n"
msgstr "Bu anahtar korunmam��.\n"
-#: g10/keyedit.c:431
+#: g10/keyedit.c:432
msgid "Secret parts of primary key are not available.\n"
msgstr "As�l anahtar�n gizli par�alar� kullan�lamaz.\n"
-#: g10/keyedit.c:435
+#: g10/keyedit.c:436
msgid "Key is protected.\n"
msgstr "Anahtar korunmu�.\n"
-#: g10/keyedit.c:455
+#: g10/keyedit.c:456
#, c-format
msgid "Can't edit this key: %s\n"
msgstr "Bu anahtar �zerinde d�zenleme yap�lamaz: %s\n"
-#: g10/keyedit.c:460
+#: g10/keyedit.c:461
msgid ""
"Enter the new passphrase for this secret key.\n"
"\n"
@@ -2079,426 +2101,426 @@ msgstr ""
"Bu gizli anahtar i�in yeni anahtar parolas� giriniz.\n"
"\n"
-#: g10/keyedit.c:472
+#: g10/keyedit.c:473
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"\n"
msgstr ""
-#: g10/keyedit.c:475
+#: g10/keyedit.c:476
msgid "Do you really want to do this? "
msgstr "Ger�ekten bunu yapmak istiyor musunuz? "
-#: g10/keyedit.c:539
+#: g10/keyedit.c:540
msgid "moving a key signature to the correct place\n"
msgstr "bir anahtar imzas�n� do�ru yere ta��yor\n"
-#: g10/keyedit.c:580
+#: g10/keyedit.c:581
msgid "quit this menu"
msgstr "bu menuden ��k"
-#: g10/keyedit.c:581
+#: g10/keyedit.c:582
msgid "q"
msgstr "�"
-#: g10/keyedit.c:582
+#: g10/keyedit.c:583
msgid "save"
msgstr "kaydet"
-#: g10/keyedit.c:582
+#: g10/keyedit.c:583
msgid "save and quit"
msgstr "kaydet ve ��k"
-#: g10/keyedit.c:583
+#: g10/keyedit.c:584
msgid "help"
msgstr "yard�m"
-#: g10/keyedit.c:583
+#: g10/keyedit.c:584
msgid "show this help"
msgstr "bunu g�sterir "
-#: g10/keyedit.c:585
+#: g10/keyedit.c:586
msgid "fpr"
msgstr "piz"
-#: g10/keyedit.c:585
+#: g10/keyedit.c:586
msgid "show fingerprint"
msgstr "parmak izini g�ster"
-#: g10/keyedit.c:586
+#: g10/keyedit.c:587
msgid "list"
msgstr "listele"
-#: g10/keyedit.c:586
+#: g10/keyedit.c:587
msgid "list key and user IDs"
msgstr "anahtar� ve �zg�n diziyi g�ster"
-#: g10/keyedit.c:587
+#: g10/keyedit.c:588
msgid "l"
msgstr "l"
-#: g10/keyedit.c:588
+#: g10/keyedit.c:589
msgid "uid"
msgstr "�dz"
-#: g10/keyedit.c:588
+#: g10/keyedit.c:589
msgid "select user ID N"
msgstr "N �zg�n dizi se�er"
-#: g10/keyedit.c:589
+#: g10/keyedit.c:590
msgid "key"
msgstr "anahtar"
-#: g10/keyedit.c:589
+#: g10/keyedit.c:590
msgid "select secondary key N"
msgstr "N yard�mc� anahtar se�er"
-#: g10/keyedit.c:590
+#: g10/keyedit.c:591
msgid "check"
msgstr "kontrol"
-#: g10/keyedit.c:590
+#: g10/keyedit.c:591
msgid "list signatures"
msgstr "imzalar� listele"
-#: g10/keyedit.c:591
+#: g10/keyedit.c:592
msgid "c"
msgstr "k"
-#: g10/keyedit.c:592
+#: g10/keyedit.c:593
msgid "sign"
msgstr "imzala"
-#: g10/keyedit.c:592
+#: g10/keyedit.c:593
msgid "sign the key"
msgstr "anahtar� imzalar"
-#: g10/keyedit.c:593
+#: g10/keyedit.c:594
msgid "s"
msgstr "i"
-#: g10/keyedit.c:594
+#: g10/keyedit.c:595
msgid "lsign"
msgstr "yimza"
-#: g10/keyedit.c:594
+#: g10/keyedit.c:595
msgid "sign the key locally"
msgstr "anahtar� yerel olarak imzala"
-#: g10/keyedit.c:595
+#: g10/keyedit.c:596
msgid "debug"
msgstr "hata ay�klama"
-#: g10/keyedit.c:596
+#: g10/keyedit.c:597
msgid "adduid"
msgstr "�dzekle"
-#: g10/keyedit.c:596
+#: g10/keyedit.c:597
msgid "add a user ID"
msgstr "bir �zg�n dizi ekler"
-#: g10/keyedit.c:597
+#: g10/keyedit.c:598
msgid "deluid"
msgstr "�dzsil"
-#: g10/keyedit.c:597
+#: g10/keyedit.c:598
msgid "delete user ID"
msgstr "�zg�n diziyi siler"
-#: g10/keyedit.c:598
+#: g10/keyedit.c:599
msgid "addkey"
msgstr "anhekle"
-#: g10/keyedit.c:598
+#: g10/keyedit.c:599
msgid "add a secondary key"
msgstr "bir yard�mc� anahtar ekler"
-#: g10/keyedit.c:599
+#: g10/keyedit.c:600
msgid "delkey"
msgstr "anhsil"
-#: g10/keyedit.c:599
+#: g10/keyedit.c:600
msgid "delete a secondary key"
msgstr "bir yard�mc� anahtar siler"
-#: g10/keyedit.c:600
+#: g10/keyedit.c:601
msgid "delsig"
msgstr "imzasil"
-#: g10/keyedit.c:600
+#: g10/keyedit.c:601
msgid "delete signatures"
msgstr "imzalar� siler"
-#: g10/keyedit.c:601
+#: g10/keyedit.c:602
msgid "expire"
msgstr "sontrh"
-#: g10/keyedit.c:601
+#: g10/keyedit.c:602
msgid "change the expire date"
msgstr "son kullan�m tarihini de�i�tirir"
-#: g10/keyedit.c:602
+#: g10/keyedit.c:603
msgid "toggle"
msgstr "se�mece"
-#: g10/keyedit.c:602
+#: g10/keyedit.c:603
msgid "toggle between secret and public key listing"
msgstr "genel ve gizli anahtar listeleri aras�nda yer de�i�tirir"
-#: g10/keyedit.c:604
+#: g10/keyedit.c:605
msgid "t"
msgstr "b"
-#: g10/keyedit.c:605
+#: g10/keyedit.c:606
msgid "pref"
msgstr "�nayar"
-#: g10/keyedit.c:605
+#: g10/keyedit.c:606
msgid "list preferences"
msgstr "�nayarlar� listeler"
-#: g10/keyedit.c:606
+#: g10/keyedit.c:607
msgid "passwd"
msgstr "aparola"
-#: g10/keyedit.c:606
+#: g10/keyedit.c:607
msgid "change the passphrase"
msgstr "anahtar parolas�n� de�i�tirir"
-#: g10/keyedit.c:607
+#: g10/keyedit.c:608
msgid "trust"
msgstr "b�vence"
-#: g10/keyedit.c:607
+#: g10/keyedit.c:608
msgid "change the ownertrust"
msgstr "sahibinig�vencesini de�i�tirir"
-#: g10/keyedit.c:608
+#: g10/keyedit.c:609
msgid "revsig"
msgstr "imzafes"
-#: g10/keyedit.c:608
+#: g10/keyedit.c:609
msgid "revoke signatures"
msgstr "imzalar� fesheder"
-#: g10/keyedit.c:609
+#: g10/keyedit.c:610
msgid "revkey"
msgstr "anfes"
-#: g10/keyedit.c:609
+#: g10/keyedit.c:610
msgid "revoke a secondary key"
msgstr "bir yard�mc� anahtar� y�r�rl�kten kald�r�r (fesheder)"
-#: g10/keyedit.c:610
+#: g10/keyedit.c:611
msgid "disable"
msgstr "kald�r"
-#: g10/keyedit.c:610
+#: g10/keyedit.c:611
msgid "disable a key"
msgstr "bir anahtar� kullan�mdan kald�r�r"
-#: g10/keyedit.c:611
+#: g10/keyedit.c:612
msgid "enable"
msgstr "kullan"
-#: g10/keyedit.c:611
+#: g10/keyedit.c:612
msgid "enable a key"
msgstr "bir anahtar� kullan�ma sokar"
-#: g10/delkey.c:110 g10/keyedit.c:631
+#: g10/delkey.c:110 g10/keyedit.c:632
msgid "can't do that in batchmode\n"
msgstr "bu �nceden belirlenmi� i�lemler kipinde (in batchmode) yap�lamaz\n"
#. check that they match
#. fixme: check that they both match
-#: g10/keyedit.c:669
+#: g10/keyedit.c:670
msgid "Secret key is available.\n"
msgstr "Gizli key kullan��s�z.\n"
-#: g10/keyedit.c:698
+#: g10/keyedit.c:699
msgid "Command> "
msgstr "Komut-> "
-#: g10/keyedit.c:728
+#: g10/keyedit.c:729
msgid "Need the secret key to do this.\n"
msgstr "Bunu yapmak i�in gizli anahtar gerekli.\n"
-#: g10/keyedit.c:732
+#: g10/keyedit.c:733
msgid "Please use the command \"toggle\" first.\n"
msgstr "l�tfen �nce \"se�mece\" komutunu kullan�n.\n"
-#: g10/keyedit.c:779
+#: g10/keyedit.c:780
msgid "Really sign all user IDs? "
msgstr "T�m �zg�n diziler ger�ekten imzalanacak m�? "
-#: g10/keyedit.c:780
+#: g10/keyedit.c:781
msgid "Hint: Select the user IDs to sign\n"
msgstr "�pucu: �mzalamak i�in bir �zg�n dizi se�iniz\n"
-#: g10/keyedit.c:812 g10/keyedit.c:994
+#: g10/keyedit.c:813 g10/keyedit.c:995
#, c-format
msgid "update of trustdb failed: %s\n"
msgstr "g�vence veritaban�n�n g�ncellenmesi ba�ar�s�z: %s\n"
-#: g10/keyedit.c:823 g10/keyedit.c:844
+#: g10/keyedit.c:824 g10/keyedit.c:845
msgid "You must select at least one user ID.\n"
msgstr "En az bir �zg�n dizi se�melisiniz.\n"
-#: g10/keyedit.c:825
+#: g10/keyedit.c:826
msgid "You can't delete the last user ID!\n"
msgstr "Son �zg�n diziyi silemezsiniz!\n"
-#: g10/keyedit.c:828
+#: g10/keyedit.c:829
msgid "Really remove all selected user IDs? "
msgstr "Se�ilen t�m �zg�n diziler ger�ekten silinecek mi? "
-#: g10/keyedit.c:829
+#: g10/keyedit.c:830
msgid "Really remove this user ID? "
msgstr "Bu �zg�n dizi ger�ekten silinecek mi? "
-#: g10/keyedit.c:865 g10/keyedit.c:887
+#: g10/keyedit.c:866 g10/keyedit.c:888
msgid "You must select at least one key.\n"
msgstr "En az bir anahtar se�melisiniz.\n"
-#: g10/keyedit.c:869
+#: g10/keyedit.c:870
msgid "Do you really want to delete the selected keys? "
msgstr "Se�ilen anahtarlar� ger�ekten silmek istiyor musunuz? "
-#: g10/keyedit.c:870
+#: g10/keyedit.c:871
msgid "Do you really want to delete this key? "
msgstr "Bu anahtar� ger�ekten silmek istiyor musunuz? "
-#: g10/keyedit.c:891
+#: g10/keyedit.c:892
msgid "Do you really want to revoke the selected keys? "
msgstr "Se�ilen anahtarlar� ger�ekten y�r�rl�kten kald�rmak istiyor musunuz? "
-#: g10/keyedit.c:892
+#: g10/keyedit.c:893
msgid "Do you really want to revoke this key? "
msgstr "Bu anahtar� ger�ekten y�r�rl�kten kald�rmak istiyor musunuz? "
-#: g10/keyedit.c:958
+#: g10/keyedit.c:959
msgid "Save changes? "
msgstr "De�i�iklikler kaydedilecek mi? "
-#: g10/keyedit.c:961
+#: g10/keyedit.c:962
msgid "Quit without saving? "
msgstr "Kaydetmeden ��k�ls�n m�? "
-#: g10/keyedit.c:972
+#: g10/keyedit.c:973
#, c-format
msgid "update failed: %s\n"
msgstr "g�ncelleme ba�ar�s�z: %s\n"
-#: g10/keyedit.c:979
+#: g10/keyedit.c:980
#, c-format
msgid "update secret failed: %s\n"
msgstr "gizliyi g�ncelleme ba�ar�s�z: %s\n"
-#: g10/keyedit.c:986
+#: g10/keyedit.c:987
msgid "Key not changed so no update needed.\n"
msgstr "g�ncelleme gere�i olmad���ndan anahtar de�i�medi.\n"
-#: g10/keyedit.c:1001
+#: g10/keyedit.c:1002
msgid "Invalid command (try \"help\")\n"
msgstr "Komut ge�ersiz (\"yard�m\" komutunu deneyin)\n"
-#: g10/keyedit.c:1081 g10/keyedit.c:1107
+#: g10/keyedit.c:1082 g10/keyedit.c:1108
#, c-format
msgid "%s%c %4u%c/%08lX created: %s expires: %s"
msgstr "%s%c %4u%c/%08lX �retildi: %s son kullanma tarihi: %s"
-#: g10/keyedit.c:1090
+#: g10/keyedit.c:1091
#, c-format
msgid " trust: %c/%c"
msgstr "g�vence: %c/%c"
-#: g10/keyedit.c:1094
+#: g10/keyedit.c:1095
msgid "This key has been disabled"
msgstr "Bu anahtar kullan�mdan kald�r�lm��"
-#: g10/keyedit.c:1123
+#: g10/keyedit.c:1124
#, c-format
msgid "rev! subkey has been revoked: %s\n"
msgstr "fesh! yard�mc� anahtar y�r�rl�kten kald�r�lm��: %s\n"
-#: g10/keyedit.c:1126
+#: g10/keyedit.c:1127
msgid "rev- faked revocation found\n"
msgstr "fesh- sahte y�r�rl�kten kald�rma sertifikas� bulundu\n"
-#: g10/keyedit.c:1128
+#: g10/keyedit.c:1129
#, c-format
msgid "rev? problem checking revocation: %s\n"
msgstr "fesh? y�r�rl�kten kald�rma kontrol edilirken problem: %s\n"
-#: g10/keyedit.c:1366
+#: g10/keyedit.c:1367
msgid "Delete this good signature? (y/N/q)"
msgstr "Bu do�ru imza silinsin mi? (e/H/�)"
-#: g10/keyedit.c:1370
+#: g10/keyedit.c:1371
msgid "Delete this invalid signature? (y/N/q)"
msgstr "Bu ge�ersiz imza silinsin mi? (e/H/�"
-#: g10/keyedit.c:1374
+#: g10/keyedit.c:1375
msgid "Delete this unknown signature? (y/N/q)"
msgstr "Bu bilinmeyen imza silinsin mi? (e/H/�"
-#: g10/keyedit.c:1380
+#: g10/keyedit.c:1381
msgid "Really delete this self-signature? (y/N)"
msgstr "Bu �z-imza ger�ekten silinecek mi? (e/H)"
-#: g10/keyedit.c:1394
+#: g10/keyedit.c:1395
#, c-format
msgid "Deleted %d signature.\n"
msgstr "%d imza silindi.\n"
-#: g10/keyedit.c:1395
+#: g10/keyedit.c:1396
#, c-format
msgid "Deleted %d signatures.\n"
msgstr "%d adet imza silindi.\n"
-#: g10/keyedit.c:1398
+#: g10/keyedit.c:1399
msgid "Nothing deleted.\n"
msgstr "Hi�bir �ey silinmedi.\n"
-#: g10/keyedit.c:1467
+#: g10/keyedit.c:1468
msgid "Please remove selections from the secret keys.\n"
msgstr "L�tfen gizli anahtarlardan se�ilenleri silin.\n"
-#: g10/keyedit.c:1473
+#: g10/keyedit.c:1474
msgid "Please select at most one secondary key.\n"
msgstr "L�tfen en fazla bir yard�mc� anahtar se�in.\n"
-#: g10/keyedit.c:1477
+#: g10/keyedit.c:1478
msgid "Changing expiration time for a secondary key.\n"
msgstr "Bir yard�mc� anahtar i�in son kullanma tarihi de�i�tiriliyor.\n"
-#: g10/keyedit.c:1479
+#: g10/keyedit.c:1480
msgid "Changing expiration time for the primary key.\n"
msgstr "As�l anahtar i�in son kullanma tarihi de�i�tiriliyor.\n"
-#: g10/keyedit.c:1521
+#: g10/keyedit.c:1522
msgid "You can't change the expiration date of a v3 key\n"
msgstr "Bir v3 anahtar�n�n son kullanma tarihini de�i�tiremezsiniz\n"
-#: g10/keyedit.c:1537
+#: g10/keyedit.c:1538
msgid "No corresponding signature in secret ring\n"
msgstr "Gizli anahtar demetinde uygun/benzer imza yok\n"
-#: g10/keyedit.c:1598
+#: g10/keyedit.c:1599
#, c-format
msgid "No user ID with index %d\n"
msgstr "%d endeksiyle �zg�n dizi yok\n"
-#: g10/keyedit.c:1644
+#: g10/keyedit.c:1645
#, c-format
msgid "No secondary key with index %d\n"
msgstr "%d endeksiyle yard�mc� anahtar yok\n"
-#: g10/keyedit.c:1742
+#: g10/keyedit.c:1743
msgid "user ID: \""
msgstr "�zg�n dizi: \""
-#: g10/keyedit.c:1745
+#: g10/keyedit.c:1746
#, c-format
msgid ""
"\"\n"
@@ -2507,171 +2529,171 @@ msgstr ""
"\"\n"
" %08lX anahtar�n�zla %s de imzaland�\n"
-#: g10/keyedit.c:1749
+#: g10/keyedit.c:1750
msgid "Create a revocation certificate for this signature? (y/N)"
msgstr ""
"Bu imza i�in bir y�r�rl�kten kald�rma sertifikas� olu�turulsun mu? (e/H)"
#. FIXME: detect duplicates here
-#: g10/keyedit.c:1773
+#: g10/keyedit.c:1774
msgid "You have signed these user IDs:\n"
msgstr "Bu �zg�n dizileri imzalam��s�n�z:\n"
-#: g10/keyedit.c:1787 g10/keyedit.c:1822
+#: g10/keyedit.c:1788 g10/keyedit.c:1823
#, c-format
msgid " signed by %08lX at %s\n"
msgstr " %08lX taraf�ndan %s de imzaland�\n"
-#: g10/keyedit.c:1792
+#: g10/keyedit.c:1793
#, c-format
msgid " revoked by %08lX at %s\n"
msgstr " %08lX taraf�ndan %s de y�r�rl�kten kald�r�ld�\n"
-#: g10/keyedit.c:1812
+#: g10/keyedit.c:1813
msgid "You are about to revoke these signatures:\n"
msgstr "Bu imzalar� y�r�rl�kten kald�rmak �zeresiniz\n"
-#: g10/keyedit.c:1830
+#: g10/keyedit.c:1831
msgid "Really create the revocation certificates? (y/N)"
msgstr ""
"Bu y�r�rl�kten kald�rma sertifikalar�n� ger�ekten yaratacak m�s�n�z? (e/H)"
-#: g10/keyedit.c:1859
+#: g10/keyedit.c:1860
msgid "no secret key\n"
msgstr "gizli anahtar yok\n"
-#: g10/keylist.c:158
-msgid "invalid"
-msgstr "ge�ersiz"
-
-#: g10/keylist.c:178
-msgid "revoked"
-msgstr "y�r�rl�kten kald�r�ld�"
-
#. of subkey
-#: g10/keylist.c:400 g10/mainproc.c:790
+#: g10/keylist.c:279 g10/mainproc.c:851
#, c-format
msgid " [expires: %s]"
msgstr "[son kullanma tarihi: %s]"
-#: g10/mainproc.c:240
+#: g10/mainproc.c:269
#, c-format
msgid "public key is %08lX\n"
msgstr "genel anahtar: %08lX\n"
-#: g10/mainproc.c:284
+#: g10/mainproc.c:314
msgid "public key encrypted data: good DEK\n"
msgstr "genel anahtar �ifreli veri: do�ru DEK\n"
-#: g10/mainproc.c:326
+#: g10/mainproc.c:366
#, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "%s anahtar� ve �zg�n dizi %08lX %u-bit ile �ifrelendi, %s yarat�ld�\n"
-#: g10/mainproc.c:336
+#: g10/mainproc.c:376
#, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "�zg�n dizi %08lX %s anahtar� ile �ifrelendi\n"
-#: g10/mainproc.c:342
-msgid "no secret key for decryption available\n"
-msgstr "�ifre ��zme i�in kullan��l� bir gizli anahtar yok\n"
-
-#: g10/mainproc.c:351
+#: g10/mainproc.c:390
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "genel anahtar �ifre ��z�m� ba�ar�s�z: %s\n"
-#: g10/mainproc.c:388
+#: g10/mainproc.c:430
msgid "decryption okay\n"
msgstr "�ifre ��zme tamam\n"
-#: g10/mainproc.c:393
+#: g10/mainproc.c:435
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "UYARI: �ifreli ileti tahrif edilmi�!\n"
-#: g10/mainproc.c:398
+#: g10/mainproc.c:440
#, c-format
msgid "decryption failed: %s\n"
msgstr "�ifre ��zme ba�ar�s�z: %s\n"
-#: g10/mainproc.c:417
+#: g10/mainproc.c:459
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOT: g�nderen \"yaln�z-g�zleriniz-i�in\" ricada bulundu\n"
-#: g10/mainproc.c:419
+#: g10/mainproc.c:461
#, c-format
msgid "original file name='%.*s'\n"
msgstr "�zg�n dosya ad�=\"%.*s\"\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:632
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"tekba��na y�r�rl�kten kald�rma - uygulamak i�in \"gpg --import\" kullan�n\n"
-#: g10/mainproc.c:661 g10/mainproc.c:670
+#: g10/mainproc.c:719 g10/mainproc.c:728
msgid "WARNING: invalid notation data found\n"
msgstr "UYARI: ge�ersiz niteleme verisi bulundu\n"
-#: g10/mainproc.c:673
+#: g10/mainproc.c:731
msgid "Notation: "
msgstr "Niteleme: "
-#: g10/mainproc.c:680
+#: g10/mainproc.c:740
msgid "Policy: "
msgstr "G�venlik: "
-#: g10/mainproc.c:1121
+#: g10/mainproc.c:1193
msgid "signature verification suppressed\n"
msgstr "imza do�rulama bast�r�ld�\n"
-#: g10/mainproc.c:1158
+#. plaintext before signatures but no one-pass packets
+#: g10/mainproc.c:1235 g10/mainproc.c:1245
+#, fuzzy
+msgid "can't handle these multiple signatures\n"
+msgstr "a��k�a okunabilen imzalar dahil edildi\n"
+
+#: g10/mainproc.c:1256
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "%s anahtar� ve %08lX �zg�n dizisi ile %.*s imzas� yap�ld�\n"
#. just in case that we have no userid
-#: g10/mainproc.c:1184 g10/mainproc.c:1195
+#: g10/mainproc.c:1284 g10/mainproc.c:1292
msgid "BAD signature from \""
msgstr "K�T� imza: \""
-#: g10/mainproc.c:1185 g10/mainproc.c:1196
+#: g10/mainproc.c:1285 g10/mainproc.c:1293
msgid "Good signature from \""
msgstr "Do�ru imza: \""
-#: g10/mainproc.c:1187
+#: g10/mainproc.c:1308
msgid " aka \""
msgstr " den \""
-#: g10/mainproc.c:1243
+#: g10/mainproc.c:1358
#, c-format
msgid "Can't check signature: %s\n"
msgstr "�mza kontrol edilemedi: %s\n"
-#: g10/mainproc.c:1318
+#: g10/mainproc.c:1427 g10/mainproc.c:1443 g10/mainproc.c:1505
+#, fuzzy
+msgid "not a detached signature\n"
+msgstr "ba��ms�z bir imza yapar"
+
+#: g10/mainproc.c:1454
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "0x%02x s�n�f� tekba��na imza\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1511
msgid "old style (PGP 2.x) signature\n"
msgstr "eski stil (PGP 2.x) imza\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1518
msgid "invalid root packet detected in proc_tree()\n"
msgstr "proc_tree() i�inde ge�ersiz k�k paket saptand�\n"
-#: g10/misc.c:97
+#: g10/misc.c:98
#, c-format
msgid "can't disable core dumps: %s\n"
msgstr "\"core dumps\" iptal edilemedi: %s\n"
-#: g10/misc.c:207
+#: g10/misc.c:208
msgid "Experimental algorithms should not be used!\n"
msgstr "Deneyimsel algoritmalar kullan�lmayacakt�!\n"
-#: g10/misc.c:234
-msgid "this cipher algorithm is depreciated; please use a more standard one!\n"
+#: g10/misc.c:238
+#, fuzzy
+msgid "this cipher algorithm is deprecated; please use a more standard one!x\n"
msgstr ""
"bu cipher algoritmas�n�n de�eri d���k; l�tfem daha standard birini kullan!\n"
@@ -2680,12 +2702,68 @@ msgstr ""
msgid "can't handle public key algorithm %d\n"
msgstr "%d genel anahtar algoritmas� elde edilemedi\n"
-#: g10/parse-packet.c:991
+#: g10/parse-packet.c:1010
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "%d tipi altpaket kritik bit setine sahip\n"
-#: g10/passphrase.c:159
+#: g10/passphrase.c:223
+msgid "gpg-agent is not available in this session\n"
+msgstr ""
+
+#: g10/passphrase.c:229
+msgid "malformed GPG_AGENT_INFO environment variable\n"
+msgstr ""
+
+#: g10/hkp.c:147 g10/passphrase.c:248
+#, c-format
+msgid "can't connect to `%s': %s\n"
+msgstr "\"%s\" sunucusuna ba�lan�lamad�: %s\n"
+
+#: g10/passphrase.c:313 g10/passphrase.c:576
+#, c-format
+msgid " (main key ID %08lX)"
+msgstr " (as�l anahtar kimli�i %08lX)"
+
+#: g10/passphrase.c:323
+#, fuzzy, c-format
+msgid ""
+"You need a passphrase to unlock the secret key for user:\n"
+"\"%.*s\"\n"
+"%u-bit %s key, ID %08lX, created %s%s\n"
+msgstr ""
+"\n"
+"Gizli anahtar�n kilidini a�mak i�in bir anahtar parolas�na ihtiyac�n�z var.\n"
+"Anahtar�n sahibi: \""
+
+#: g10/passphrase.c:344
+#, fuzzy
+msgid "Enter passphrase\n"
+msgstr "Anahtar parolas�n� girin: "
+
+#: g10/passphrase.c:346
+#, fuzzy
+msgid "Repeat passphrase\n"
+msgstr "Tekrar:"
+
+#: g10/passphrase.c:384
+msgid "passphrase too long\n"
+msgstr ""
+
+#: g10/passphrase.c:396
+msgid "invalid response from agent\n"
+msgstr ""
+
+#: g10/passphrase.c:405
+msgid "cancelled by user\n"
+msgstr ""
+
+#: g10/passphrase.c:408 g10/passphrase.c:477
+#, c-format
+msgid "problem with the agent: agent returns 0x%lx\n"
+msgstr ""
+
+#: g10/passphrase.c:562
msgid ""
"\n"
"You need a passphrase to unlock the secret key for\n"
@@ -2695,25 +2773,20 @@ msgstr ""
"Gizli anahtar�n kilidini a�mak i�in bir anahtar parolas�na ihtiyac�n�z var.\n"
"Anahtar�n sahibi: \""
-#: g10/passphrase.c:168
+#: g10/passphrase.c:571
#, c-format
msgid "%u-bit %s key, ID %08lX, created %s"
msgstr "%u-bit %s anahtar�, kimlik: %08lX, yarat�ld� %s"
-#: g10/passphrase.c:173
-#, c-format
-msgid " (main key ID %08lX)"
-msgstr " (as�l anahtar kimli�i %08lX)"
-
-#: g10/passphrase.c:190
+#: g10/passphrase.c:609
msgid "can't query password in batchmode\n"
msgstr "�nceden tan�mlanm�� i�lemler kipinde (batchmode) parola sorgulanamaz\n"
-#: g10/passphrase.c:194
+#: g10/passphrase.c:613
msgid "Enter passphrase: "
msgstr "Anahtar parolas�n� girin: "
-#: g10/passphrase.c:198
+#: g10/passphrase.c:617
msgid "Repeat passphrase: "
msgstr "Tekrar:"
@@ -2721,19 +2794,24 @@ msgstr "Tekrar:"
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "veri kaydedilmedi; kaydetmek i�in \"--output\" se�ene�ni kullan�n\n"
-#: g10/plaintext.c:324
+#: g10/plaintext.c:332
msgid "Detached signature.\n"
msgstr "Ba��ms�z imza.\n"
-#: g10/plaintext.c:328
+#: g10/plaintext.c:336
msgid "Please enter name of data file: "
msgstr "L�tfen veri dosyas�n�n ismini girin: "
-#: g10/plaintext.c:349
+#: g10/plaintext.c:357
msgid "reading stdin ...\n"
msgstr "standard girdiden okuyor ...\n"
-#: g10/plaintext.c:392
+#: g10/plaintext.c:391
+#, fuzzy
+msgid "no signed data\n"
+msgstr "imzal� veri: %s a��lamad�\n"
+
+#: g10/plaintext.c:399
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "imzal� veri: %s a��lamad�\n"
@@ -2766,41 +2844,36 @@ msgstr "NOT: %d cipher algoritmas� �nayarlarda bulunamad�\n"
msgid "NOTE: secret key %08lX expired at %s\n"
msgstr "NOT: %08lX gizli anahtar�n�n %s tarihinde kullan�m s�resi doldu\n"
-#: g10/hkp.c:72
+#: g10/hkp.c:59
#, c-format
msgid "requesting key %08lX from %s ...\n"
msgstr "%s den %08lX anahtar� isteniyor ...\n"
-#: g10/hkp.c:85
+#: g10/hkp.c:72
#, c-format
msgid "can't get key from keyserver: %s\n"
msgstr "%s anahtar sunucusundan anahtar al�namad�\n"
-#: g10/hkp.c:109 g10/hkp.c:148
+#: g10/hkp.c:91 g10/hkp.c:125
msgid "no keyserver known (use option --keyserver)\n"
msgstr "anahtar sunucu bilinmiyor (--keyserver se�ene�i ile belirtin)\n"
-#: g10/hkp.c:117
+#: g10/hkp.c:99
#, c-format
msgid "%s: not a valid key ID\n"
msgstr "%s: ge�erli bir anahtar kimli�i de�il\n"
-#: g10/hkp.c:170
-#, c-format
-msgid "can't connect to `%s': %s\n"
-msgstr "\"%s\" sunucusuna ba�lan�lamad�: %s\n"
-
-#: g10/hkp.c:194
+#: g10/hkp.c:171
#, c-format
msgid "error sending to `%s': %s\n"
msgstr "\"%s\" sunucusuna g�nderme hatas�: %s\n"
-#: g10/hkp.c:206
+#: g10/hkp.c:183
#, c-format
msgid "success sending to `%s' (status=%u)\n"
msgstr "\"%s\" sunucusuna g�nderme i�lemi ba�ar�l� (durum=%u)\n"
-#: g10/hkp.c:209
+#: g10/hkp.c:186
#, c-format
msgid "failed sending to `%s': status=%u\n"
msgstr "\"%s\" sunucusuna g�nderme i�lemi ba�ar�s�z (durum=%u)\n"
@@ -2843,30 +2916,35 @@ msgstr "genel anahtar imzadan %lu saniye daha yeni\n"
msgid "public key is %lu seconds newer than the signature\n"
msgstr "genel anahtar imzadan %lu saniye daha yeni.\n"
-#: g10/sig-check.c:324
-#, c-format
-msgid "NOTE: signature key expired %s\n"
+#: g10/sig-check.c:328
+#, fuzzy, c-format
+msgid "NOTE: signature key %08lX expired %s\n"
msgstr "NOTE: imza anahtar�n�n kullan�m s�resi %s tarihinde dolmu�\n"
-#: g10/sig-check.c:393
+#: g10/sig-check.c:398
msgid "assuming bad signature due to an unknown critical bit\n"
msgstr "Hatal� imzan�n bilinmeyen bir kritik bitten kaynakland��� san�l�yor\n"
-#: g10/sign.c:140
+#: g10/sign.c:152
+#, fuzzy, c-format
+msgid "checking created signature failed: %s\n"
+msgstr "�mza kontrol edilemedi: %s\n"
+
+#: g10/sign.c:161
#, c-format
msgid "%s signature from: %s\n"
msgstr "%s imza: %s den\n"
-#: g10/sign.c:290 g10/sign.c:610
+#: g10/sign.c:307 g10/sign.c:630
#, c-format
msgid "can't create %s: %s\n"
msgstr "%s yarat�lamad�: %s\n"
-#: g10/sign.c:388
+#: g10/sign.c:405
msgid "signing:"
msgstr "imzalan�yor:"
-#: g10/sign.c:431
+#: g10/sign.c:448
#, c-format
msgid "WARNING: `%s' is an empty file\n"
msgstr "UYARI: \"%s\" dosyas� bo�\n"
@@ -2905,7 +2983,7 @@ msgstr "%s: eri�ilemedi: %s\n"
msgid "%s: directory does not exist!\n"
msgstr "%s: dizin yok!\n"
-#: g10/openfile.c:226 g10/openfile.c:295 g10/ringedit.c:1369 g10/tdbio.c:444
+#: g10/openfile.c:240 g10/openfile.c:307 g10/ringedit.c:1371 g10/tdbio.c:444
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: yarat�lamad�: %s\n"
@@ -3086,11 +3164,6 @@ msgstr "%08lX anahtar�: g�venceli anahtar i�in genel anahtar yok - atland�\n"
msgid "NOTE: secret key %08lX is NOT protected.\n"
msgstr "NOT: %08lX gizli anahtar� korunmu� DE��L.\n"
-#: g10/trustdb.c:577
-#, c-format
-msgid "key %08lX: secret key without public key - skipped\n"
-msgstr "%08lX anahtar�: genel anahtars�z gizli anahtar - atland�\n"
-
#: g10/trustdb.c:584
#, c-format
msgid "key %08lX: secret and public key don't match\n"
@@ -3302,7 +3375,7 @@ msgstr "\"%s\"in g�vence veritaban�na konulmas� ba�ar�s�z: %s\n"
msgid "WARNING: can't yet handle long pref records\n"
msgstr "UYARI: uzun �nayarlar kay�tlar� hen�z elde edilemedi\n"
-#: g10/verify.c:82
+#: g10/verify.c:108
msgid ""
"the signature could not be verified.\n"
"Please remember that the signature file (.sig or .asc)\n"
@@ -3312,7 +3385,7 @@ msgstr ""
"�mza dosyas�n�n (.sig veya .asc) komut sat�r�nda verilecek\n"
"ilk dosya olmas� gerekti�ini lutfen hat�r�n�zdan ��karmay�n.\n"
-#: g10/verify.c:147
+#: g10/verify.c:173
#, c-format
msgid "input line %u too long or missing LF\n"
msgstr "girdi sat�r� %u ya �ok uzun ya da sonunda LF yok\n"
@@ -3322,40 +3395,50 @@ msgstr "girdi sat�r� %u ya �ok uzun ya da sonunda LF yok\n"
msgid "%s: can't create keyring: %s\n"
msgstr "%s: anahtar demeti yarat�lamad�: %s\n"
-#: g10/ringedit.c:319 g10/ringedit.c:1374
+#: g10/ringedit.c:319 g10/ringedit.c:1376
#, c-format
msgid "%s: keyring created\n"
msgstr "%s: anahtar demeti yarat�ld�\n"
-#: g10/ringedit.c:1551
+#: g10/ringedit.c:1557
msgid "WARNING: 2 files with confidential information exists.\n"
msgstr "UYARI: gizli bilgilerle 2 dosya mevcut.\n"
-#: g10/ringedit.c:1552
+#: g10/ringedit.c:1558
#, c-format
msgid "%s is the unchanged one\n"
msgstr "%s de�i�meyen\n"
-#: g10/ringedit.c:1553
+#: g10/ringedit.c:1559
#, c-format
msgid "%s is the new one\n"
msgstr "%s yeni\n"
-#: g10/ringedit.c:1554
+#: g10/ringedit.c:1560
msgid "Please fix this possible security flaw\n"
msgstr "Lutfen bu g�venlik �atla��n� giderin\n"
-#: g10/skclist.c:88 g10/skclist.c:125
+#: g10/skclist.c:110 g10/skclist.c:166
msgid "key is not flagged as insecure - can't use it with the faked RNG!\n"
msgstr ""
"anahtar g�venli olarak i�aretlenmemi� - onu sahte RNG ile kullanmay�n!\n"
-#: g10/skclist.c:113
+#: g10/skclist.c:138
+#, fuzzy, c-format
+msgid "skipped `%s': duplicated\n"
+msgstr "\"%s\" atland�: %s\n"
+
+#: g10/skclist.c:145 g10/skclist.c:153
#, c-format
msgid "skipped `%s': %s\n"
msgstr "\"%s\" atland�: %s\n"
-#: g10/skclist.c:119
+#: g10/skclist.c:149
+#, fuzzy
+msgid "skipped: secret key already present\n"
+msgstr "%s: atland�: genel anahtar zaten mevcut\n"
+
+#: g10/skclist.c:160
#, c-format
msgid ""
"skipped `%s': this is a PGP generated ElGamal key which is not secure for "
@@ -3383,31 +3466,31 @@ msgstr "%s: bilinmeyen sonek\n"
msgid "Enter new filename"
msgstr "Yeni dosya ismini girin"
-#: g10/openfile.c:182
+#: g10/openfile.c:184
msgid "writing to stdout\n"
msgstr "standard ��kt�ya yaz�yor\n"
-#: g10/openfile.c:261
+#: g10/openfile.c:273
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "\"%s\" i�indeki veri imzal� san�l�yor\n"
-#: g10/openfile.c:311
+#: g10/openfile.c:323
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: yeni se�enekler dosyas� yarat�ld�\n"
-#: g10/openfile.c:338
+#: g10/openfile.c:350
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: dizin yarat�lamad�: %s\n"
-#: g10/openfile.c:341
+#: g10/openfile.c:353
#, c-format
msgid "%s: directory created\n"
msgstr "%s: dizin yarat�ld�\n"
-#: g10/openfile.c:343
+#: g10/openfile.c:355
msgid "you have to start GnuPG again, so it can read the new options file\n"
msgstr ""
"Yeni se�enekler dosyas�n�n okunabilmesi i�in GnuPG yeniden ba�lat�lmal�d�r\n"
@@ -3427,6 +3510,11 @@ msgid ""
"WARNING: message was encrypted with a weak key in the symmetric cipher.\n"
msgstr "UYARI: ileti simetrik �ifre i�indeki zay�f bir anahtarla �ifrelendi.\n"
+#: g10/encr-data.c:97
+#, fuzzy
+msgid "problem handling encrypted packet\n"
+msgstr "�ifreli paketlerin anahtar-kimlik alanlar�n� kurar"
+
#: g10/seskey.c:52
msgid "weak key created - retrying\n"
msgstr "zay�f anahtar yarat�ld� - yeniden deneniyor\n"
@@ -3438,14 +3526,6 @@ msgstr ""
"simetrik �ifre i�in zay�f anahtar�n �nlenmesi m�mk�n olamad�: %d kere "
"denendi!\n"
-#: g10/delkey.c:94
-msgid "there is a secret key for this public key!\n"
-msgstr "Bu genel anahtar i�in bir gizli anahtar var!\n"
-
-#: g10/delkey.c:96
-msgid "use option \"--delete-secret-key\" to delete it first.\n"
-msgstr "silmek i�in \"--delete-secret-key\" se�ene�ini �nce kullan�n.\n"
-
#: g10/delkey.c:114
msgid "can't do that in batchmode without \"--yes\"\n"
msgstr "�nceden belirlenmi� i�lemler kipinde \"--yes\" olmaks�z�n yap�lamaz\n"
@@ -3458,6 +3538,14 @@ msgstr "Bu anahtar, anahtar demetinden silinsin mi? "
msgid "This is a secret key! - really delete? "
msgstr "Bu bir gizli anahtar! - ger�ekten silinecek mi? "
+#: g10/delkey.c:181
+msgid "there is a secret key for this public key!\n"
+msgstr "Bu genel anahtar i�in bir gizli anahtar var!\n"
+
+#: g10/delkey.c:183
+msgid "use option \"--delete-secret-key\" to delete it first.\n"
+msgstr "silmek i�in \"--delete-secret-key\" se�ene�ini �nce kullan�n.\n"
+
#: g10/helptext.c:47
msgid ""
"It's up to you to assign a value here; this value will never be exported\n"
@@ -3719,3 +3807,21 @@ msgstr "yard�m taze bitti"
#, c-format
msgid "No help available for `%s'"
msgstr "\"%s\" i�in yard�m taze bitti"
+
+#~ msgid "RSA key cannot be used in this version\n"
+#~ msgstr "Bu s�r�mde RSA anahtar� kullan�lamaz\n"
+
+#~ msgid "No key for user ID\n"
+#~ msgstr "�zg�n dizi i�in anahtar yok\n"
+
+#~ msgid "No user ID for key\n"
+#~ msgstr "Anahtar i�in �zg�n dizi yok\n"
+
+#~ msgid "invalid"
+#~ msgstr "ge�ersiz"
+
+#~ msgid "revoked"
+#~ msgstr "y�r�rl�kten kald�r�ld�"
+
+#~ msgid "no secret key for decryption available\n"
+#~ msgstr "�ifre ��zme i�in kullan��l� bir gizli anahtar yok\n"