aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2006-02-14 18:39:24 +0000
committerWerner Koch <[email protected]>2006-02-14 18:39:24 +0000
commit820225458175ed521bd83143fe7aa176d57801e4 (patch)
tree8229b747a419b5d0cbd6d85f0af9b80f6ff8e329
parentThis commit was manufactured by cvs2svn to create tag 'V1-4-2'. (diff)
downloadgnupg-820225458175ed521bd83143fe7aa176d57801e4.tar.gz
gnupg-820225458175ed521bd83143fe7aa176d57801e4.zip
Security fixV1-4-2
-rw-r--r--ChangeLog4
-rw-r--r--NEWS17
-rw-r--r--checks/Makefile.am2
-rwxr-xr-xchecks/verify.test11
-rw-r--r--configure.ac2
-rw-r--r--doc/DETAILS4
-rw-r--r--g10/mainproc.c16
-rw-r--r--g10/verify.c2
-rw-r--r--include/errors.h1
-rw-r--r--po/be.po110
-rw-r--r--po/ca.po110
-rw-r--r--po/cs.po110
-rw-r--r--po/da.po110
-rw-r--r--po/de.po110
-rw-r--r--po/el.po110
-rw-r--r--po/eo.po110
-rw-r--r--po/es.po110
-rw-r--r--po/et.po110
-rw-r--r--po/fi.po110
-rw-r--r--po/fr.po110
-rw-r--r--po/gl.po110
-rw-r--r--po/hu.po110
-rw-r--r--po/id.po110
-rw-r--r--po/it.po110
-rw-r--r--po/ja.po110
-rw-r--r--po/pl.po110
-rw-r--r--po/pt.po110
-rw-r--r--po/pt_BR.po110
-rw-r--r--po/ro.po110
-rw-r--r--po/ru.po110
-rw-r--r--po/sk.po110
-rw-r--r--po/sv.po110
-rw-r--r--po/tr.po110
-rw-r--r--po/zh_CN.po110
-rw-r--r--po/zh_TW.po110
-rw-r--r--tools/mk-tdata.c45
-rw-r--r--util/errors.c1
37 files changed, 1649 insertions, 1316 deletions
diff --git a/ChangeLog b/ChangeLog
index e818baf0b..08b8117f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-02-14 Werner Koch <[email protected]>
+
+ Released 1.4.2.1.
+
2005-07-26 Werner Koch <[email protected]>
Released 1.4.2.
diff --git a/NEWS b/NEWS
index 44fb5a573..85a66eb51 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+Noteworthy changes in version 1.4.2.1 (2006-02-14)
+--------------------------------------------------
+
+ * Security fix for a verification weakness in gpgv. Some input
+ could lead to gpgv exiting with 0 even if the detached signature
+ file did not carry any signature. This is not as fatal as it
+ might seem because the suggestion as always been not to rely on
+ th exit code but to parse the --status-fd messages. However it
+ is likely that gpgv is used in that simplified way and thus we
+ do this release. Same problem with "gpg --verify" but nobody
+ should have used this for signature verification without
+ checking the status codes anyway. Thanks to the taviso from
+ Gentoo for reporting this problem.
+
+
Noteworthy changes in version 1.4.2 (2005-07-26)
------------------------------------------------
@@ -1788,7 +1803,7 @@ Noteworthy changes in version 0.2.3
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
- 2005 Free Software Foundation, Inc.
+ 2005, 2006 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
diff --git a/checks/Makefile.am b/checks/Makefile.am
index d240b955b..bd62bc770 100644
--- a/checks/Makefile.am
+++ b/checks/Makefile.am
@@ -30,7 +30,7 @@ TESTS = version.test mds.test \
armsignencrypt.test armdetach.test \
armdetachm.test detachm.test genkey1024.test \
conventional.test conventional-mdc.test \
- multisig.test
+ multisig.test verify.test
TEST_FILES = pubring.asc secring.asc plain-1o.asc plain-2o.asc plain-3o.asc \
diff --git a/checks/verify.test b/checks/verify.test
new file mode 100755
index 000000000..af93f3d79
--- /dev/null
+++ b/checks/verify.test
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+. $srcdir/defs.inc || exit 3
+
+#info check that verify fails for bad input data
+../tools/mk-tdata --char 0x2d 64 >x
+$GPG --verify x data-500 && error "no error code from verify"
+../tools/mk-tdata --char 0xca 64 >x
+$GPG --verify x data-500 && error "no error code from verify"
+
+exit 0
diff --git a/configure.ac b/configure.ac
index ef9370089..d655e23ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,7 +26,7 @@ min_automake_version="1.9.3"
# Remember to change the version number immediately *after* a release
# and remove the "-cvs" or "rc" suffix immediately *before* a release.
-AC_INIT(gnupg, 1.4.2, [email protected])
+AC_INIT(gnupg, 1.4.2.1, [email protected])
# Set development_version to yes if the minor number is odd or you
# feel that the default check for a development version is not
# sufficient.
diff --git a/doc/DETAILS b/doc/DETAILS
index 01083eed0..4b5ca9b9c 100644
--- a/doc/DETAILS
+++ b/doc/DETAILS
@@ -270,7 +270,9 @@ more arguments in future versions.
No data has been found. Codes for what are:
1 - No armored data.
2 - Expected a packet but did not found one.
- 3 - Invalid packet found, this may indicate a non OpenPGP message.
+ 3 - Invalid packet found, this may indicate a non OpenPGP
+ message.
+ 4 - signature expected but not found
You may see more than one of these status lines.
UNEXPECTED <what>
diff --git a/g10/mainproc.c b/g10/mainproc.c
index 74d626543..279882006 100644
--- a/g10/mainproc.c
+++ b/g10/mainproc.c
@@ -1,6 +1,6 @@
/* mainproc.c - handle packets
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
- * 2005 Free Software Foundation, Inc.
+ * 2005, 2006 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@@ -77,6 +77,7 @@ struct mainproc_context {
int op;
int stop_now;
} pipemode;
+ int any_sig_seen; /* Set to true if a signature packet has been seen. */
};
@@ -217,6 +218,7 @@ add_signature( CTX c, PACKET *pkt )
{
KBNODE node;
+ c->any_sig_seen = 1;
if( pkt->pkttype == PKT_SIGNATURE && !c->list ) {
/* This is the first signature for the following datafile.
* GPG does not write such packets; instead it always uses
@@ -1137,6 +1139,18 @@ proc_signature_packets( void *anchor, IOBUF a,
c->signed_data = signedfiles;
c->sigfilename = sigfilename;
rc = do_proc_packets( c, a );
+
+ /* If we have not encountered any signature we print an error
+ messages, send a NODATA status back and return an error code.
+ Using log_error is required becuase verify_files does not check
+ error codes for each file but we want to terminate the process
+ with an error. */
+ if (!rc && !c->any_sig_seen)
+ {
+ write_status_text (STATUS_NODATA, "4");
+ log_error (_("no signature found\n"));
+ rc = G10ERR_NO_DATA;
+ }
m_free( c );
return rc;
}
diff --git a/g10/verify.c b/g10/verify.c
index a08a71291..4a58557f6 100644
--- a/g10/verify.c
+++ b/g10/verify.c
@@ -113,7 +113,7 @@ verify_signatures( int nfiles, char **files )
rc = proc_signature_packets( NULL, fp, sl, sigfile );
free_strlist(sl);
iobuf_close(fp);
- if( afx.no_openpgp_data && rc == -1 ) {
+ if( (afx.no_openpgp_data && rc == -1) || rc == G10ERR_NO_DATA ) {
log_error(_("the signature could not be verified.\n"
"Please remember that the signature file (.sig or .asc)\n"
"should be the first file given on the command line.\n") );
diff --git a/include/errors.h b/include/errors.h
index a42d402ef..177353b7e 100644
--- a/include/errors.h
+++ b/include/errors.h
@@ -78,6 +78,7 @@
#define G10ERR_KEYSERVER 55
#define G10ERR_CANCELED 56
#define G10ERR_NO_CARD 57
+#define G10ERR_NO_DATA 58
#ifndef HAVE_STRERROR
char *strerror (int n);
diff --git a/po/be.po b/po/be.po
index bc85bfb00..d24a2dfca 100644
--- a/po/be.po
+++ b/po/be.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2003-10-30 16:35+0200\n"
"Last-Translator: Ales Nyakhaychyk <[email protected]>\n"
"Language-Team: Belarusian <[email protected]>\n"
@@ -818,12 +818,12 @@ msgstr ""
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr ""
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr ""
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr ""
@@ -3029,7 +3029,7 @@ msgstr ""
msgid "created: %s"
msgstr "памылка чытаньня файла"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "памылка чытаньня файла"
@@ -3041,7 +3041,7 @@ msgstr "збой падпісаньня: %s\n"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr "збой падпісаньня: %s\n"
@@ -3080,12 +3080,12 @@ msgid ""
msgstr ""
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr ""
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr ""
@@ -3985,204 +3985,209 @@ msgstr ""
msgid "refreshing %d keys from %s\n"
msgstr ""
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr ""
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr ""
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "грамадскі ключ ня знойдзены"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr ""
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "%u-бітавы %s ключ, ID %08lX, створаны %s"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr ""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "Паўтарыце пароль\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr ""
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, fuzzy, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "Паўтарыце пароль\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
#, fuzzy
msgid "encrypted with 1 passphrase\n"
msgstr "Паўтарыце пароль\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr ""
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr ""
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr ""
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr ""
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr ""
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr ""
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr ""
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr ""
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Подпіс створаны ў %.*s з выкарыстаньнем %s ID ключа %08lX\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr ""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Подпіс створаны ў %.*s з выкарыстаньнем %s ID ключа %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
#, fuzzy
msgid "Key available at: "
msgstr "Даведка адсутнічае"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr ""
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr ""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr ""
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr ""
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, fuzzy, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr ""
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr ""
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
#, fuzzy
msgid "unknown"
msgstr "невядомая вэрсыя"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr ""
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr ""
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr ""
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr ""
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr ""
@@ -5627,6 +5632,11 @@ msgstr "скасавана карыстальнікам\n"
msgid "no card"
msgstr ""
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "зашыфраваць даньні"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index b95af0ca0..3d4f0b414 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -27,7 +27,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.0\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-02-04 02:04+0100\n"
"Last-Translator: Jordi Mallach <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
@@ -882,12 +882,12 @@ msgstr "no podeu usar %s mentre esteu en mode %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s xifrat per a: «%s»\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "dades xifrades amb %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "xifrat amb l'algoritme %d (desconegut)\n"
@@ -3349,7 +3349,7 @@ msgstr " (sensible)"
msgid "created: %s"
msgstr "no s'ha pogut creat %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[revocada]"
@@ -3361,7 +3361,7 @@ msgstr " [caduca: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [caduca: %s]"
@@ -3402,13 +3402,13 @@ msgstr ""
"correcta a no ser que torneu a executar el programa.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[revocada]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4398,209 +4398,214 @@ msgstr "s'està sol·licitant la clau %08lX de %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "s'està sol·licitant la clau %08lX de %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "mida extranya per a una clau de sessió xifrada (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "clau de sessió xifrada amb %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "xifrat amb l'algoritme %d (desconegut)\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "la clau pública és %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "dades xifrades amb clau pública: bona clau de xifratge (DEK)\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "xifrat amb una clau %2$s de %1$u bits, ID %3$08lX, creada en %4$s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr ""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "xifrat amb una clau %s, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "ha fallat el desxifratge amb la clau pública: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "xifrat amb %lu contrasenyes\n"
# FIXME WK: Use ngettext
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "xifrat amb 1 contrasenya\n"
# I no serà «dades xifrades amb %s»? ivb
# Sembla que sí, ho marque per a mirar-ho més endavant. jm
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "s'assumeixen dades xifrades amb %s\n"
# L'optimístic és aquell que té una Fe Cega en que Tot Anirà Bé! ivb
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"El xifratge IDEA no està disponible, s'intentarà utilitzar optimistament %s "
"en el seu lloc\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "desxifratge correcte\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "AVÍS: el missatge no tenia protecció d'integritat\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "AVÍS: el missatge xifrat ha estat manipulat!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "ha fallat el desxifratge: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: el remitent ha sol·licitat \"alt secret\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nom del fitxer original='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revocació autònoma: useu \"gpg --import\" per a aplicar-la\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Signatura correcta de \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "s'ha eliminat la verificació de signatura\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "no es poden tractar aquestes signatures múltiples\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Aquesta signatura va caducar el %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
# «%.*s» no serà una data? Caldrà «el» al davant. ivb
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Signatura creada el %.*s usant una clau %s ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "La clau és disponible en: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "Signatura INCORRECTA de \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Signatura caducada de \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Signatura correcta de \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[incert]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Aquesta signatura va caducar el %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Aquesta signatura caduca el %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "signatura %s, algorisme de resum %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binari"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "mode text"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "desconeguda"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "No s'ha pogut comprovar la signatura: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "no és una signatura separada\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"AVÍS: s'han detectat múltiples signatures. Només es comprovarà la primera.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "signatura autònoma de classe 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "signatura de l'estil antic (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "s'ha detectat un paquet arrel invàlid en proc_tree()\n"
@@ -6193,6 +6198,11 @@ msgstr "Cancel·la"
msgid "no card"
msgstr "no és xifrat"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "no hi ha dades signades\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 06b75cc94..d372659d2 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.3.92\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-11-26 09:12+0200\n"
"Last-Translator: Roman Pavlik <[email protected]>\n"
"Language-Team: Czech <[email protected]>\n"
@@ -818,12 +818,12 @@ msgstr "pou�it� %s nen� v m�du %s dovoleno\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s za�ifrovan� pro: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s za�ifrovan� data\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "za�ifrov�no nezn�m�m algoritmem %d\n"
@@ -3184,7 +3184,7 @@ msgstr "(citliv� informace)"
msgid "created: %s"
msgstr "vytvo�en: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "revokov�n: %s"
@@ -3196,7 +3196,7 @@ msgstr "platnost skon�ila: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "platnost skon��: %s"
@@ -3237,12 +3237,12 @@ msgstr ""
"b�t nutn� spr�vn�, dokud znova nespust�te program.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "revokov�n"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "platnost skon�ila"
@@ -4181,208 +4181,213 @@ msgstr "aktualizuji 1 kl�� z %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "aktualizuji %d kl��� z %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "podivn� velikost �ifrovac�ho kl��e pro sezen� (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s za�ifrovan� kl�� sezen�\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "heslo (passphraze) generov�no s pou�it�m nezn�m�ho algoritmu %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "ve�ejn� kl�� je %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "data za�ifrov�na ve�ejn�m kl��em: spr�vn� DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "za�ifrov�na %u-bitov�m %s kl��em, ID %s, vytvo�en�m %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
# [kw]
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "za�ifrov�no %s kl��em, ID %s\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "de�ifrov�n� ve�ejn�m kl��em selhalo: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "za�ifrov�no s heslem %lu\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "za�ifrov�no jedn�m heslem\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "p�edpokl�d�m %s �ifrovan�ch dat\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"algoritmus IDEA nen� dostupn�; optimisticky se jej pokus�me nahradit "
"algoritmem %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "de�ifrov�n� o.k.\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "VAROV�N�: zpr�va nebyla chr�n�na proti poru�en� jej� integrity\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "VAROV�N�: se za�ifrovanou zpr�vou bylo manipulov�no!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "de�ifrov�n� selhalo: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "POZN�MKA: odes�latel po�adoval (\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "p�vodn� jm�no souboru='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"samostatn� revoka�n� certifik�t - pou�ijte \"gpg --import\", chcete-li jej "
"u��t\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Dobr� podpis od \"%s\""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verifikace podpisu potla�ena\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "neum�m pracovat s t�mito n�sobn�mi podpisy\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "Podpis vytvo�en %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " pou�it� %s kl��e %s\n"
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Podpis vytvo�en %s pomoc� kl��e %s s ID u�ivatele %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Kl�� k dispozici na: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "�PATN� podpis od \"%s\""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "Podpis s vypr�enou platnost� od \"%s\""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "Dobr� podpis od \"%s\""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[nejist�]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " alias \"%s\""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Platnost podpisu skon�ila %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Platnost podpisu skon�� %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "podpis %s, hashovac� algoritmus %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "bin�rn� form�t"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "textov� form�t"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "nezn�m� form�t"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nemohu ov��it podpis: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "toto nen� podpis odd�len� od dokumentu\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "VAROV�N�: detekov�no v�ce podpis�. Kontrolov�n bude pouze prvn�.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "samostatn� podpis t��dy 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "podpis star�ho typu (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "nalezen neplatn� ko�enov� paket v proc_tree()\n"
@@ -5877,6 +5882,11 @@ msgstr "zru�eno"
msgid "no card"
msgstr "��dn� karta"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "chyb� podepsan� data\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "CHYBA: "
diff --git a/po/da.po b/po/da.po
index d6d1a9c6b..97052e11a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.0h\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2003-12-03 16:11+0100\n"
"Last-Translator: Birger Langkjer <[email protected]>\n"
"Language-Team: Danish <[email protected]>\n"
@@ -844,12 +844,12 @@ msgstr ""
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s krypteret for: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr ""
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr ""
@@ -3113,7 +3113,7 @@ msgstr ""
msgid "created: %s"
msgstr "kan ikke oprette %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "tilf�j n�gle"
@@ -3125,7 +3125,7 @@ msgstr "N�gle udl�ber d. %s\n"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr "N�gle udl�ber d. %s\n"
@@ -3164,13 +3164,13 @@ msgid ""
msgstr ""
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "tilf�j n�gle"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "udl�b"
@@ -4103,207 +4103,212 @@ msgstr "import�r n�gler fra en n�gleserver: %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "import�r n�gler fra en n�gleserver: %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr ""
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, fuzzy, c-format
msgid "%s encrypted session key\n"
msgstr "%s/%s krypteret for: %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "ukendt cifferalgoritme "
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "Offentlig n�gle er sl�et fra.\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr ""
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "Gentag kodes�tning: "
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "Gentag kodes�tning: "
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr ""
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, fuzzy, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "Gentag kodes�tning: "
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
#, fuzzy
msgid "encrypted with 1 passphrase\n"
msgstr "Gentag kodes�tning: "
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, fuzzy, c-format
msgid "assuming %s encrypted data\n"
msgstr "krypt�r data"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr ""
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
#, fuzzy
msgid "WARNING: message was not integrity protected\n"
msgstr "ADVARSEL: intet blev eksporteret\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr ""
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr ""
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr ""
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "God signatur fra \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr ""
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
#, fuzzy
msgid "can't handle these multiple signatures\n"
msgstr "opret en separat signatur"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Denne n�gle er ikke beskyttet.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr ""
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
#, fuzzy
msgid "Key available at: "
msgstr "Ingen hj�lp tilg�ngelig"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "D�RLIG signatur fra \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "God signatur fra \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "God signatur fra \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr ""
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, fuzzy, c-format
msgid "Signature expired %s\n"
msgstr "Denne n�gle er ikke beskyttet.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, fuzzy, c-format
msgid "Signature expires %s\n"
msgstr "Denne n�gle er ikke beskyttet.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, fuzzy, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s signatur fra: %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr ""
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr ""
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
#, fuzzy
msgid "unknown"
msgstr "ukendt version"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Kan ikke tjekke signatur: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
#, fuzzy
msgid "not a detached signature\n"
msgstr "opret en separat signatur"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr ""
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "gammeldags (PGP 2.x) signatur\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr ""
@@ -5783,6 +5788,11 @@ msgstr ""
msgid "no card"
msgstr "ikke krypteret"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "krypt�r data"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/de.po b/po/de.po
index df3a53777..b82db007c 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.4.1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-07-26 20:42+0200\n"
"Last-Translator: Walter Koch <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
@@ -833,12 +833,12 @@ msgstr "Die Benutzung von %s ist im %s-Modus nicht erlaubt.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s verschl�sselt f�r: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s verschl�sselte Daten\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "Mit unbekanntem Verfahren verschl�sselt %d\n"
@@ -3292,7 +3292,7 @@ msgstr "(empfindlich)"
msgid "created: %s"
msgstr "%s kann nicht erzeugt werden: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[widerrufen]"
@@ -3304,7 +3304,7 @@ msgstr " [verf�llt: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [verf�llt: %s]"
@@ -3345,13 +3345,13 @@ msgstr ""
"Schl�sselg�ltigkeit nicht notwendigerweise korrekt ist.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[widerrufen]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4324,208 +4324,213 @@ msgstr "Schl�ssel %08lX wird von %s angefordert\n"
msgid "refreshing %d keys from %s\n"
msgstr "Schl�ssel %08lX wird von %s angefordert\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "Seltsame L�nge f�r einen verschl�sselten Sitzungsschl�ssel (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s verschl�sselter Sitzungsschl�ssel\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "Passphrase wurde mit unbekanntem Hashverfahren %d erstellt\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "�ffentlicher Schl�ssel ist %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "Mit �ffentlichem Sch�ssel verschl�sselte Daten: Korrekte DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "verschl�sselt mit %u-Bit %s Schl�ssel, ID %08lX, erzeugt %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
# [kw]
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "verschl�sselt mit %s Schl�ssel, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "Entschl�sselung mit �ffentlichem Schl�ssel fehlgeschlagen: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "Verschl�sselt mit %lu Passphrases\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "Verschl�sselt mit einer Passphrase\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "vermutlich %s-verschl�sselte Daten\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "IDEA-Verschl�sselung nicht verf�gbar; versucht wird stattdessen %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "Entschl�sselung erfolgreich\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr ""
"WARNUNG: Botschaft wurde nicht integrit�tsgesch�tzt (integrity protected)\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "Warnung: Verschl�sselte Botschaft ist manipuliert worden!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "Entschl�sselung fehlgeschlagen: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr ""
"Hinweis: Der Absender verlangte Vertraulichkeit(\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "Urspr�nglicher Dateiname='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"Einzelner Widerruf - verwenden Sie \"gpg --import\" um ihn anzuwenden\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Korrekte Unterschrift von \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "Unterschriften-�berpr�fung unterdr�ckt\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "diese Mehrfachunterschriften k�nnen nicht behandelt werden\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Diese Unterschrift ist seit %s verfallen.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Unterschrift vom %.*s, %s Schl�ssel ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Schl�ssel erh�ltlich bei: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "FALSCHE Unterschrift von \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Verfallene Unterschrift von \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Korrekte Unterschrift von \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[ungewi�] "
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Diese Unterschrift ist seit %s verfallen.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Diese Unterschrift verf�llt am %s.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s Unterschrift, Hashmethode \"%s\"\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "Bin�re"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "Textmodus"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "unbekannt"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Unterschrift kann nicht gepr�ft werden: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "keine abgetrennte Unterschrift\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"WARNUNG: Mehrfache Signaturen erkannt. Es wird nur die erste gepr�ft.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "Einzelne Unterschrift der Klasse 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "Unterschrift nach alter (PGP 2.x) Art\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "ung�ltiges root-Paket in proc_tree() entdeckt\n"
@@ -6092,6 +6097,11 @@ msgstr "Abbruch"
msgid "no card"
msgstr "keine Karte"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "keine unterschriebene Daten\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "FEHLER: "
diff --git a/po/el.po b/po/el.po
index cb6b5c4dd..63dd5d22a 100644
--- a/po/el.po
+++ b/po/el.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.1.92\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2003-06-27 12:00+0200\n"
"Last-Translator: Dokianakis Theofanis <[email protected]>\n"
"Language-Team: Greek <[email protected]>\n"
@@ -856,12 +856,12 @@ msgstr "����������� � ����� ��� %s ���� ��������� %s.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s ��������������� ���: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s ��������������� ��������\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "��������������� �� ������� ��������� %d\n"
@@ -3283,7 +3283,7 @@ msgstr " (���������)"
msgid "created: %s"
msgstr "�������� ����������� ��� %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[����������]"
@@ -3295,7 +3295,7 @@ msgstr " [�����: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [�����: %s]"
@@ -3336,13 +3336,13 @@ msgstr ""
"����� ��� ��� �������������� �� ���������.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[����������]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4320,204 +4320,209 @@ msgstr "������ �������� %08lX ��� �� %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "������ �������� %08lX ��� �� %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "�������� ������� ��� ��� ������ ���������������� ��������� (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s ������ ���������������� ��������\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "��������������� �� ������� ��������� %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "������� ������ ����� %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "��������������� �������� �� ������� ������: ���� DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "��������������� �� %u-bit %s ������, ID %08lX, ������������� %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " ������ ��� \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "��������������� �� %s key, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "������������� �� ������� ������ �������: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "��������������� �� %lu ������� �������\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "��������������� �� 1 ����� ������\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "������� %s ���������������� ���������\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"��������������� IDEA �� ����������, ��������� ���������� ������ ���\n"
"%s ��������\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "���������������� OK\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "�������������: ��� ������������� � ����������� ��� ��������\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "�������������: �� ��������������� ������ ���� ���������!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "���������������� �������: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "��������: � ���������� ������ \"���-��-�����-���-����\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "������ ����� �������='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "���������� �������� - ��������������� \"gpg --import\" ��� ��������\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "���� �������� ��� \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "��������� ��������� ���������\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "�������� ��������� ����� ��� ��������� ���������\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "�������� ����� ���� %s.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " ������ ��� \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "�������� ����� ��� %.*s �� ����� ��� ��������%s ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "������ ��������� ���: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "���� �������� ��� \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "������� �������� ��� \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "���� �������� ��� \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[�������]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " ������ ��� \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "�������� ����� ���� %s.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "�������� ����� ���� %s.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s ��������, ���������� ��������� %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "�������"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "���������-��������"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "�������"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "�������� ������� ��� ���������: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "��� ����� ���������� ��������\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"�������������: ���������� ��������� ���������. ���� � ����� �� ��������.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "���������� �������� ������ 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "�������� ������ ���� (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "�� ������ ������(root) ������ ����������� ��� proc_tree()\n"
@@ -6057,6 +6062,11 @@ msgstr "�������"
msgid "no card"
msgstr "�� ���������������"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "��� �������� ������������� ��������\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/eo.po b/po/eo.po
index 25c341e6d..fdfdad038 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.0.6d\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2002-04-14 14:33+0100\n"
"Last-Translator: Edmund GRIMLEY EVANS <[email protected]>\n"
"Language-Team: Esperanto <[email protected]>\n"
@@ -845,12 +845,12 @@ msgstr "Tiu komando ne eblas en la re�imo %s.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s-�ifrita por: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s-�ifritaj datenoj\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "�ifrita per nekonata metodo %d\n"
@@ -3258,7 +3258,7 @@ msgstr " (sentema)"
msgid "created: %s"
msgstr "ne povas krei %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "rev"
@@ -3270,7 +3270,7 @@ msgstr " [eksvalidi�os: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [eksvalidi�os: %s]"
@@ -3309,13 +3309,13 @@ msgid ""
msgstr ""
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "rev"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "eksval"
@@ -4288,206 +4288,211 @@ msgstr "petas la �losilon %08lX de HKP-�losilservilo %s ...\n"
msgid "refreshing %d keys from %s\n"
msgstr "petas la �losilon %08lX de HKP-�losilservilo %s ...\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr ""
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, fuzzy, c-format
msgid "%s encrypted session key\n"
msgstr "%s-�ifritaj datenoj\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "�ifrita per nekonata metodo %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "publika �losilo estas %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "publik�losile �ifritaj datenoj: bona DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "�ifrita per %u-bita %s-�losilo, %08lX, kreita je %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alinome \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "�ifrita per %s-�losilo, %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "publik�losila mal�ifrado malsukcesis: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, fuzzy, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "Ripetu pasfrazon\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
#, fuzzy
msgid "encrypted with 1 passphrase\n"
msgstr "Ripetu pasfrazon\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "supozas %s �ifritajn datenojn\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "�ifro IDEA ne disponata, optimisme provas uzi %s anstata�e\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "mal�ifrado sukcesis\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
#, fuzzy
msgid "WARNING: message was not integrity protected\n"
msgstr "AVERTO: nenio estis eksportita\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "AVERTO: �ifrita mesa�o estis manipulita!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "mal�ifrado malsukcesis: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTO: sendinto petis konfidencon (\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "originala dosiernomo='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "memstara revoko - uzu \"gpg --import\" por apliki �in\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Bona subskribo de \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "kontrolo de subskribo estas mal�altita\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "ne povas trakti �i tiujn pluroblajn subskribojn\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "�i tiu �losilo eksvalidi�os je %s.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alinome \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Subskribo farita je %.*s per %s, �losilo %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
#, fuzzy
msgid "Key available at: "
msgstr "Nenia helpo disponata"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "MALBONA subskribo de \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Eksvalidi�inta subskribo de \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Bona subskribo de \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[malcerta]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alinome \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, fuzzy, c-format
msgid "Signature expired %s\n"
msgstr "�i tiu �losilo eksvalidi�os je %s.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, fuzzy, c-format
msgid "Signature expires %s\n"
msgstr "�i tiu �losilo eksvalidi�os je %s.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, fuzzy, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s-subskribo de: %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
#, fuzzy
msgid "binary"
msgstr "�efa"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr ""
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
#, fuzzy
msgid "unknown"
msgstr "nekonata versio"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Ne povas kontroli subskribon: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "ne aparta subskribo\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "memstara subskribo de klaso 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "malnovstila subskribo (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "nevalida radikpaketo trovita en proc_tree()\n"
@@ -5997,6 +6002,11 @@ msgstr "nuligita de uzanto\n"
msgid "no card"
msgstr "ne �ifrita"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "mankas subskribitaj datenoj\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/es.po b/po/es.po
index 56ad8e071..2b921a6d1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU gnupg 1.4.1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-03-25 16:50+0100\n"
"Last-Translator: Jaime Su�rez <[email protected]>\n"
"Language-Team: Spanish <[email protected]>\n"
@@ -830,12 +830,12 @@ msgstr "no puede usar %s en modo %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s cifrado para: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "datos cifrados %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "cifrado con algoritmo desconocido %d\n"
@@ -3186,7 +3186,7 @@ msgstr "(confidencial)"
msgid "created: %s"
msgstr "creado: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "revocada: %s"
@@ -3198,7 +3198,7 @@ msgstr "caduc�: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "caduca: %s"
@@ -3239,12 +3239,12 @@ msgstr ""
"correcta a menos de que reinicie el programa.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "revocada"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "caducada"
@@ -4191,202 +4191,207 @@ msgstr "renovando 1 clave de %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "renovando %d claves desde %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "tama�o anormal para una clave de sesi�n cifrada (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s clave de sesi�n cifrada\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "frase contrase�a generada con algoritmo de resumen desconocido %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "la clave p�blica es %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "datos cifrados con la clave p�blica: DEK correcta\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "cifrado con clave %2$s de %1$u bits, ID %3$s, creada el %4$s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "cifrado con clave %s, ID %s\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descifrado de la clave p�blica fallido: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "cifrado con %lu frases contrase�a\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "cifrado con 1 frase contrase�a\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "suponiendo %s datos cifrados\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"cifrado IDEA no disponible, confiadamente intentamos usar %s en su lugar\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "descifrado correcto\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "ATENCI�N: la intgridad del mensaje no est� protegida\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATENCI�N: �el mensaje cifrado ha sido manipulado!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "descifrado fallido: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: el remitente solicit� \"s�lo-para-tus-ojos\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nombre fichero original='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revocaci�n independiente - use \"gpg --import\" para aplicarla\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Firma correcta de \"%s\""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "suprimida la verificaci�n de la firma\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "no se puede trabajar con firmas m�ltiples\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "Firmado el %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " usando %s clave %s\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Firmado el %s usando clave %s ID %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Clave disponible en: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "Firma INCORRECTA de \"%s\""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "Firma caducada de \"%s\""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "Firma correcta de \"%s\""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[incierto]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " alias \"%s\""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Firma caducada en %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "La firma caduca el %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "firma %s, algoritmo de resumen %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binaria"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "modotexto"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "desconocido"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposible comprobar la firma: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "no es una firma separada\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "AVISO: detectadas m�ltiples firmas. S�lo la primera se comprueba.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "firma independiente de clase 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "firma al viejo estilo (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquete ra�z inv�lido detectado en proc_tree()\n"
@@ -5915,6 +5920,11 @@ msgstr "cancelado"
msgid "no card"
msgstr "no hay tarjeta"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "no hay datos firmados\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "ERROR: "
diff --git a/po/et.po b/po/et.po
index 907c0d034..a2ad10711 100644
--- a/po/et.po
+++ b/po/et.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-06-17 11:04+0300\n"
"Last-Translator: Toomas Soome <[email protected]>\n"
"Language-Team: Estonian <[email protected]>\n"
@@ -846,12 +846,12 @@ msgstr "%s ei ole moodis %s lubatud.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s kr�ptitud kasutajale: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s kr�pteeritud andmed\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "kr�pteeritud tundmatu algoritmiga %d\n"
@@ -3237,7 +3237,7 @@ msgstr " (tundlik)"
msgid "created: %s"
msgstr "%s ei �nnestu luua: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[t�histatud] "
@@ -3249,7 +3249,7 @@ msgstr " [aegub: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [aegub: %s]"
@@ -3290,13 +3290,13 @@ msgstr ""
"n�idatud v�tme kehtivus olla tingimata korrektne.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[t�histatud] "
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4256,201 +4256,206 @@ msgstr "k�sin v�tit %08lX v�tmeserverist %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "k�sin v�tit %08lX v�tmeserverist %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "veider suurus kr�ptitud sessiooni v�tme jaoks (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s kr�pteeritud sessiooni v�ti\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "kr�pteeritud tundmatu algoritmiga %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "avalik v�ti on %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "avaliku v�tmega kr�pteeritud andmed: hea DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "kr�pteeritud %u-bitise %s v�tmega, ID %08lX, loodud %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " ka \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "kr�pteeritud %s v�tmega, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "avaliku v�tmega lahtikr�pteerimine eba�nnestus: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "kr�pteeritud kasutades %lu parooli\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "kr�pteeritud �he parooliga\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "eeldan %s kr�pteeritud andmeid\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "IDEA �iffer pole saadaval, loodan kasutada selle asemel %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "lahtikr�pteerimine �nnestus\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "HOIATUS: teate koosk�lalisus ei ole tagatud\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "HOIATUS: kr�pteeritud teadet on muudetud!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "lahtikr�pteerimine eba�nnestus: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "M�RKUS: saatja n�udis \"ainult-teie-silmadele\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "algne failinimi on='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "eraldiseisev t�histus - realiseerimiseks kasutage \"gpg --import\"\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Korrektne allkiri kasutajalt \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "allkirja kontroll j�eti �ra\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "neid allkirju ei �nnestu t��delda\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Allkiri aegus %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " ka \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Allkirja l�i %.*s kasutades %s v�tit ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "V�tme leiate: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "HALB allkiri kasutajalt \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Aegunud allkiri kasutajalt \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Korrektne allkiri kasutajalt \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[ebakindel]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " ka \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Allkiri aegus %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Allkiri aegub %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s allkiri, s�numil�hendi algoritm %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binaarne"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "tekstimood"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "tundmatu"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Allkirja ei saa kontrollida: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "ei ole eraldiseisev allkiri\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "HOIATUS: leidsin mitu allkirja. Kontrollitakse ainult esimest.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "eraldiseisev allkiri klassiga 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "vana stiili (PGP 2.x) allkiri\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "proc_tree() tuvastas vigase juurmise paketi\n"
@@ -5961,6 +5966,11 @@ msgstr "Katkesta"
msgid "no card"
msgstr "kr�ptimata"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "allkirjastatud andmeid pole\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 89c3dab16..ef8693815 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-06-16 22:40+0300\n"
"Last-Translator: Tommi Vainikainen <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\n"
@@ -863,12 +863,12 @@ msgstr "valitsinta %s ei voi käyttää %s-tilassa\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s salattu vastaanottajalle: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s salattua dataa\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "salattu tuntemattomalla algoritmilla %d\n"
@@ -3275,7 +3275,7 @@ msgstr " (luottamuksellinen)"
msgid "created: %s"
msgstr "ei voida luoda kohdetta %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[mitätöity] "
@@ -3287,7 +3287,7 @@ msgstr " [vanhenee: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [vanhenee: %s]"
@@ -3328,13 +3328,13 @@ msgstr ""
"ajan tasalla jollet käynnistä ohjelmaa uudelleen\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[mitätöity] "
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4306,207 +4306,212 @@ msgstr "pyydetään avainta %08lX kohteesta %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "pyydetään avainta %08lX kohteesta %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "outo koko salatulle istuntoavaimelle (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s-salattu istuntoavain\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "salattu tuntemattomalla algoritmilla %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "julkinen avain on %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "julkisella avaimella salattu data: DEK kelpaa\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "salattu %u-bittisella %s-avaimella, tunnus %08lX, luotu %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " aka \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "salattu %s-avaimella, tunnus %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "julkisen avaimen avaus epäonnistui: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "salattu %lu salasanalla\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "salattu yhdellä salasanalla\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "oletettavasti %s-salattua dataa\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"IDEA-salain ei käytettävissä, yritetään optimistisesti \n"
"käyttää sen sijaan salainta %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "avaus onnistui\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "VAROITUS: viestin eheyttä ei oltu suojattu\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "VAROITUS: salattua viestiä on muokattu!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "avaus epäonnistui: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "HUOM: lähettäjä määrittää \"vain-sinun-silmillesi\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "alkuperäisen tiedoston nimi=\"%.*s\"\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "itsenäinen mitätöinti - käytä \"gpg --import\" ottaaksesi käyttöön\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Allekirjoitus täsmää lähettäjään \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "allekirjoituksen varmistus vaiennetaan\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "näitä allekirjoituksia ei voi käsitellä\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Allekirjoitus vanheni %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " aka \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr ""
"Allekirjoitus tehty %.*s käyttämällä %s-algoritmia avaintunnuksella %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Avain saatavilla kohteessa: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "VÄÄRÄ allekirjoitus lähettäjältä \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Vanhentunut allekirjoitus lähettäjältä \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Allekirjoitus täsmää lähettäjään \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[ei tiedossa]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " aka \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Allekirjoitus vanheni %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Allekirjoitus vanhenee %s\n"
# Ensimmäinen %s on binary, textmode tai unknown, ks. alla
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%sallekirjoitus, tiivistealgoritmi %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binääri"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "teksti"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "tuntematon "
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Allekirjoitusta ei voi tarkistaa: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "allekirjoitus ei ole erillinen\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"VAROITUS: useita allekirjoituksia havaittu. Vain ensimmäisen voi "
"tarkistaa.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "itsenäinen allekirjoitus luokkaa 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "vanhan tyylin (PGP 2.x) allekirjoitus\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "epäkelpo juuripaketti havaittu proc_tree():ssä\n"
@@ -6041,6 +6046,11 @@ msgstr "Peru"
msgid "no card"
msgstr "salaamaton"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "ei allekirjoitettua dataa\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 7f80ee92b..ce07f7f32 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.2rc2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-06-28 00:24+0200\n"
"Last-Translator: Ga�l Qu�ri <[email protected]>\n"
"Language-Team: French <[email protected]>\n"
@@ -842,12 +842,12 @@ msgstr "vous ne pouvez pas utiliser %s en mode %s.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s chiffr� pour: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "donn�es chiffr�es avec %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "chiffr� avec l'algorithme inconnu %d\n"
@@ -3258,7 +3258,7 @@ msgstr "(sensible)"
msgid "created: %s"
msgstr "cr��: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "revoqu�: %s"
@@ -3270,7 +3270,7 @@ msgstr "expir�: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "expire: %s"
@@ -3313,12 +3313,12 @@ msgstr ""
"correcte tant que vous n'avez pas relanc� le programme.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "revoqu�e"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "expir�e"
@@ -4293,189 +4293,194 @@ msgstr "rafra�chissement d'une cl� depuis %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "rafra�chissement de %d cl�s depuis %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "taille �tonnante pour une cl� de session chiffr�e (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "cl� de session chiffr�e %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "phrase de passe g�n�r�e avec l'algorithme de hachage %d inconnu\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "la cl� publique est %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
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:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "chiffr� avec une cl� de %u bits %s, ID %s, cr��e le %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " � %s �\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "chiffr� avec une cl� %s, ID %s\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "le d�chiffrement par cl� publique a �chou�: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "chiffr� avec %lu phrases de passe\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "chiffr� avec 1 phrase de passe\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "on suppose des donn�es chiffr�es avec %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"L'algorithme IDEA n'est pas disponible, avec un peu de chance %s marchera\n"
"peut-�tre\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "le d�chiffrement a r�ussi\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "AVERTISSEMENT: l'int�grit� du message n'�tait pas prot�g�e\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "AVERTISSEMENT: le message chiffr� a �t� manipul� !\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "le d�chiffrement a �chou�: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTE: l'exp�diteur a demand� �pour vos yeux seulement�\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nom de fichier original: '%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "r�vocation autonome - utilisez �gpg --import� pour l'appliquer\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Bonne signature de � %s �"
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "v�rification de signature supprim�e\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "le traitement de ces signatures multiples est impossible\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "Signature faite le %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " en utilisant la cl� %s %s\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Signature faite le %s avec la cl� %s ID %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Cl� disponible sur: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "MAUVAISE signature de � %s �"
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "Signature expir�e de � %s �"
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "Bonne signature de � %s �"
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[incertain]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " alias � %s �"
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "La signature a expir� le %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "La signature expire le %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "signature %s, algorithme de hachage %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binaire"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "modetexte"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "inconnu"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Impossible de v�rifier la signature: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "la signature n'est pas d�tach�e\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
@@ -4483,16 +4488,16 @@ msgstr ""
"premi�re\n"
"sera v�rifi�e.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "signature autonome de classe 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "signature d'un ancien style (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquet racine invalide d�tect� dans proc_tree()\n"
@@ -6048,6 +6053,11 @@ msgstr "annul�"
msgid "no card"
msgstr "pas de carte"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "pas de donn�es sign�es\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "ERREUR: "
diff --git a/po/gl.po b/po/gl.po
index fbfd677f3..6f8b99394 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.4\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2003-12-04 11:39+0100\n"
"Last-Translator: Jacobo Tarrio <[email protected]>\n"
"Language-Team: Galician <[email protected]>\n"
@@ -856,12 +856,12 @@ msgstr "non se pode empregar %s no modo %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s cifrado para: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "datos cifrados con %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "cifrado cun algoritmo desco�ecido %d\n"
@@ -3270,7 +3270,7 @@ msgstr " (sensible)"
msgid "created: %s"
msgstr "non foi posible crear %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[revocada] "
@@ -3282,7 +3282,7 @@ msgstr " [caduca: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [caduca: %s]"
@@ -3323,13 +3323,13 @@ msgstr ""
"correcta a menos que reinicie o programa.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[revocada] "
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4305,202 +4305,207 @@ msgstr "solicitando a chave %08lX de %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "solicitando a chave %08lX de %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "tama�o moi estra�o para unha chave de sesi�n cifrada (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "chave de sesi�n cifrada con %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "cifrado cun algoritmo desco�ecido %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "a chave p�blica � %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "datos cifrados coa chave p�blica: DEK correcto\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "cifrado cunha chave de %u bits, %s, ID %08lX, creado o %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "cifrado cunha chave %s, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "fallou o descifrado de chave p�blica: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "cifrado con %lu contrasinais\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "cifrado con 1 contrasinal\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "supo�endo datos cifrados con %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "A cifra IDEA non est� dispo�ible, t�ntase empregar %s no seu canto\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "descifrado correcto\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "AVISO: a mensaxe non ti�a protecci�n de integridade\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "AVISO: �a mensaxe cifrada foi manipulada!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "o descifrado fallou: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: o remitente pediu \"confidencial\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome do ficheiro orixinal='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revocaci�n independente - empregue \"gpg --import\" para aplicar\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Sinatura correcta de \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verificaci�n de sinatura suprimida\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "non se poden manexar estas sinaturas m�ltiples\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "A sinatura caducou o %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Sinatura feita o %.*s usando %s coa chave de ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Chave dispo�ible en: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "Sinatura INCORRECTA de\""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Sinatura caducada de \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Sinatura correcta de \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[incerto]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "A sinatura caducou o %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "A sinatura caduca o %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "Sinatura %s, algoritmo de resumo %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binario"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "modo texto"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "desco�ecido"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Non foi posible verifica-la sinatura: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "non � unha sinatura separada\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"AVISO: detect�ronse sinaturas m�ltiples. S� se ha comproba-la primeira.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "sinatura independiente de clase 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "Sinatura � vello estilo (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquete ra�z incorrecto detectado en proc_tree()\n"
@@ -6037,6 +6042,11 @@ msgstr "Cancelar"
msgid "no card"
msgstr "non cifrado"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "non hai datos asinados\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index 9492fa5bf..45511509c 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.5\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-06-19 21:53+0200\n"
"Last-Translator: Nagy Ferenc L�szl� <[email protected]>\n"
"Language-Team: Hungarian <[email protected]>\n"
@@ -845,12 +845,12 @@ msgstr "Lehet, hogy nem haszn�lhatja %s-t %s m�dban!\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s titkos�tva \"%s\" sz�m�ra\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s titkos�tott adat.\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "Ismeretlen algoritmussal (%d) titkos�tva.\n"
@@ -3249,7 +3249,7 @@ msgstr " (�rz�keny)"
msgid "created: %s"
msgstr "%s nem hozhat� l�tre: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[visszavont] "
@@ -3261,7 +3261,7 @@ msgstr " [lej�r: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [lej�r: %s]"
@@ -3302,13 +3302,13 @@ msgstr ""
"felt�tlen�l helyes, am�g �jra nem ind�tja a programot!\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[visszavont] "
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4279,204 +4279,209 @@ msgstr "Lek�rem a %08lX kulcsot a %s kulcsszerverr�l.\n"
msgid "refreshing %d keys from %s\n"
msgstr "Lek�rem a %08lX kulcsot a %s kulcsszerverr�l.\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "Furcsa m�ret� (%d) titkos�tott munkafolyamatkulcs.\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s titkos�tott munkafolyamatkulcs\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "Ismeretlen algoritmussal (%d) titkos�tva.\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "Nyilv�nos kulcs: %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "Nyilv�nos kulccsal titkos�tott adat: j� DEK.\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "Titkos�tva %u bites %s kulccsal, azonos�t�: %08lX, l�trehozva: %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " azaz \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "Titkos�tva %s kulccsal, azonos�t�: %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "Nyilv�nos kulcs� visszafejt�s sikertelen: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "%lu jelsz�val rejtjelezve\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "1 jelsz�val rejtjelezve\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "%s titkos�tott adatot felt�telezek.\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"IDEA rejtjelez� nem �ll rendelkez�sre, optimista m�don megpr�b�lok\n"
"%s-t haszn�lni helyette.\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "Visszafejt�s rendben.\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "FIGYELEM: Az �zenetet nem l�tt�k el integrit�sv�delemmel.\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "FIGYELEM: A titkos�tott �zenetet manipul�lt�k!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "Visszafejt�s sikertelen: %s.\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "MEGJEGYZ�S: A felad� k�r�se: \"csak az �n szemeinek\".\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "Eredeti f�jln�v: '%.*s'.\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"K�l�n�ll� visszavon�s. Haszn�lja a \"gpg --import\"-ot az alkalmaz�s�hoz!\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "J� al��r�s a k�vetkez�t�l: \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "Al��r�s-ellen�rz�s elnyomva.\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "Nem tudom kezelni ezeket a t�bbsz�r�s al��r�sokat!\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Az al��r�s lej�rt: %s.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " azaz \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Al��rva: %.*s; kulcs: %s, %08lX.\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Kulcs tal�lhat�: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "ROSSZ al��r�s a k�vetkez�t�l: \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Lej�rt al��r�s a k�vetkez�t�l: \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "J� al��r�s a k�vetkez�t�l: \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[bizonytalan]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " azaz \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Az al��r�s lej�rt: %s.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Az al��r�s lej�r: %s.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s al��r�s, %s kivonatol� algoritmus.\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "Bin�ris"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "Sz�vegm�d�"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "Ismeretlen m�d�"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nem tudom ellen�rizni az al��r�st: %s.\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "Nem k�l�n�ll� al��r�s.\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "FIGYELEM: T�bbsz�r�s al��r�st �rz�keltem. Csak az els�t ellen�rz�m.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "0x%02x oszt�ly� k�l�n�ll� al��r�s.\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "R�gi st�lus� (PGP 2.x) al��r�s.\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "�rv�nytelen gy�k�rcsomagot tal�ltam a proc_tree() f�ggv�nyben!\n"
@@ -6004,6 +6009,11 @@ msgstr "M�gsem"
msgid "no card"
msgstr "nem titkos�tott"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "Nincs al��rt adat.\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/id.po b/po/id.po
index a94ecf09f..a5cf50be2 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg-id\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-06-17 16:32+0700\n"
"Last-Translator: Tedi Heriyanto <[email protected]>\n"
"Language-Team: Indonesian <[email protected]>\n"
@@ -849,12 +849,12 @@ msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s dienkripsi untuk: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s data terenkripsi\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "dienkripsi dengan algoritma tidak dikenal %d\n"
@@ -3265,7 +3265,7 @@ msgstr " (sensitive)"
msgid "created: %s"
msgstr "tidak dapat membuat %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[revoked] "
@@ -3277,7 +3277,7 @@ msgstr " [berakhir: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [berakhir: %s]"
@@ -3318,13 +3318,13 @@ msgstr ""
"kecuali anda memulai kembali program.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[revoked] "
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4293,202 +4293,207 @@ msgstr "meminta kunci %08lX dari %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "meminta kunci %08lX dari %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "ukuran aneh untuk kunci sesi terenkripsi (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s kunci sesi enkripsi\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "dienkripsi dengan algoritma tidak dikenal %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "kunci publik adalah %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "data terenkripsi dengan kunci publik: DEK baik\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "dienkripsi dengan %u-bit kunci %s, ID %08lX, tercipta %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "dienkripsi dengan kunci %s, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "gagal dekripsi kunci publik: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "dienkripsi dengan passphrase %lu\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "dienkripsi dengan 1 passphrase\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "asumsikan %s data terenkripsi\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "Cipher IDEA tidak tersedia, secara optimis berusaha menggunakan %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "dekripsi lancar\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "PERINGATAN: integritas pesan tidak terlindungi\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "PERINGATAN: pesan terenkripsi telah dimanipulasi!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "dekripsi gagal: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "CATATAN: pengirim meminta \"for-your-eyes-only\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "original file name='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "pembatalan mandiri - gunakan \"gpg --import\" untuk mengaplikasikan\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Signature baik dari \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verifikasi signature tidak diabaikan\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "tidak dapat menangani banyak signature ini\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Signature kadaluwarsa %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Signature membuat %.*s menggunakan kunci %s ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Kunci tersedia di:"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "signature BURUK dari \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Signature kadaluarsa dari \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Signature baik dari \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[uncertain]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Signature kadaluwarsa %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Signature kadaluarsa pada %s \n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s signature, algoritma digest %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "biner"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "modeteks"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "tidak dikenal"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Tidak dapat memeriksa signature: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "bukan detached signature\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"PERINGATAN: multi signature terdeteksi. Hanya yang pertama akan diperiksa.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "kelas signature mandiri 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "signature model lama (PGP 2.X)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "terdeteksi root paket tidak valid dalam proc_tree()\n"
@@ -6009,6 +6014,11 @@ msgstr "Batal"
msgid "no card"
msgstr "tidak dienkripsi"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "tidak ada data tertandai\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/it.po b/po/it.po
index 89e01b1ed..558b34931 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.1.92\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-06-16 17:01+0200\n"
"Last-Translator: Marco d'Itri <[email protected]>\n"
"Language-Team: Italian <[email protected]>\n"
@@ -859,12 +859,12 @@ msgstr "non � possibile usare %s in modalit� %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s cifrato per: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "dati cifrati con %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "cifrato con l'algoritmo sconosciuto %d\n"
@@ -3276,7 +3276,7 @@ msgstr " (sensibile)"
msgid "created: %s"
msgstr "impossibile creare %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[revocata]"
@@ -3288,7 +3288,7 @@ msgstr "[scadenza: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr "[scadenza: %s]"
@@ -3330,13 +3330,13 @@ msgstr ""
"finch� non eseguirai di nuovo il programma.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[revocata]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4316,201 +4316,206 @@ msgstr "richiedo la chiave %08lX a %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "richiedo la chiave %08lX a %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "la chiave di sessione cifrata ha dimensioni strane (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "chiave di sessione cifrata con %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "cifrato con l'algoritmo sconosciuto %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "la chiave pubblica � %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "dati cifrati con la chiave pubblica: DEK corretto\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, 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:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "Cifrato con la chiave %s con ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "decifratura della chiave pubblica fallita: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "cifratto con %lu passphrase\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "cifratto con 1 passphrase\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "suppongo che i dati siano cifrati con %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "Cifrario IDEA non disponibile, ottimisticamente cerco di usare %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "decifratura corretta\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "ATTENZIONE: l'integrit� del messaggio non era protetta\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATTENZIONE: il messaggio cifrato � stato manipolato!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "decifratura fallita: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: il mittente ha richiesto \"solo-per-i-tuoi-occhi\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome del file originale='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revoca solitaria - usa \"gpg --import\" per applicarla\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Firma valida da \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verifica della firma soppressa\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "impossibile gestire queste firme multiple\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Firma scaduta il %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Firma fatta %.*s usando %s con ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Chiave disponibile presso: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "Firma NON corretta da \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Firma scaduta da \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Firma valida da \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[incerta]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Firma scaduta il %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Questa firma scadr� il %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "Firma %s, algoritmo di digest %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binario"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "modo testo"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "sconosciuto"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Impossibile controllare la firma: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "non � una firma separata\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "ATTENZIONE: trovate firme multiple. Sar� controllata solo la prima.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "firma solitaria di classe 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "firma vecchio stile (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "individuato un pacchetto radice non valido in proc_tree()\n"
@@ -6059,6 +6064,11 @@ msgstr "Cancella"
msgid "no card"
msgstr "non cifrato"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "non ci sono dati firmati\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index fe18dfe66..8db2f95c0 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.3.92\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-11-23 11:14+0900\n"
"Last-Translator: IIDA Yosiaki <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\n"
@@ -814,12 +814,12 @@ msgstr "%s��%s�⡼�ɤǻȤ����ȤϤǤ��ޤ���\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s�Ź沽 ������:��%s��\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s�Ź沽�Ѥߥǡ���\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "̤�ΤΥ��르�ꥺ��%d�ˤ��Ź沽\n"
@@ -3155,7 +3155,7 @@ msgstr "(�ǥꥱ����)"
msgid "created: %s"
msgstr "����: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "����: %s"
@@ -3167,7 +3167,7 @@ msgstr "��λ: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "��λ: %s"
@@ -3208,12 +3208,12 @@ msgstr ""
"�Ȥ������Ȥ�ǰƬ�ˤ����Ƥ���������\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "����"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "��λ"
@@ -4150,201 +4150,206 @@ msgstr "1�ܤθ���%s�������\n"
msgid "refreshing %d keys from %s\n"
msgstr "%d�ܤθ���%s�������\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "�Ѥ�Ĺ���ΰŹ沽�Ѥߥ��å���� (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s �Ź沽�Ѥߥ��å����\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "̤�Τ����󥢥르�ꥺ����������줿�ѥ��ե졼�� %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "��������%s�Ǥ�\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "�������ˤ��Ź沽�Ѥߥǡ���: ������DEK�Ǥ�\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "%u-�ӥå�%s��, ID %s, ����%s�˰Ź沽����ޤ���\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " ��%s��\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "%s��, ID %s�ǰŹ沽����ޤ���\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "������������˼��Ԥ��ޤ���: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "%lu �ĤΥѥ��ե졼���ǰŹ沽\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "1 �ĤΥѥ��ե졼���ǰŹ沽\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "%s�Ź沽�Ѥߥǡ�������\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "IDEA�Ź�ˡ��������ǽ�ʤΤǡ���ŷŪ�Ǥ���%s�����Ѥ��褦�Ȥ��Ƥ��ޤ�\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "���������\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "�ٹ�: ��å������δ��������ݸ��Ƥ��ޤ���\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "�ٹ�: �Ź沽���줿��å������ϲ��⤵��Ƥ��ޤ�!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "����˼��Ԥ��ޤ���: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "����: �����Ԥϡ����ˤ���ɤ褦�˵��Ƥ��ޤ�\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "���Υե�����̾='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "��Ω��������gpg --import�ɤ�Ȥä�Ŭ�Ѥ��Ƥ�������\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "��%s�ɤ������������̾"
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "��̾�θ��ڤ��ά\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "����¿�Ž�̾�ϼ�갷���ޤ���\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "%s�˻ܤ��줿��̾\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " %s��%s�����\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "%s��%s��ID %s�ǻܤ��줿��̾\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "�ʲ��˸�������ޤ�: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "��%s�ɤ���� ������ ��̾"
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "��%s�ɤ���δ����ڤ�ν�̾"
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "��%s�ɤ������������̾"
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[�Գ���]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " ��̾��%s��"
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "�����ڤ�ν�̾ %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "���ν�̾��%s����λ�Ǥ�\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s��̾�����󥢥르�ꥺ�� %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "�Х��ʥ꡼"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "�ƥ����ȥ⡼��"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "̤�Τ�"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "��̾�򸡺��Ǥ��ޤ���: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "ʬΥ��̾�Ǥ���ޤ���\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "�ٹ�: ¿�Ž�̾�θ��С��ǽ�Τ�Τ����������ޤ���\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "���饹0x%02x����Ω��̾\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "�Ť����� (PGP 2.x) �ν�̾\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "proc_tree() �����̵���ʥ롼�ȡ��ѥ��åȤ򸡽Ф��ޤ���\n"
@@ -5812,6 +5817,11 @@ msgstr "����󥻥�"
msgid "no card"
msgstr "�����ɤ�����ޤ���"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "��̾���줿�ǡ���������ޤ���\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "���顼: "
diff --git a/po/pl.po b/po/pl.po
index e630807b4..76a19886e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.2.2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-06-23 15:54+0200\n"
"Last-Translator: Janusz A. Urbanowicz <[email protected]>\n"
"Language-Team: Polish <[email protected]>\n"
@@ -869,12 +869,12 @@ msgstr "%s nie jest dost�pne w trybie %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s zaszyfrowany dla: ,,%s''\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "dane zaszyfrowano za pomoc� %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "dane zaszyfrowano nieznanym algorytmem numer %d\n"
@@ -3287,7 +3287,7 @@ msgstr " (poufne)"
msgid "created: %s"
msgstr "nie mo�na utworzy� %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[uniewa�niony]"
@@ -3299,7 +3299,7 @@ msgstr " [wygasa :%s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [wygasa :%s]"
@@ -3340,13 +3340,13 @@ msgstr ""
"dop�ki program nie zostanie uruchomiony ponownie.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[uniewa�niony]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "data"
@@ -4321,203 +4321,208 @@ msgstr "zapytanie o klucz %08lX w %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "zapytanie o klucz %08lX w %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "%d - dziwny rozmiar jak na zaszyfrowany klucz sesyjny\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "klucz sesyjny zaszyfrowany %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "dane zaszyfrowano nieznanym algorytmem numer %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "klucz publiczny %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "dane zaszyfrowane kluczem publicznym: poprawny klucz sesyjny\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "zaszyfrowano %u-bitowym kluczem %s, numer %08lX, stworzonym %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "zaszyfrowano kluczem %s, o numerze %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "b��d odszyfrowywania kluczem publicznym: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "zaszyfrowane za pomoc� %lu hase�\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "zaszyfrowane jednym has�em\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "przyjmuj�c �e dane zosta�y zaszyfrowane za pomoc� %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "szyfr IDEA nie jest dost�pny, pr�ba u�ycia %s zamiast\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "odszyfrowanie poprawne\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "OSTRZE�ENIE: wiadomo�� nie by�a zabezpieczona przed manipulacj�\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "OSTRZE�ENIE: zaszyfrowana wiadomo�� by�a manipulowana!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "b��d odszyfrowywania: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "UWAGA: nadawca zaznaczy� �e wiadomo�� nie powinna by� zapisywana\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "pierwotna nazwa pliku='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"osobny certyfikat uniewa�nienia - u�yj ,,gpg --import'' aby go wczyta�\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Poprawny podpis z�o�ony przez \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "wymuszono pomini�cie sprawdzenia podpisu\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "nie mo�na obs�uzy� tych wielokrotnych podpis�w\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Wa�no�� podpisu wygas�a %s.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Podpisano w %.*s kluczem %s o numerze %08lX.\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Klucz dost�pny w: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "NIEPOPRAWNY podpis z�o�ony przez \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Przeterminowany podpis z�o�ony przez \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Poprawny podpis z�o�ony przez \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[niepewne]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Wa�no�� podpisu wygas�a %s.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Wa�no�� podpisu wygasa %s.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "podpis %s, skr�t %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binarny"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "tekstowy"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "nieznany"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nie mo�na sprawdzi� podpisu: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "nie jest oddzielonym podpisem.\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"OSTRZE�ENIE: wielokrotne podpisy. Tylko pierwszy zostanie sprawdzony.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "oddzielony podpis klasy 0x%02x.\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "podpis starego typu (PGP 2.x).\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "wykryto niepoprawny pakiet pierwotny w proc_tree()\n"
@@ -6048,6 +6053,11 @@ msgstr "Anuluj"
msgid "no card"
msgstr "nie zaszyfrowany"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "brak podpisanych danych\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/pt.po b/po/pt.po
index 5ef7df8bf..d431aa5b3 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2002-09-13 18:26+0100\n"
"Last-Translator: Pedro Morais <[email protected]>\n"
"Language-Team: pt <[email protected]>\n"
@@ -851,12 +851,12 @@ msgstr "n�o pode utilizar %s enquanto estiver no modo %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s cifrado para: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "dados cifrados com %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "cifrado com algoritmo desconhecido %d\n"
@@ -3262,7 +3262,7 @@ msgstr " (sens�vel)"
msgid "created: %s"
msgstr "imposs�vel criar %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "revkey"
@@ -3274,7 +3274,7 @@ msgstr "[expira: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr "[expira: %s]"
@@ -3315,13 +3315,13 @@ msgstr ""
"correcta a n�o ser que reinicie o programa.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "revkey"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4289,206 +4289,211 @@ msgstr "a pedir a chave %08lX de %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "a pedir a chave %08lX de %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "tamanho estranho para uma chave de sess�o cifrada (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, fuzzy, c-format
msgid "%s encrypted session key\n"
msgstr "tamanho estranho para uma chave de sess�o cifrada (%d)\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "cifrado com algoritmo desconhecido %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "a chave p�blica � %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "dados cifrados com chave p�blica: DEK v�lido\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "cifrado com chave %u-bit %s, ID %08lX, criada em %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " ou \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "cifrado com chave %s, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "decifragem de chave p�blica falhou: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, fuzzy, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "Repita a frase secreta\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
#, fuzzy
msgid "encrypted with 1 passphrase\n"
msgstr "Repita a frase secreta\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "a assumir dados cifrados %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "Cifra IDEO n�o dispon�vel, a tentar utilizar %s em substitui��o\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "decifragem correcta\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "AVISO: a mensagem n�o tinha a sua integridade protegida\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "CUIDADO: a mensagem cifrada foi manipulada!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "decifragem falhou: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: o remetente solicitou \"apenas-para-seus-olhos\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome do ficheiro original='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revoca��o solit�ria - utilize \"gpg --import\" para aplicar\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Assinatura correcta de \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verifica��o de assinatura suprimida\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "n�o consigo tratar estas assinaturas m�ltiplas\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Esta assinatura expirou em %s.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " ou \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Assinatura feita em %.*s usando %s, ID da chave %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
#, fuzzy
msgid "Key available at: "
msgstr "Nenhuma ajuda dispon�vel"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "Assinatura INCORRECTA de \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Assinatura expirada de \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Assinatura correcta de \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[incerto]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " ou \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, fuzzy, c-format
msgid "Signature expired %s\n"
msgstr "Esta assinatura expirou em %s.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, fuzzy, c-format
msgid "Signature expires %s\n"
msgstr "Esta assinatura expirou em %s.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, fuzzy, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "assinatura %s de: \"%s\"\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
#, fuzzy
msgid "binary"
msgstr "primary"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr ""
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
#, fuzzy
msgid "unknown"
msgstr "vers�o desconhecida"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposs�vel verificar assinatura: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "n�o � uma assinatura separada\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"AVISO: v�rias assinaturas detectadas. Apenas a primeira ser� verificada.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "assinatura de classe 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "formato de assinatura antigo (PGP2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "pacote raiz inv�lido detectado em proc_tree()\n"
@@ -6012,6 +6017,11 @@ msgstr "cancelado pelo utilizador\n"
msgid "no card"
msgstr "n�o cifrado"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "n�o h� dados assinados\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index ead4db20f..82d9cb826 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU gnupg 1.0\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 1998-11-20 23:46:36-0200\n"
"Last-Translator:\n"
"Language-Team: ?\n"
@@ -856,12 +856,12 @@ msgstr ""
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s criptografado para: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "dados criptografados com %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "criptografado com algoritmo desconhecido %d\n"
@@ -3210,7 +3210,7 @@ msgstr ""
msgid "created: %s"
msgstr "imposs�vel criar %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "revkey"
@@ -3222,7 +3222,7 @@ msgstr "A chave expira em %s\n"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr "A chave expira em %s\n"
@@ -3261,13 +3261,13 @@ msgid ""
msgstr ""
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "revkey"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4245,207 +4245,212 @@ msgstr "imposs�vel escrever para o chaveiro: %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "imposs�vel escrever para o chaveiro: %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr ""
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, fuzzy, c-format
msgid "%s encrypted session key\n"
msgstr "dados criptografados com %s\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "criptografado com algoritmo desconhecido %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "a chave p�blica � %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "dados criptografados com chave p�blica: DEK v�lido\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "criptografado com chave %u-bit %s, ID %08lX, criada em %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " ou \""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "criptografado com chave %s, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descriptografia de chave p�blica falhou: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, fuzzy, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "Repita a frase secreta: "
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
#, fuzzy
msgid "encrypted with 1 passphrase\n"
msgstr "Repita a frase secreta: "
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, fuzzy, c-format
msgid "assuming %s encrypted data\n"
msgstr "dados criptografados com %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "descriptografia correta\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
#, fuzzy
msgid "WARNING: message was not integrity protected\n"
msgstr "AVISO: nada exportado\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "CUIDADO: a mensagem criptografada foi manipulada!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "descriptografia falhou: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: o remetente solicitou \"apenas-para-seus-olhos\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nome de arquivo original='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revoga��o isolada - use \"gpg --import\" para aplic�-la\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Assinatura correta de \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verifica��o de assinatura suprimida\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
#, fuzzy
msgid "can't handle these multiple signatures\n"
msgstr "fazer uma assinatura separada"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Esta chave n�o � protegida.\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " ou \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Assinatura feita em %.*s usando %s, ID da chave %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
#, fuzzy
msgid "Key available at: "
msgstr "Nenhuma ajuda dispon�vel"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "Assinatura INCORRETA de \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Assinatura correta de \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Assinatura correta de \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr ""
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " ou \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, fuzzy, c-format
msgid "Signature expired %s\n"
msgstr "Esta chave n�o � protegida.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, fuzzy, c-format
msgid "Signature expires %s\n"
msgstr "Esta chave n�o � protegida.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, fuzzy, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "assinatura %s de: %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr ""
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr ""
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
#, fuzzy
msgid "unknown"
msgstr "vers�o desconhecida"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposs�vel verificar assinatura: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
#, fuzzy
msgid "not a detached signature\n"
msgstr "fazer uma assinatura separada"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "assinatura isolada da classe 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "formato de assinatura antigo (PGP2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "pacote raiz inv�lido detectado em proc_tree()\n"
@@ -5965,6 +5970,11 @@ msgstr ""
msgid "no card"
msgstr "n�o criptografado"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "no dados assinados\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 97dff3388..52e0d8577 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.2rc1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-05-31 22:00-0500\n"
"Last-Translator: Laurentiu Buzdugan <[email protected]>\n"
"Language-Team: Romanian <[email protected]>\n"
@@ -827,12 +827,12 @@ msgstr "nu pute�i folosi %s c�t� vreme �n modul %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s cifrat pentru: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s date cifrate\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "cifrat cu un algoritm necunoscut %d\n"
@@ -3203,7 +3203,7 @@ msgstr " (senzitiv)"
msgid "created: %s"
msgstr "creat�: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "revocat�: %s"
@@ -3215,7 +3215,7 @@ msgstr "expirat�: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "expir�: %s"
@@ -3257,12 +3257,12 @@ msgstr ""
#
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "revocat�"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "expirat�"
@@ -4211,202 +4211,207 @@ msgstr "reactualizez 1 cheie de la %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "reactualizez %d chei de la %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "dimensiune ciudat� pentru o cheie de sesiune cifrat� (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s cheie de sesiune cifrat�\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "fraza-parol� generat� cu un algoritm rezumat necunoscut %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "cheia public� este %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "date cigrate cu cheie public�: DEK bun\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "cifrat cu cheia %u-bit %s, ID %s, creat� %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "cifrat cu cheia %s, ID %s\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "decriptarea cu cheie public� a e�uat: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "cifrat� cu %lu fraze-parol�\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "cifrat� cu 1 fraz�-parol�\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "presupunem date cifrate %s\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "cifru IDEA indisponibil, vom �ncerca s� folosim %s �n loc\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "decriptare OK\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "AVERTISMENT: mesajul nu a avut integritatea protejat�\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "AVERTISMENT: mesajul cifrat a fost manipulat!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "decriptarea a e�uat: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOT�: expeditorul a cerut \"doar-pentru-ochii-d-voastr�\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nume fi�ier original='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "revocare standalone - folosi�i \"gpg --import\" pentru a aplica\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Semn�tur� bun� din \"%s\""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verificare semn�tur� eliminat�\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "nu pot m�nui aceste semn�turi multiple\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "Semn�tur� f�cut� %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " folosind cheia %s %s\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Semn�tur� f�cut� %s folosind cheia %s cu ID %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Cheie disponibil� la: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "Semn�tur� INCORECT� din \"%s\""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "Semn�tur� expirat� din \"%s\""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "Semn�tur� bun� din \"%s\""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[nesigur]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " aka \"%s\""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Semn�tur� expirat� %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Semn�tura expir� %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "semn�tur� %s, algoritm rezumat %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binar"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "modtext"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "necunoscut"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nu pot verifica semn�tura: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "nu o semn�tur� deta�at�\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"AVERTISMENT: am detectat multiple semn�turi. Numai prima va fi verificat�.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "semn�tur� de sine st�t�toare (standalone) de clas� 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "semn�tur� de stil vechi (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "pachet root invalid detectat �n proc_tree()\n"
@@ -5915,6 +5920,11 @@ msgstr "anulat�"
msgid "no card"
msgstr "nici un card"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "nici o dat� semnat�\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "EROARE: "
diff --git a/po/ru.po b/po/ru.po
index e8979dba6..7b7a23922 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GnuPG 1.4.2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-06-22 02:53+0200\n"
"Last-Translator: Maxim Britov <[email protected]>\n"
"Language-Team: Russian <[email protected]>\n"
@@ -816,12 +816,12 @@ msgstr "Вы не можете использовать %s в режиме %s\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s зашифровано для: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "Данные зашифрованы алгоритмом %s\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "зашифровано неизвестным алгоритмом %d\n"
@@ -3163,7 +3163,7 @@ msgstr ""
msgid "created: %s"
msgstr "создан: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "отозван: %s"
@@ -3175,7 +3175,7 @@ msgstr "просрочен с: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "годен до: %s"
@@ -3216,12 +3216,12 @@ msgstr ""
"пока Вы не перезапустите программу.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "отозван"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "просрочен с"
@@ -4161,202 +4161,207 @@ msgstr "обновление 1 ключа из %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "обновление %d ключей из %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "странный размер зашифрованного сеансового ключа (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "сеансовый ключ зашифрован %s \n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "пароль создан с незнакомой хеш-фкнкцией %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "открытый ключ %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "данные зашифрованы открытым ключом: правильный DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "зашифровано %u-битным ключом %s, с ID %s, созданным %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "зашифровано ключом %s с ID %s\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "сбой расшифрования с открытым ключом: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "зашифровано с %lu паролями\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "зашифровано с 1 паролем\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "принятие %s зашифрованных данных\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "шифр IDEA недоступен, попробуйте использовать взамен %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "Расшифровано\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "ВНИМАНИЕ: целостность сообщения не защищена\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ВНИМАНИЕ: зашифрованное сообщение было изменено!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "сбой расшифрования: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "ЗАМЕТЬТЕ: отправитель требует \"только для просмотра Вами\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "оригинальное имя файла='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "самостоятельный сертификат отзыва: \"gpg --import\" для применения\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Действительная подпись от \"%s\""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "проверка подписи подавлена\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "не могу обработать эти множественные подписи\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "Подпись сделана %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " ключом %s с ID %s\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Подпись создана %s ключом %s с ID %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Ключ доступен на:"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "ПЛОХАЯ подпись от \"%s\""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "Просроченная подпись от \"%s\""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "Действительная подпись от \"%s\""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[сомнительно]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " aka \"%s\""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Подпись просрочена %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Подпись действительна до %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s подпись, хэш-функция %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "двоичный"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "текстовый"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "неизвестно"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Не могу проверить подпись: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "не отделенная подпись\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"ВНИМАНИЕ: обнаружено множество подписей. Только первая будет проверена.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "самостоятельная подпись класса 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "старый (PGP 2.x) стиль подписи\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "обнаружен недопустимый корневой пакет в proc_tree()\n"
@@ -5860,6 +5865,11 @@ msgstr "отменено"
msgid "no card"
msgstr "нет карты"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "не подписанные данные\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "ОШИБКА:"
diff --git a/po/sk.po b/po/sk.po
index ae118057f..7941a7ce6 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.5\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-07-20 15:52+0200\n"
"Last-Translator: Michal Majer <[email protected]>\n"
"Language-Team: Slovak <[email protected]>\n"
@@ -846,12 +846,12 @@ msgstr ""
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s za�ifrovan� pre: %s\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s za�ifrovan� d�ta\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "za�ifrovan� nezn�mym algoritmom %d\n"
@@ -3270,7 +3270,7 @@ msgstr "(citliv� inform�cia)"
msgid "created: %s"
msgstr "%s: nem��em vytvori�: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[revokovan�]"
@@ -3282,7 +3282,7 @@ msgstr " [platnos� skon��: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr " [platnos� skon��: %s]"
@@ -3323,13 +3323,13 @@ msgstr ""
"by� spr�vne, pokia� znovu nespust�te program.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[revokovan�]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4293,208 +4293,213 @@ msgstr "po�adujem k��� %08lX z %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "po�adujem k��� %08lX z %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "zvl�tna ve�kos� �ifrovacieho k���a pre sedenie (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s k��� �ifrovan�ho sedenia\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, fuzzy, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "za�ifrovan� nezn�mym algoritmom %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "verejn� k��� je %08lX\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "d�ta za�ifrovan� verejn�m k���om: spr�vny DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "za�ifrovan� %u-bitov�m %s k���om, ID %08lX, vytvoren�m %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, fuzzy, c-format
msgid " \"%s\"\n"
msgstr " alias \""
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
# [kw]
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "za�ifrovan� %s k���om, ID %08lX\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "de�ifrovanie verejn�m k���om zlyhalo: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "za�ifrovan� s %lu heslami\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "za�ifrovan� jedn�m heslom\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "predpoklad�m %s �ifrovan�ch d�t\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"algoritmus IDEA nie je dostupn�; optimisticky sa ho pok�sime nahradi� "
"algoritmom %s\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "de�ifrovanie o.k.\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "VAROVANIE: spr�va nem� ochranu integrity\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "VAROVANIE: so za�ifrovanou spr�vou bolo manipulovan�!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "de�ifrovanie zlyhalo: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "POZN�MKA: odosielate� po�adoval (\"for-your-eyes-only\")\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "p�vodn� meno s�boru='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"samostatn� revoka�n� certifik�t - pou�ite \"gpg --import\", ak ho chcete "
"vyu�i�\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Dobr� podpis od \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "verifik�cia podpisu potla�en�\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "neviem pracova� s t�mito n�sobn�mi podpismi\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Platnos� podpisu vypr�ala %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " alias \""
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Podpis vytvoren� %.*s pomocou %s k���a ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "K��� k dispoz�cii na: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "ZL� podpis od \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Podpis s vypr�anou platnos�ou od \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Dobr� podpis od \""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[neist�] "
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " alias \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Platnos� podpisu vypr�ala %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Platnos� podpisu vypr�� %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s podpis, hashovac� algoritmus %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "bin�rne"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "textov� m�d"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "nezn�me"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nem��em overi� podpis: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "toto nie je podpis oddelen� od dokumentu\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "VAROVANIE: N�jden� viacn�sobne podpisy. Skontrolovan� bude len prv�.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "samostatn� podpis triedy 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "podpis star�ho typu (PGP 2.x)\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "n�jden� neplatn� kore�ov� paket v proc_tree()\n"
@@ -6017,6 +6022,11 @@ msgstr "Zru�i�"
msgid "no card"
msgstr "neza�ifrovan�"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "ch�baj� podp�san� d�ta\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 419d4c4bd..8f5d2cb67 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -23,7 +23,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.2.6\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2004-12-01 17:49+0100\n"
"Last-Translator: Per Tunedal <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
@@ -874,12 +874,12 @@ msgstr "du kan inte använda %s när du är i %s läge\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s krypterad för: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s krypterad data\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "krypterad med en okänd algoritm %d\n"
@@ -3347,7 +3347,7 @@ msgstr " (känsligt)"
msgid "created: %s"
msgstr "kan inte skapa %s: %s\n"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, fuzzy, c-format
msgid "revoked: %s"
msgstr "[spärrad]"
@@ -3359,7 +3359,7 @@ msgstr "[går ut: %s]"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, fuzzy, c-format
msgid "expires: %s"
msgstr "[går ut: %s]"
@@ -3401,13 +3401,13 @@ msgstr ""
"om du inte startar om programmet.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
#, fuzzy
msgid "revoked"
msgstr "[spärrad]"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
#, fuzzy
msgid "expired"
msgstr "expire"
@@ -4388,213 +4388,218 @@ msgstr "begär nyckel %08lX från %s\n"
msgid "refreshing %d keys from %s\n"
msgstr "begär nyckel %08lX från %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "egendomlig storlek på en krypterad sessionsnyckel (%d)\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s krypterad sessionsnyckel\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "lösenmening skapad med okänd sammandragsalgoritm %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, fuzzy, c-format
msgid "public key is %s\n"
msgstr "den öppna nyckeln är %08lX\n"
# Men jag ändrade så det blev närmare originalet. Per
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "Data krypterat till öppen nyckel: Giltig DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "krypterad med %u-bitars %s-nyckel, ID %08lX, skapad %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr ""
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, fuzzy, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "krypterad med %s-nyckel, ID %08lX\n"
# Motsatsen till kryptering med symmetrisk nyckel.
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "öppen nyckel-dekryptering misslyckades: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "krypterad med %lu lösenmeningar\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "krypterad med with 1 lösenmening\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "antar att %s krypterade data\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"IDEA-kryptering inte installerad. Optimistiskt försök att använda %s "
"istället\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "dekrypteringen lyckades\n"
# Äldre krypteringalgoritmer skapar ingen mdc dvs. "minisignatur" som skyddar mot att delar av den krypterade texten byts ut/tas bort. Alla nya 128-bitars algoritmer använder mdc: AES, AES192, AES256, BLOWFISH.
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "VARNING: detta meddelande var inte integritetsskyddat\n"
# Meddelandet innebär alltså att kontrollen av mdc visade att meddelandet förändrats/manipulerats sedan det krypterades. Block kan ha tagits bort eller bytts ut.
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "VARNING: det krypterade meddelandet har ändrats!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "dekrypteringen misslyckades: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "OBS: avsändaren begärde \"endast-för-dina-ögon\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "ursprungligt filnamn=\"%.*s\"\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"fristående spärrcertifikat - använd \"gpg --import\" för\n"
"att applicera\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "Korrekt signatur från \""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "signaturen verifierades inte\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "kan inte hantera dessa multipla signaturer\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, fuzzy, c-format
msgid "Signature made %s\n"
msgstr "Giltighetstiden för signaturen har upphört %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, fuzzy, c-format
msgid " using %s key %s\n"
msgstr " även känd som \""
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, fuzzy, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Signerades %.*s med hjälp av %s-nyckeln med ID %08lX\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Nyckeln tillgänglig hos: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, fuzzy, c-format
msgid "BAD signature from \"%s\""
msgstr "FELAKTIG signatur från \""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, fuzzy, c-format
msgid "Expired signature from \"%s\""
msgstr "Giltighetstiden har upphört för signatur från \""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, fuzzy, c-format
msgid "Good signature from \"%s\""
msgstr "Korrekt signatur från \""
# Visas vid ogiltig signatur:
# Eftersom signaturen är ogiltig kan man inte vara säker på att angivet namn och nyckel-id är riktigt.
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[osäkert]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, fuzzy, c-format
msgid " aka \"%s\""
msgstr " även känd som \""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Giltighetstiden för signaturen har upphört %s\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Giltighetstiden för signaturen går ut %s\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s signatur, sammandragsalgoritm %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "binär"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "textläge"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "okänd"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Kan inte verifiera signaturen: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "detta är inte någon signatur i en separat fil\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr ""
"VARNING: multipla signaturer upptäckta. Endast den första kommer att "
"kontrolleras.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "fristående signatur av klassen 0x%02x\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "signatur av den gamla (PGP 2.x) typen\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "felaktigt rotpaket hittades i proc_tree()\n"
@@ -6159,6 +6164,11 @@ msgstr "Avbryt"
msgid "no card"
msgstr "inte krypterad"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "ingen signerad data\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index c6f60e4c0..8eccff47d 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-03-16 07:30+0300\n"
"Last-Translator: Nilgün Belma Bugüner <[email protected]>\n"
"Language-Team: Turkish <[email protected]>\n"
@@ -819,12 +819,12 @@ msgstr "%2$s kipindeyken %1$s kullanılamayabilir.\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s \"%s\" için şifrelendi\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s şifreli veri\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "bilinmeyen algoritma %d ile şifrelenmiş\n"
@@ -3176,7 +3176,7 @@ msgstr "(duyarlı)"
msgid "created: %s"
msgstr "oluşturuldu: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "yürürlükten kaldırıldı: %s"
@@ -3188,7 +3188,7 @@ msgstr "son kullanma tarihi: %s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "son kullanma tarihi: %s"
@@ -3229,12 +3229,12 @@ msgstr ""
"doğrulukta olmayacağını lütfen gözönüne alınız.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "yürürlükten kaldırıldı"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "zamanaşımına uğradı"
@@ -4190,205 +4190,210 @@ msgstr "1 anahtar %s adresinden tazeleniyor\n"
msgid "refreshing %d keys from %s\n"
msgstr "%d anahtar %s adresinden tazeleniyor\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "bir şifreli oturum anahtarı (%d) için tuhaf uzunluk\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s şifreli oturum anahtarı\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "bilinmeyen özümleme algoritması ile üretilmiş anahtar parolası %d\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "genel anahtar: %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "genel anahtarla şifreli veri: doğru DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr ""
"%u bitlik %s anahtarı ve %s kullanıcı kimliği ile şifrelendi, %s tarihinde "
"oluşturuldu\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "%s anahtarı ve %s kullanıcı kimliği ile şifrelenmiş\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "genel anahtar şifre çözümü başarısız: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "%lu anahtar parolası ile şifrelenmiş\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "1 anahtar parolası ile şifrelenmiş\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "%s şifreli veri varsayılıyor\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"IDEA şifre kullanışsız, iyimserlikle yerine %s kullanılmaya çalışılıyor\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "Şifre çözme tamam\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "UYARI: ileti bütünlük korumalı değildi\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "UYARI: şifreli ileti tahrip edilmiş!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "şifre çözme başarısız: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "BİLGİ: gönderen \"yalnız-gözleriniz-için\" ricasında bulundu\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "özgün dosya adı = '%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"tek başına yürürlükten kaldırma - uygulamak için \"gpg --import\" kullanın\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "\"%s\" deki imza iyi"
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "imza doğrulama engellendi\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "bu çoklu imzalar elde edilemiyor\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "İmza %s de\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " %s kullanılarak anahtar %s ile yapılmış\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "%s imzası, %s anahtarı ve %s kullanıcı kimliği ile yapılmış\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "Anahtar burada:"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "\"%s\" deki imza KÖTÜ"
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "\"%s\" deki imza zamanaşımına uğramış"
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "\"%s\" deki imza iyi"
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[şüpheli]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " nam-ı diğer \"%s\""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "Bu imzanın geçerliliği %s de bitti.\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "Bu imzanın geçerliliği %s de bitecek.\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s imzası, %s özümleme algoritması\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "ikili"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "metinkipi"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "bilinmeyen"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "İmza kontrol edilemedi: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "bir bağımsız imza değil\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "UYARI: çoklu imzalar saptandı. Sadece ilki denetlenecek.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "0x%02x sınıfı tek başına imza\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "eski stil (PGP 2.x) imza\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "proc_tree() içinde geçersiz kök paket saptandı\n"
@@ -5897,6 +5902,11 @@ msgstr "iptal edildi"
msgid "no card"
msgstr "kat yok"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "imzalı veri yok\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "HATA: "
diff --git a/po/zh_CN.po b/po/zh_CN.po
index d10aef8e0..654143350 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.1\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-03-17 22:24+0800\n"
"Last-Translator: Meng Jie <[email protected]>\n"
"Language-Team: Chinese (simplified) <[email protected]>\n"
@@ -810,12 +810,12 @@ msgstr "您不该将 %s 用于 %s 模式中\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s 已经加密给:“%s”\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s 加密过的数据\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "以未知的算法 %d 加密\n"
@@ -3096,7 +3096,7 @@ msgstr " (敏感的)"
msgid "created: %s"
msgstr "创建于:%s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "已吊销:%s"
@@ -3108,7 +3108,7 @@ msgstr "已过期:%s"
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "有效至:%s"
@@ -3147,12 +3147,12 @@ msgid ""
msgstr "请注意,在您重启程序之前,显示的密钥有效性未必正确,\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "已吊销"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "已过期"
@@ -4088,201 +4088,206 @@ msgstr "1 个密钥正从 %s 得到更新\n"
msgid "refreshing %d keys from %s\n"
msgstr "%d 个密钥正从 %s 得到更新\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "加密过的会话密钥尺寸(%d)诡异\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s 加密过的会话密钥\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "密码由未知的散列算法 %d 生成\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "公钥是 %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "公钥加密过的数据:完好的数据加密密钥\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "由 %u 位的 %s 密钥加密,钥匙号为 %s、生成于 %s\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " “%s”\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "由 %s 密钥加密、钥匙号为 %s\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "公钥解密失败:%s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "以 %lu 个密码加密\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "以 1 个密码加密\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "假定 %s 为加密过的数据\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "IDEA 算法不可用,试以 %s 代替\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "解密成功\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "警告:报文未受到完整的保护\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "警告:加密过的报文已经变造!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "解密失败:%s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "注意:发件者要求您“只阅读不存盘”\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "原始文件名 =‘%.*s’\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "独立的吊销证书――请用“gpg --import”来应用\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "完好的签字,来自于“%s”"
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "签字验证已被抑制\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "无法处理这些多重签字\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "签字建立于 %s\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " 使用 %s 密钥 %s\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "于 %s 创建的签字,使用 %s,钥匙号 %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "可用的密钥在:"
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "已损坏的签字,来自于“%s”"
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "过期的签字,来自于“%s”"
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "完好的签字,来自于“%s”"
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[不确定]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " 亦即“%s”"
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "这份签字已于 %s 过期。\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "这份签字在 %s 过期。\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s 签字,散列算法 %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "二进制"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "文本模式"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "未知"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "无法检查签字:%s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "不是一份分离的签字\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "警告:检测到多重签字。只检查第一个签字。\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "等级 0x%02x 的独立签字\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "旧式(PGP 2.x)签字\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "在 proc_tree() 中检测到无效的根包\n"
@@ -5737,6 +5742,11 @@ msgstr "已取消"
msgid "no card"
msgstr "没有卡"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "不含签字的数据\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "错误:"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 85a300581..0c170e90d 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.2\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2005-07-26 18:08+0200\n"
+"POT-Creation-Date: 2006-02-14 11:32+0100\n"
"PO-Revision-Date: 2005-06-23 02:36+0800\n"
"Last-Translator: Jedi <[email protected]>\n"
"Language-Team: Chinese (traditional) <[email protected]>\n"
@@ -808,12 +808,12 @@ msgstr "妳不能夠將 %s 用於 %s 模式中\n"
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s 已經加密給: \"%s\"\n"
-#: g10/encr-data.c:67 g10/mainproc.c:302
+#: g10/encr-data.c:67 g10/mainproc.c:304
#, c-format
msgid "%s encrypted data\n"
msgstr "%s 加密過的資料\n"
-#: g10/encr-data.c:69 g10/mainproc.c:306
+#: g10/encr-data.c:69 g10/mainproc.c:308
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "以未知的演算法 %d 加密過\n"
@@ -3106,7 +3106,7 @@ msgstr "(機密的)"
msgid "created: %s"
msgstr "建立於: %s"
-#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:948
+#: g10/keyedit.c:2636 g10/keylist.c:787 g10/keylist.c:881 g10/mainproc.c:950
#, c-format
msgid "revoked: %s"
msgstr "已撤銷: %s"
@@ -3120,7 +3120,7 @@ msgstr "已過期: %s"
# of subkey
#: g10/keyedit.c:2640 g10/keyedit.c:2691 g10/keyedit.c:2804 g10/keyedit.c:2819
#: g10/keylist.c:196 g10/keylist.c:764 g10/keylist.c:799 g10/keylist.c:893
-#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:954
+#: g10/keylist.c:914 g10/keyserver.c:434 g10/mainproc.c:956
#, c-format
msgid "expires: %s"
msgstr "過期: %s"
@@ -3161,12 +3161,12 @@ msgstr ""
"除非妳重新執行程式.\n"
#: g10/keyedit.c:2836 g10/keyedit.c:3213 g10/keyserver.c:438
-#: g10/mainproc.c:1594 g10/trustdb.c:1179 g10/trustdb.c:1694
+#: g10/mainproc.c:1608 g10/trustdb.c:1179 g10/trustdb.c:1694
msgid "revoked"
msgstr "已撤銷"
#: g10/keyedit.c:2838 g10/keyedit.c:3215 g10/keyserver.c:442
-#: g10/mainproc.c:1596 g10/trustdb.c:532 g10/trustdb.c:1696
+#: g10/mainproc.c:1610 g10/trustdb.c:532 g10/trustdb.c:1696
msgid "expired"
msgstr "已過期"
@@ -4099,201 +4099,206 @@ msgstr "正從 %s 更新 1 份金鑰\n"
msgid "refreshing %d keys from %s\n"
msgstr "正在更新 %d 份金鑰自 %s\n"
-#: g10/mainproc.c:249
+#: g10/mainproc.c:251
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "加密過的階段金鑰 (%d) 尺寸詭異\n"
-#: g10/mainproc.c:300
+#: g10/mainproc.c:302
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s 加密過的階段金鑰\n"
-#: g10/mainproc.c:310
+#: g10/mainproc.c:312
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "密語係以未知的摘要演算法 %d 所產生\n"
-#: g10/mainproc.c:376
+#: g10/mainproc.c:378
#, c-format
msgid "public key is %s\n"
msgstr "公鑰為 %s\n"
-#: g10/mainproc.c:431
+#: g10/mainproc.c:433
msgid "public key encrypted data: good DEK\n"
msgstr "公鑰加密過的資料: 完好的 DEK\n"
-#: g10/mainproc.c:464
+#: g10/mainproc.c:466
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "已用 %u 位元長的 %s 金鑰, ID %s, 建立於 %s 加密了\n"
-#: g10/mainproc.c:468 g10/pkclist.c:219
+#: g10/mainproc.c:470 g10/pkclist.c:219
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
-#: g10/mainproc.c:472
+#: g10/mainproc.c:474
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "已用 %s 金鑰, ID %s 加密了\n"
-#: g10/mainproc.c:486
+#: g10/mainproc.c:488
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "公鑰解密失敗: %s\n"
-#: g10/mainproc.c:500
+#: g10/mainproc.c:502
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "已用 %lu 個密語加密了\n"
-#: g10/mainproc.c:502
+#: g10/mainproc.c:504
msgid "encrypted with 1 passphrase\n"
msgstr "已用 1 個密語加密了\n"
-#: g10/mainproc.c:530 g10/mainproc.c:552
+#: g10/mainproc.c:532 g10/mainproc.c:554
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "假定 %s 為加密過的資料\n"
-#: g10/mainproc.c:538
+#: g10/mainproc.c:540
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "IDEA 編密法不可用, 我們樂觀地試著改以 %s 代替\n"
-#: g10/mainproc.c:570
+#: g10/mainproc.c:572
msgid "decryption okay\n"
msgstr "解密成功\n"
-#: g10/mainproc.c:574
+#: g10/mainproc.c:576
msgid "WARNING: message was not integrity protected\n"
msgstr "警告: 訊息未受到完整的保護\n"
-#: g10/mainproc.c:587
+#: g10/mainproc.c:589
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "警告: 加密過的訊息已經被變造了!\n"
-#: g10/mainproc.c:593
+#: g10/mainproc.c:595
#, c-format
msgid "decryption failed: %s\n"
msgstr "解密失敗: %s\n"
-#: g10/mainproc.c:612
+#: g10/mainproc.c:614
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "請注意: 寄件者要求了 \"妳應該祇用眼睛看\"\n"
-#: g10/mainproc.c:614
+#: g10/mainproc.c:616
#, c-format
msgid "original file name='%.*s'\n"
msgstr "原始的檔名 ='%.*s'\n"
-#: g10/mainproc.c:803
+#: g10/mainproc.c:805
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "獨立撤銷 - 請用 \"gpg --import\" 來套用\n"
-#: g10/mainproc.c:1307
+#: g10/mainproc.c:1151
+#, fuzzy
+msgid "no signature found\n"
+msgstr "完好的簽章來自於 \"%s\""
+
+#: g10/mainproc.c:1321
msgid "signature verification suppressed\n"
msgstr "簽章驗證已被抑制\n"
-#: g10/mainproc.c:1349 g10/mainproc.c:1359
+#: g10/mainproc.c:1363 g10/mainproc.c:1373
msgid "can't handle these multiple signatures\n"
msgstr "無法處理這些多重簽章\n"
-#: g10/mainproc.c:1369
+#: g10/mainproc.c:1383
#, c-format
msgid "Signature made %s\n"
msgstr "由 %s 建立的簽章\n"
-#: g10/mainproc.c:1370
+#: g10/mainproc.c:1384
#, c-format
msgid " using %s key %s\n"
msgstr " 使用 %s 金鑰 %s\n"
-#: g10/mainproc.c:1374
+#: g10/mainproc.c:1388
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "由 %s 建立的簽章, 使用 %s 金鑰 ID %s\n"
-#: g10/mainproc.c:1394
+#: g10/mainproc.c:1408
msgid "Key available at: "
msgstr "可用的金鑰於: "
-#: g10/mainproc.c:1499 g10/mainproc.c:1547
+#: g10/mainproc.c:1513 g10/mainproc.c:1561
#, c-format
msgid "BAD signature from \"%s\""
msgstr "*損壞* 的簽章來自於 \"%s\""
-#: g10/mainproc.c:1501 g10/mainproc.c:1549
+#: g10/mainproc.c:1515 g10/mainproc.c:1563
#, c-format
msgid "Expired signature from \"%s\""
msgstr "過期的簽章來自於 \"%s\""
-#: g10/mainproc.c:1503 g10/mainproc.c:1551
+#: g10/mainproc.c:1517 g10/mainproc.c:1565
#, c-format
msgid "Good signature from \"%s\""
msgstr "完好的簽章來自於 \"%s\""
-#: g10/mainproc.c:1555
+#: g10/mainproc.c:1569
msgid "[uncertain]"
msgstr "[ 不確定 ]"
-#: g10/mainproc.c:1587
+#: g10/mainproc.c:1601
#, c-format
msgid " aka \"%s\""
msgstr " 亦即 \"%s\""
-#: g10/mainproc.c:1681
+#: g10/mainproc.c:1695
#, c-format
msgid "Signature expired %s\n"
msgstr "這份簽署已經在 %s 過期了\n"
-#: g10/mainproc.c:1686
+#: g10/mainproc.c:1700
#, c-format
msgid "Signature expires %s\n"
msgstr "這份簽署在 %s 過期\n"
-#: g10/mainproc.c:1689
+#: g10/mainproc.c:1703
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s 簽章, 摘要演算法 %s\n"
-#: g10/mainproc.c:1690
+#: g10/mainproc.c:1704
msgid "binary"
msgstr "二進制"
-#: g10/mainproc.c:1691
+#: g10/mainproc.c:1705
msgid "textmode"
msgstr "文字模式"
-#: g10/mainproc.c:1691 g10/trustdb.c:531
+#: g10/mainproc.c:1705 g10/trustdb.c:531
msgid "unknown"
msgstr "未知"
-#: g10/mainproc.c:1711
+#: g10/mainproc.c:1725
#, c-format
msgid "Can't check signature: %s\n"
msgstr "無法檢查簽章: %s\n"
-#: g10/mainproc.c:1779 g10/mainproc.c:1795 g10/mainproc.c:1881
+#: g10/mainproc.c:1793 g10/mainproc.c:1809 g10/mainproc.c:1895
msgid "not a detached signature\n"
msgstr "不是一份分離的簽章\n"
-#: g10/mainproc.c:1822
+#: g10/mainproc.c:1836
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "警告: 偵測到多重簽章. 祇有第一個簽章纔會被核選.\n"
-#: g10/mainproc.c:1830
+#: g10/mainproc.c:1844
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "等級 0x%02x 的獨立簽章\n"
-#: g10/mainproc.c:1887
+#: g10/mainproc.c:1901
msgid "old style (PGP 2.x) signature\n"
msgstr "舊型 (PGP 2.x) 簽章\n"
-#: g10/mainproc.c:1897
+#: g10/mainproc.c:1911
msgid "invalid root packet detected in proc_tree()\n"
msgstr "在 proc_tree() 中偵測到無效的 root 封包\n"
@@ -5754,6 +5759,11 @@ msgstr "已取消"
msgid "no card"
msgstr "沒有卡片"
+#: util/errors.c:111
+#, fuzzy
+msgid "no data"
+msgstr "沒有被簽署過的資料\n"
+
#: util/logger.c:158
msgid "ERROR: "
msgstr "錯誤: "
diff --git a/tools/mk-tdata.c b/tools/mk-tdata.c
index 868e0ffbf..833875d28 100644
--- a/tools/mk-tdata.c
+++ b/tools/mk-tdata.c
@@ -1,5 +1,5 @@
/* mk-tdata.c - Create some simple random testdata
- * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ * Copyright (C) 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
*
* This file is free software; as a special exception the author gives
* unlimited permission to copy and/or distribute it, with or without
@@ -13,6 +13,7 @@
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
@@ -23,20 +24,44 @@
int
main(int argc, char **argv)
{
- int i, c;
- int limit =0;
+ int i, c = 0;
+ int limit =0;
+ int char_mode = 0;
- limit = argc > 1 ? atoi(argv[1]) : 0;
+ if (argc)
+ {
+ argc--;
+ argv++;
+ }
+
+ /* Check for option --char N */
+ if (argc > 1 && !strcmp (argv[0], "--char"))
+ {
+ char_mode = 1;
+ c = strtol (argv[1], NULL, 0);
+ argc -= 2;
+ argv += 2;
+ }
+
+ limit = argc ? atoi(argv[0]) : 0;
- srand(getpid());
+ srand(getpid());
- for(i=0; !limit || i < limit; i++ ) {
+ for (i=0; !limit || i < limit; i++ )
+ {
+ if (char_mode)
+ {
+ putchar (c);
+ }
+ else
+ {
#ifdef HAVE_RAND
- c = ((unsigned)(1 + (int) (256.0*rand()/(RAND_MAX+1.0)))-1);
+ c = ((unsigned)(1 + (int) (256.0*rand()/(RAND_MAX+1.0)))-1);
#else
- c = ((unsigned)(1 + (int) (256.0*random()/(RAND_MAX+1.0)))-1);
+ c = ((unsigned)(1 + (int) (256.0*random()/(RAND_MAX+1.0)))-1);
#endif
- putchar(c);
+ putchar (c);
+ }
}
- return 0;
+ return 0;
}
diff --git a/util/errors.c b/util/errors.c
index 66f539464..75498f80e 100644
--- a/util/errors.c
+++ b/util/errors.c
@@ -108,6 +108,7 @@ g10_errstr( int err )
X(KEYSERVER ,N_("keyserver error"))
X(CANCELED ,N_("canceled"))
X(NO_CARD ,N_("no card"))
+ X(NO_DATA ,N_("no data"))
default: p = buf; sprintf(buf, "g10err=%d", err); break;
}
#undef X