From 820225458175ed521bd83143fe7aa176d57801e4 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 14 Feb 2006 18:39:24 +0000 Subject: Security fix --- ChangeLog | 4 ++ NEWS | 17 ++++++++- checks/Makefile.am | 2 +- checks/verify.test | 11 ++++++ configure.ac | 2 +- doc/DETAILS | 4 +- g10/mainproc.c | 16 +++++++- g10/verify.c | 2 +- include/errors.h | 1 + po/be.po | 110 +++++++++++++++++++++++++++++------------------------ po/ca.po | 110 +++++++++++++++++++++++++++++------------------------ po/cs.po | 110 +++++++++++++++++++++++++++++------------------------ po/da.po | 110 +++++++++++++++++++++++++++++------------------------ po/de.po | 110 +++++++++++++++++++++++++++++------------------------ po/el.po | 110 +++++++++++++++++++++++++++++------------------------ po/eo.po | 110 +++++++++++++++++++++++++++++------------------------ po/es.po | 110 +++++++++++++++++++++++++++++------------------------ po/et.po | 110 +++++++++++++++++++++++++++++------------------------ po/fi.po | 110 +++++++++++++++++++++++++++++------------------------ po/fr.po | 110 +++++++++++++++++++++++++++++------------------------ po/gl.po | 110 +++++++++++++++++++++++++++++------------------------ po/hu.po | 110 +++++++++++++++++++++++++++++------------------------ po/id.po | 110 +++++++++++++++++++++++++++++------------------------ po/it.po | 110 +++++++++++++++++++++++++++++------------------------ po/ja.po | 110 +++++++++++++++++++++++++++++------------------------ po/pl.po | 110 +++++++++++++++++++++++++++++------------------------ po/pt.po | 110 +++++++++++++++++++++++++++++------------------------ po/pt_BR.po | 110 +++++++++++++++++++++++++++++------------------------ po/ro.po | 110 +++++++++++++++++++++++++++++------------------------ po/ru.po | 110 +++++++++++++++++++++++++++++------------------------ po/sk.po | 110 +++++++++++++++++++++++++++++------------------------ po/sv.po | 110 +++++++++++++++++++++++++++++------------------------ po/tr.po | 110 +++++++++++++++++++++++++++++------------------------ po/zh_CN.po | 110 +++++++++++++++++++++++++++++------------------------ po/zh_TW.po | 110 +++++++++++++++++++++++++++++------------------------ tools/mk-tdata.c | 45 +++++++++++++++++----- util/errors.c | 1 + 37 files changed, 1649 insertions(+), 1316 deletions(-) create mode 100755 checks/verify.test diff --git a/ChangeLog b/ChangeLog index e818baf0b..08b8117f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-02-14 Werner Koch + + Released 1.4.2.1. + 2005-07-26 Werner Koch 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, bug-gnupg@gnu.org) +AC_INIT(gnupg, 1.4.2.1, bug-gnupg@gnu.org) # 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 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Belarusian \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Catalan \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Czech \n" @@ -818,12 +818,12 @@ msgstr "pou msgid "%s/%s encrypted for: \"%s\"\n" msgstr "%s/%s zaifrovan 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 zaifrovan 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 "zaifrovno neznmm algoritmem %d\n" @@ -3184,7 +3184,7 @@ msgstr "(citliv msgid "created: %s" msgstr "vytvoen: %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 "revokovn: %s" @@ -3196,7 +3196,7 @@ msgstr "platnost skon #: 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 "" "bt nutn sprvn, dokud znova nespustte 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 "revokovn" #: 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 skonila" @@ -4181,208 +4181,213 @@ msgstr "aktualizuji 1 kl 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 ifrovacho kle pro sezen (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "%s zaifrovan 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) generovno s pouitm neznmho algoritmu %d\n" -#: g10/mainproc.c:376 +#: g10/mainproc.c:378 #, c-format msgid "public key is %s\n" msgstr "veejn kl je %s\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "data zaifrovna veejnm klem: sprvn 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 "zaifrovna %u-bitovm %s klem, ID %s, vytvoenm %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 "zaifrovno %s klem, ID %s\n" -#: g10/mainproc.c:486 +#: g10/mainproc.c:488 #, c-format msgid "public key decryption failed: %s\n" msgstr "deifrovn veejnm klem selhalo: %s\n" -#: g10/mainproc.c:500 +#: g10/mainproc.c:502 #, c-format msgid "encrypted with %lu passphrases\n" msgstr "zaifrovno s heslem %lu\n" -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 msgid "encrypted with 1 passphrase\n" msgstr "zaifrovno jednm 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 "pedpokldm %s ifrovanch 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 pokusme nahradit " "algoritmem %s\n" -#: g10/mainproc.c:570 +#: g10/mainproc.c:572 msgid "decryption okay\n" msgstr "deifrovn o.k.\n" -#: g10/mainproc.c:574 +#: g10/mainproc.c:576 msgid "WARNING: message was not integrity protected\n" msgstr "VAROVN: zprva nebyla chrnna proti poruen jej integrity\n" -#: g10/mainproc.c:587 +#: g10/mainproc.c:589 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "VAROVN: se zaifrovanou zprvou bylo manipulovno!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "deifrovn selhalo: %s\n" -#: g10/mainproc.c:612 +#: g10/mainproc.c:614 msgid "NOTE: sender requested \"for-your-eyes-only\"\n" msgstr "POZNMKA: odeslatel poadoval (\"for-your-eyes-only\")\n" -#: g10/mainproc.c:614 +#: g10/mainproc.c:616 #, c-format msgid "original file name='%.*s'\n" msgstr "pvodn jmno souboru='%.*s'\n" -#: g10/mainproc.c:803 +#: g10/mainproc.c:805 msgid "standalone revocation - use \"gpg --import\" to apply\n" msgstr "" "samostatn revokan certifikt - pouijte \"gpg --import\", chcete-li jej " "ut\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 potlaena\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 "neumm pracovat s tmito nsobnmi podpisy\n" -#: g10/mainproc.c:1369 +#: g10/mainproc.c:1383 #, c-format msgid "Signature made %s\n" msgstr "Podpis vytvoen %s\n" -#: g10/mainproc.c:1370 +#: g10/mainproc.c:1384 #, c-format msgid " using %s key %s\n" msgstr " pouit %s kle %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 vytvoen %s pomoc kle %s s ID uivatele %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 vyprenou 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 skonila %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 "binrn formt" -#: g10/mainproc.c:1691 +#: g10/mainproc.c:1705 msgid "textmode" msgstr "textov formt" -#: g10/mainproc.c:1691 g10/trustdb.c:531 +#: g10/mainproc.c:1705 g10/trustdb.c:531 msgid "unknown" msgstr "neznm formt" -#: g10/mainproc.c:1711 +#: g10/mainproc.c:1725 #, c-format msgid "Can't check signature: %s\n" msgstr "Nemohu ovit 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 oddlen od dokumentu\n" -#: g10/mainproc.c:1822 +#: g10/mainproc.c:1836 msgid "" "WARNING: multiple signatures detected. Only the first will be checked.\n" msgstr "VAROVN: detekovno vce podpis. Kontrolovn 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 tdy 0x%02x\n" -#: g10/mainproc.c:1887 +#: g10/mainproc.c:1901 msgid "old style (PGP 2.x) signature\n" msgstr "podpis starho 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 koenov paket v proc_tree()\n" @@ -5877,6 +5882,11 @@ msgstr "zru 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Danish \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 "tilfj ngle" @@ -3125,7 +3125,7 @@ msgstr "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 "Ngle udlber 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 "tilfj ngle" #: 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 "udlb" @@ -4103,207 +4103,212 @@ msgstr "import msgid "refreshing %d keys from %s\n" msgstr "importr ngler fra en ngleserver: %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 ngle er slet 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 kodestning: " -#: 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 kodestning: " -#: 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 kodestning: " -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 #, fuzzy msgid "encrypted with 1 passphrase\n" msgstr "Gentag kodestning: " -#: 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 "kryptr 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 ngle 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 hjlp tilgngelig" -#: 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 "DRLIG 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 ngle er ikke beskyttet.\n" -#: g10/mainproc.c:1686 +#: g10/mainproc.c:1700 #, fuzzy, c-format msgid "Signature expires %s\n" msgstr "Denne ngle 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 "kryptr 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: German \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 verschlsselt fr: %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 verschlsselte 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 verschlsselt %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 #: 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 " [verfllt: %s]" @@ -3345,13 +3345,13 @@ msgstr "" "Schlsselgltigkeit 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 msgid "refreshing %d keys from %s\n" msgstr "Schlssel %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 Lnge fr einen verschlsselten Sitzungsschlssel (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "%s verschlsselter Sitzungsschlssel\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 Schlssel ist %08lX\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "Mit ffentlichem Schssel verschlsselte 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 "verschlsselt mit %u-Bit %s Schlssel, 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 "verschlsselt mit %s Schlssel, ID %08lX\n" -#: g10/mainproc.c:486 +#: g10/mainproc.c:488 #, c-format msgid "public key decryption failed: %s\n" msgstr "Entschlsselung mit ffentlichem Schlssel fehlgeschlagen: %s\n" -#: g10/mainproc.c:500 +#: g10/mainproc.c:502 #, c-format msgid "encrypted with %lu passphrases\n" msgstr "Verschlsselt mit %lu Passphrases\n" -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 msgid "encrypted with 1 passphrase\n" msgstr "Verschlsselt 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-verschlsselte 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-Verschlsselung nicht verfgbar; versucht wird stattdessen %s\n" -#: g10/mainproc.c:570 +#: g10/mainproc.c:572 msgid "decryption okay\n" msgstr "Entschlsselung erfolgreich\n" -#: g10/mainproc.c:574 +#: g10/mainproc.c:576 msgid "WARNING: message was not integrity protected\n" msgstr "" "WARNUNG: Botschaft wurde nicht integrittsgeschtzt (integrity protected)\n" -#: g10/mainproc.c:587 +#: g10/mainproc.c:589 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "Warnung: Verschlsselte Botschaft ist manipuliert worden!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "Entschlsselung 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 "Ursprnglicher 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-berprfung unterdrckt\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 knnen 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 Schlssel ID %08lX\n" -#: g10/mainproc.c:1394 +#: g10/mainproc.c:1408 msgid "Key available at: " msgstr "Schlssel erhltlich 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 verfllt 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 "Binre" -#: 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 geprft 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 geprft.\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 "ungltiges 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Greek \n" @@ -856,12 +856,12 @@ msgstr " 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 " [ #: 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 " 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Esperanto \n" @@ -845,12 +845,12 @@ msgstr "Tiu komando ne eblas en la re 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 #: 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 " [eksvalidios: %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 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 "publiklosile 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 "publiklosila malifrado 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 anstatae\n" -#: g10/mainproc.c:570 +#: g10/mainproc.c:572 msgid "decryption okay\n" msgstr "malifrado 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 mesao estis manipulita!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "malifrado 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 malaltita\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 eksvalidios 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 "Eksvalidiinta 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 eksvalidios je %s.\n" -#: g10/mainproc.c:1686 +#: g10/mainproc.c:1700 #, fuzzy, c-format msgid "Signature expires %s\n" msgstr "i tiu losilo eksvalidios 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: gnupg-i18n@gnupg.org\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 Surez \n" "Language-Team: Spanish \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 #: 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 "tamao anormal para una clave de sesin cifrada (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "%s clave de sesin cifrada\n" -#: g10/mainproc.c:310 +#: g10/mainproc.c:312 #, c-format msgid "passphrase generated with unknown digest algorithm %d\n" msgstr "frase contrasea 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 pblica 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 pblica: 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 pblica fallido: %s\n" -#: g10/mainproc.c:500 +#: g10/mainproc.c:502 #, c-format msgid "encrypted with %lu passphrases\n" msgstr "cifrado con %lu frases contrasea\n" -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 msgid "encrypted with 1 passphrase\n" msgstr "cifrado con 1 frase contrasea\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 "ATENCIN: 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 "ATENCIN: 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 \"slo-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 "revocacin 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 verificacin 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 mltiples\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 mltiples firmas. Slo 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 raz invlido 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Estonian \n" @@ -846,12 +846,12 @@ msgstr "%s ei ole moodis %s lubatud.\n" msgid "%s/%s encrypted for: \"%s\"\n" msgstr "%s/%s krptitud 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 krpteeritud 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 "krpteeritud 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 "[thistatud] " @@ -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 "" "nidatud vtme 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 "[thistatud] " #: 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 msgid "refreshing %d keys from %s\n" msgstr "ksin vtit %08lX vtmeserverist %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 krptitud sessiooni vtme jaoks (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "%s krpteeritud sessiooni vti\n" -#: g10/mainproc.c:310 +#: g10/mainproc.c:312 #, fuzzy, c-format msgid "passphrase generated with unknown digest algorithm %d\n" msgstr "krpteeritud tundmatu algoritmiga %d\n" -#: g10/mainproc.c:376 +#: g10/mainproc.c:378 #, fuzzy, c-format msgid "public key is %s\n" msgstr "avalik vti on %08lX\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "avaliku vtmega krpteeritud 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 "krpteeritud %u-bitise %s vtmega, 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 "krpteeritud %s vtmega, ID %08lX\n" -#: g10/mainproc.c:486 +#: g10/mainproc.c:488 #, c-format msgid "public key decryption failed: %s\n" msgstr "avaliku vtmega lahtikrpteerimine ebannestus: %s\n" -#: g10/mainproc.c:500 +#: g10/mainproc.c:502 #, c-format msgid "encrypted with %lu passphrases\n" msgstr "krpteeritud kasutades %lu parooli\n" -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 msgid "encrypted with 1 passphrase\n" msgstr "krpteeritud 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 krpteeritud 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 "lahtikrpteerimine nnestus\n" -#: g10/mainproc.c:574 +#: g10/mainproc.c:576 msgid "WARNING: message was not integrity protected\n" msgstr "HOIATUS: teate koosklalisus ei ole tagatud\n" -#: g10/mainproc.c:587 +#: g10/mainproc.c:589 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "HOIATUS: krpteeritud teadet on muudetud!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "lahtikrpteerimine ebannestus: %s\n" -#: g10/mainproc.c:612 +#: g10/mainproc.c:614 msgid "NOTE: sender requested \"for-your-eyes-only\"\n" msgstr "MRKUS: saatja nudis \"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 thistus - 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 jeti 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 tdelda\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 li %.*s kasutades %s vtit ID %08lX\n" -#: g10/mainproc.c:1394 +#: g10/mainproc.c:1408 msgid "Key available at: " msgstr "Vtme 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, snumilhendi 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 "krptimata" +#: 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Finnish \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: gnupg-i18n@gnupg.org\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: Gal Quri \n" "Language-Team: French \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 "donnes chiffres 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 #: 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 "revoque" #: 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 "expire" @@ -4293,189 +4293,194 @@ msgstr "rafra msgid "refreshing %d keys from %s\n" msgstr "rafrachissement de %d cls 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 chiffre (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "cl de session chiffre %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 gnre 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 "donnes chiffres 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, cre 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 dchiffrement 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 donnes chiffres 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 dchiffrement a russi\n" -#: g10/mainproc.c:574 +#: g10/mainproc.c:576 msgid "WARNING: message was not integrity protected\n" msgstr "AVERTISSEMENT: l'intgrit du message n'tait pas protge\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 dchiffrement a chou: %s\n" -#: g10/mainproc.c:612 +#: g10/mainproc.c:614 msgid "NOTE: sender requested \"for-your-eyes-only\"\n" msgstr "NOTE: l'expditeur 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 "rvocation 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 "vrification de signature supprime\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 expire 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 vrifier 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 dtache\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 "" "premire\n" "sera vrifie.\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 dtect 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 donnes signes\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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Galician \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 descoecido %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 "tamao moi estrao para unha chave de sesin cifrada (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "chave de sesin 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 descoecido %d\n" -#: g10/mainproc.c:376 +#: g10/mainproc.c:378 #, fuzzy, c-format msgid "public key is %s\n" msgstr "a chave pblica %08lX\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "datos cifrados coa chave pblica: 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 pblica: %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 "supoendo 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 dispoible, tntase 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 tia proteccin 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 "revocacin 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 "verificacin 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 mltiples\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 dispoible 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 "descoecido" -#: 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: detectronse sinaturas mltiples. 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 raz 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: gnupg-i18n@gnupg.org\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 Lszl \n" "Language-Team: Hungarian \n" @@ -845,12 +845,12 @@ msgstr "Lehet, hogy nem haszn msgid "%s/%s encrypted for: \"%s\"\n" msgstr "%s/%s titkostva \"%s\" szmra\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 titkostott 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) titkostva.\n" @@ -3249,7 +3249,7 @@ msgstr " ( msgid "created: %s" msgstr "%s nem hozhat ltre: %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 #: 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 " [lejr: %s]" @@ -3302,13 +3302,13 @@ msgstr "" "felttlenl helyes, amg jra nem indtja 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 msgid "refreshing %d keys from %s\n" msgstr "Lekrem a %08lX kulcsot a %s kulcsszerverrl.\n" -#: g10/mainproc.c:249 +#: g10/mainproc.c:251 #, c-format msgid "weird size for an encrypted session key (%d)\n" msgstr "Furcsa mret (%d) titkostott munkafolyamatkulcs.\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "%s titkostott 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) titkostva.\n" -#: g10/mainproc.c:376 +#: g10/mainproc.c:378 #, fuzzy, c-format msgid "public key is %s\n" msgstr "Nyilvnos kulcs: %08lX\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "Nyilvnos kulccsal titkostott 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 "Titkostva %u bites %s kulccsal, azonost: %08lX, ltrehozva: %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 "Titkostva %s kulccsal, azonost: %08lX\n" -#: g10/mainproc.c:486 +#: g10/mainproc.c:488 #, c-format msgid "public key decryption failed: %s\n" msgstr "Nyilvnos kulcs visszafejts sikertelen: %s\n" -#: g10/mainproc.c:500 +#: g10/mainproc.c:502 #, c-format msgid "encrypted with %lu passphrases\n" msgstr "%lu jelszval rejtjelezve\n" -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 msgid "encrypted with 1 passphrase\n" msgstr "1 jelszval 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 titkostott adatot felttelezek.\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 rendelkezsre, optimista mdon megprblok\n" "%s-t hasznlni helyette.\n" -#: g10/mainproc.c:570 +#: g10/mainproc.c:572 msgid "decryption okay\n" msgstr "Visszafejts rendben.\n" -#: g10/mainproc.c:574 +#: g10/mainproc.c:576 msgid "WARNING: message was not integrity protected\n" msgstr "FIGYELEM: Az zenetet nem lttk el integritsvdelemmel.\n" -#: g10/mainproc.c:587 +#: g10/mainproc.c:589 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "FIGYELEM: A titkostott zenetet manipulltk!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "Visszafejts sikertelen: %s.\n" -#: g10/mainproc.c:612 +#: g10/mainproc.c:614 msgid "NOTE: sender requested \"for-your-eyes-only\"\n" msgstr "MEGJEGYZS: A felad krse: \"csak az n szemeinek\".\n" -#: g10/mainproc.c:614 +#: g10/mainproc.c:616 #, c-format msgid "original file name='%.*s'\n" msgstr "Eredeti fjlnv: '%.*s'.\n" -#: g10/mainproc.c:803 +#: g10/mainproc.c:805 msgid "standalone revocation - use \"gpg --import\" to apply\n" msgstr "" "Klnll visszavons. Hasznlja a \"gpg --import\"-ot az alkalmazshoz!\n" -#: g10/mainproc.c:1307 +#: g10/mainproc.c:1151 +#, fuzzy +msgid "no signature found\n" +msgstr "J alrs a kvetkeztl: \"" + +#: g10/mainproc.c:1321 msgid "signature verification suppressed\n" msgstr "Alrs-ellenrzs 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 tbbszrs alrsokat!\n" -#: g10/mainproc.c:1369 +#: g10/mainproc.c:1383 #, fuzzy, c-format msgid "Signature made %s\n" msgstr "Az alrs lejrt: %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 "Alrva: %.*s; kulcs: %s, %08lX.\n" -#: g10/mainproc.c:1394 +#: g10/mainproc.c:1408 msgid "Key available at: " msgstr "Kulcs tallhat: " -#: 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 alrs a kvetkeztl: \"" -#: 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 "Lejrt alrs a kvetkeztl: \"" -#: 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 alrs a kvetkeztl: \"" -#: 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 alrs lejrt: %s.\n" -#: g10/mainproc.c:1686 +#: g10/mainproc.c:1700 #, c-format msgid "Signature expires %s\n" msgstr "Az alrs lejr: %s.\n" -#: g10/mainproc.c:1689 +#: g10/mainproc.c:1703 #, c-format msgid "%s signature, digest algorithm %s\n" msgstr "%s alrs, %s kivonatol algoritmus.\n" -#: g10/mainproc.c:1690 +#: g10/mainproc.c:1704 msgid "binary" msgstr "Binris" -#: g10/mainproc.c:1691 +#: g10/mainproc.c:1705 msgid "textmode" msgstr "Szvegmd" -#: g10/mainproc.c:1691 g10/trustdb.c:531 +#: g10/mainproc.c:1705 g10/trustdb.c:531 msgid "unknown" msgstr "Ismeretlen md" -#: g10/mainproc.c:1711 +#: g10/mainproc.c:1725 #, c-format msgid "Can't check signature: %s\n" msgstr "Nem tudom ellenrizni az alrst: %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 klnll alrs.\n" -#: g10/mainproc.c:1822 +#: g10/mainproc.c:1836 msgid "" "WARNING: multiple signatures detected. Only the first will be checked.\n" msgstr "FIGYELEM: Tbbszrs alrst rzkeltem. Csak az elst ellenrzm.\n" -#: g10/mainproc.c:1830 +#: g10/mainproc.c:1844 #, c-format msgid "standalone signature of class 0x%02x\n" msgstr "0x%02x osztly klnll alrs.\n" -#: g10/mainproc.c:1887 +#: g10/mainproc.c:1901 msgid "old style (PGP 2.x) signature\n" msgstr "Rgi stlus (PGP 2.x) alrs.\n" -#: g10/mainproc.c:1897 +#: g10/mainproc.c:1911 msgid "invalid root packet detected in proc_tree()\n" msgstr "rvnytelen gykrcsomagot talltam a proc_tree() fggvnyben!\n" @@ -6004,6 +6009,11 @@ msgstr "M msgid "no card" msgstr "nem titkostott" +#: util/errors.c:111 +#, fuzzy +msgid "no data" +msgstr "Nincs alrt 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Indonesian \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Italian \n" @@ -859,12 +859,12 @@ msgstr "non 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Japanese \n" @@ -814,12 +814,12 @@ msgstr "%s 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 " #: 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 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%sID %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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Polish \n" @@ -869,12 +869,12 @@ msgstr "%s nie jest dost 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 mona 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 "[uniewaniony]" @@ -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 "" "dopki 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 "[uniewaniony]" #: 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 "bd 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 hasem\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 "przyjmujc e dane zostay 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 dostpny, prba uycia %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 "OSTRZEENIE: wiadomo nie bya zabezpieczona przed manipulacj\n" -#: g10/mainproc.c:587 +#: g10/mainproc.c:589 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "OSTRZEENIE: zaszyfrowana wiadomo bya manipulowana!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "bd 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 uniewanienia - uyj ,,gpg --import'' aby go wczyta\n" -#: g10/mainproc.c:1307 +#: g10/mainproc.c:1151 +#, fuzzy +msgid "no signature found\n" +msgstr "Poprawny podpis zoony przez \"" + +#: g10/mainproc.c:1321 msgid "signature verification suppressed\n" msgstr "wymuszono pominicie 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 mona obsuzy tych wielokrotnych podpisw\n" -#: g10/mainproc.c:1369 +#: g10/mainproc.c:1383 #, fuzzy, c-format msgid "Signature made %s\n" msgstr "Wano podpisu wygasa %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 dostpny 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 zoony 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 zoony 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 zoony 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 "Wano podpisu wygasa %s.\n" -#: g10/mainproc.c:1686 +#: g10/mainproc.c:1700 #, c-format msgid "Signature expires %s\n" msgstr "Wano podpisu wygasa %s.\n" -#: g10/mainproc.c:1689 +#: g10/mainproc.c:1703 #, c-format msgid "%s signature, digest algorithm %s\n" msgstr "podpis %s, skrt %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 mona 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 "" "OSTRZEENIE: 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: pt \n" @@ -851,12 +851,12 @@ msgstr "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 msgid "created: %s" msgstr "impossvel 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 no 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 sesso 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 sesso 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 pblica %08lX\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "dados cifrados com chave pblica: DEK vlido\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 pblica 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 no disponvel, a tentar utilizar %s em substituio\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 no 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 "revocao solitria - 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 "verificao 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 "no consigo tratar estas assinaturas mltiplas\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 disponvel" -#: 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 "verso desconhecida" -#: g10/mainproc.c:1711 +#: g10/mainproc.c:1725 #, c-format msgid "Can't check signature: %s\n" msgstr "Impossvel 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 "no 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: vrias 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 invlido detectado em proc_tree()\n" @@ -6012,6 +6017,11 @@ msgstr "cancelado pelo utilizador\n" msgid "no card" msgstr "no cifrado" +#: util/errors.c:111 +#, fuzzy +msgid "no data" +msgstr "no 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: gnupg-i18n@gnupg.org\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 "impossvel 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 msgid "refreshing %d keys from %s\n" msgstr "impossvel 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 pblica %08lX\n" -#: g10/mainproc.c:431 +#: g10/mainproc.c:433 msgid "public key encrypted data: good DEK\n" msgstr "dados criptografados com chave pblica: DEK vlido\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 pblica 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 "revogao 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 "verificao 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 no 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 disponvel" -#: 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 no protegida.\n" -#: g10/mainproc.c:1686 +#: g10/mainproc.c:1700 #, fuzzy, c-format msgid "Signature expires %s\n" msgstr "Esta chave no 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 "verso desconhecida" -#: g10/mainproc.c:1711 +#: g10/mainproc.c:1725 #, c-format msgid "Can't check signature: %s\n" msgstr "Impossvel 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 invlido detectado em proc_tree()\n" @@ -5965,6 +5970,11 @@ msgstr "" msgid "no card" msgstr "no 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Romanian \n" @@ -827,12 +827,12 @@ msgstr "nu pute 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 #: 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 euat: %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 euat: %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 fiier original='%.*s'\n" -#: g10/mainproc.c:803 +#: g10/mainproc.c:805 msgid "standalone revocation - use \"gpg --import\" to apply\n" msgstr "revocare standalone - folosii \"gpg --import\" pentru a aplica\n" -#: g10/mainproc.c:1307 +#: g10/mainproc.c:1151 +#, fuzzy +msgid "no signature found\n" +msgstr "Semntur bun din \"%s\"" + +#: g10/mainproc.c:1321 msgid "signature verification suppressed\n" msgstr "verificare semntur 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 mnui aceste semnturi multiple\n" -#: g10/mainproc.c:1369 +#: g10/mainproc.c:1383 #, c-format msgid "Signature made %s\n" msgstr "Semntur fcut %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 "Semntur fcut %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 "Semntur 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 "Semntur 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 "Semntur 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 "Semntur expirat %s\n" -#: g10/mainproc.c:1686 +#: g10/mainproc.c:1700 #, c-format msgid "Signature expires %s\n" msgstr "Semntura expir %s\n" -#: g10/mainproc.c:1689 +#: g10/mainproc.c:1703 #, c-format msgid "%s signature, digest algorithm %s\n" msgstr "semntur %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 semntura: %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 semntur detaat\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 semnturi. 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 "semntur de sine stttoare (standalone) de clas 0x%02x\n" -#: g10/mainproc.c:1887 +#: g10/mainproc.c:1901 msgid "old style (PGP 2.x) signature\n" msgstr "semntur 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Russian \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Slovak \n" @@ -846,12 +846,12 @@ msgstr "" msgid "%s/%s encrypted for: \"%s\"\n" msgstr "%s/%s zaifrovan 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 zaifrovan dta\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 "zaifrovan neznmym algoritmom %d\n" @@ -3270,7 +3270,7 @@ msgstr "(citliv msgid "created: %s" msgstr "%s: nemem 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 #: 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 sprvne, pokia znovu nespustte 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 msgid "refreshing %d keys from %s\n" msgstr "poadujem 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 "zvltna vekos ifrovacieho ka pre sedenie (%d)\n" -#: g10/mainproc.c:300 +#: g10/mainproc.c:302 #, c-format msgid "%s encrypted session key\n" msgstr "%s k ifrovanho sedenia\n" -#: g10/mainproc.c:310 +#: g10/mainproc.c:312 #, fuzzy, c-format msgid "passphrase generated with unknown digest algorithm %d\n" msgstr "zaifrovan neznmym 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 "dta zaifrovan verejnm kom: sprvny 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 "zaifrovan %u-bitovm %s kom, ID %08lX, vytvorenm %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 "zaifrovan %s kom, ID %08lX\n" -#: g10/mainproc.c:486 +#: g10/mainproc.c:488 #, c-format msgid "public key decryption failed: %s\n" msgstr "deifrovanie verejnm kom zlyhalo: %s\n" -#: g10/mainproc.c:500 +#: g10/mainproc.c:502 #, c-format msgid "encrypted with %lu passphrases\n" msgstr "zaifrovan s %lu heslami\n" -#: g10/mainproc.c:502 +#: g10/mainproc.c:504 msgid "encrypted with 1 passphrase\n" msgstr "zaifrovan jednm 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 "predpokladm %s ifrovanch dt\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 poksime nahradi " "algoritmom %s\n" -#: g10/mainproc.c:570 +#: g10/mainproc.c:572 msgid "decryption okay\n" msgstr "deifrovanie o.k.\n" -#: g10/mainproc.c:574 +#: g10/mainproc.c:576 msgid "WARNING: message was not integrity protected\n" msgstr "VAROVANIE: sprva nem ochranu integrity\n" -#: g10/mainproc.c:587 +#: g10/mainproc.c:589 msgid "WARNING: encrypted message has been manipulated!\n" msgstr "VAROVANIE: so zaifrovanou sprvou bolo manipulovan!\n" -#: g10/mainproc.c:593 +#: g10/mainproc.c:595 #, c-format msgid "decryption failed: %s\n" msgstr "deifrovanie zlyhalo: %s\n" -#: g10/mainproc.c:612 +#: g10/mainproc.c:614 msgid "NOTE: sender requested \"for-your-eyes-only\"\n" msgstr "POZNMKA: odosielate poadoval (\"for-your-eyes-only\")\n" -#: g10/mainproc.c:614 +#: g10/mainproc.c:616 #, c-format msgid "original file name='%.*s'\n" msgstr "pvodn meno sboru='%.*s'\n" -#: g10/mainproc.c:803 +#: g10/mainproc.c:805 msgid "standalone revocation - use \"gpg --import\" to apply\n" msgstr "" "samostatn revokan certifikt - pouite \"gpg --import\", ak ho chcete " "vyui\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 "verifikcia podpisu potlaen\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 tmito nsobnmi podpismi\n" -#: g10/mainproc.c:1369 +#: g10/mainproc.c:1383 #, fuzzy, c-format msgid "Signature made %s\n" msgstr "Platnos podpisu vyprala %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 ka ID %08lX\n" -#: g10/mainproc.c:1394 +#: g10/mainproc.c:1408 msgid "Key available at: " msgstr "K k dispozcii 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 vypranou platnosou 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 vyprala %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 "binrne" -#: g10/mainproc.c:1691 +#: g10/mainproc.c:1705 msgid "textmode" msgstr "textov md" -#: g10/mainproc.c:1691 g10/trustdb.c:531 +#: g10/mainproc.c:1705 g10/trustdb.c:531 msgid "unknown" msgstr "neznme" -#: g10/mainproc.c:1711 +#: g10/mainproc.c:1725 #, c-format msgid "Can't check signature: %s\n" msgstr "Nemem 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: Njden viacnsobne 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 starho typu (PGP 2.x)\n" -#: g10/mainproc.c:1897 +#: g10/mainproc.c:1911 msgid "invalid root packet detected in proc_tree()\n" msgstr "njden neplatn koreov paket v proc_tree()\n" @@ -6017,6 +6022,11 @@ msgstr "Zru msgid "no card" msgstr "nezaifrovan" +#: util/errors.c:111 +#, fuzzy +msgid "no data" +msgstr "chbaj podpsan dta\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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Swedish \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Turkish \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Chinese (simplified) \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Chinese (traditional) \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 #include #include +#include #include @@ -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 -- cgit v1.2.3