diff --git a/ChangeLog b/ChangeLog index bba76121d..313c6d75b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-10-28 Werner Koch + + Released 1.3.92. + 2004-10-26 Werner Koch * configure.ac: New option --disable-gnupg-iconv, define diff --git a/NEWS b/NEWS index 5905f8983..cab3025d7 100644 --- a/NEWS +++ b/NEWS @@ -1,8 +1,16 @@ -Noteworthy changes in version 1.3.92 +Noteworthy changes in version 1.3.92 (2004-10-28) ------------------------------------------------- * Added Russian man page. Thanks to Pawel I. Shajdo. + * libiconv is now used to support other character sets other than + UTF-8, Latin-1,-2 and KOI8-2. The W32 version will only work + correctly when iconv.dll is installed on the system. A binary + version is available at all GNU mirror sites under libiconv. + + * gettext for Windows has been simplified. The MO files are now + distributed UTF-8 encoded and gpg translates on the fly. + Noteworthy changes in version 1.3.91 (2004-10-15) ------------------------------------------------- diff --git a/README b/README index 0725305b8..2f6a79b05 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ GnuPG - The GNU Privacy Guard ------------------------------- - Version 1.3.91 + Version 1.3.92 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. diff --git a/configure.ac b/configure.ac index b4942555b..af485bfed 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ min_automake_version="1.7.9" # 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.3.92-cvs, bug-gnupg@gnu.org) +AC_INIT(gnupg, 1.3.92, 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/g10/ChangeLog b/g10/ChangeLog index 8c5c474dd..f43a6384c 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,7 @@ +2004-10-28 Werner Koch + + * apdu.c (open_pcsc_reader): Removed bad free in error handler. + 2004-10-27 David Shaw * card-util.c, delkey.c, keygen.c, plaintext.c, keyedit.c, diff --git a/g10/apdu.c b/g10/apdu.c index f4b32d141..c75efd122 100644 --- a/g10/apdu.c +++ b/g10/apdu.c @@ -1482,6 +1482,7 @@ open_pcsc_reader (const char *portstr) } strcpy (reader_table[slot].rdrname, portstr? portstr : list); xfree (list); + list = NULL; err = pcsc_connect (reader_table[slot].pcsc.context, reader_table[slot].rdrname, @@ -1495,11 +1496,11 @@ open_pcsc_reader (const char *portstr) { log_error ("pcsc_connect failed: %s (0x%lx)\n", pcsc_error_string (err), err); - pcsc_release_context (reader_table[slot].pcsc.context); + + pcsc_release_context (reader_table[slot].pcsc.context); xfree (reader_table[slot].rdrname); reader_table[slot].rdrname = NULL; reader_table[slot].used = 0; - xfree (list); return -1; } diff --git a/g10/options.skel b/g10/options.skel index 17dc06001..cf5033bef 100644 --- a/g10/options.skel +++ b/g10/options.skel @@ -58,7 +58,8 @@ # for supported character sets. This character set is only used for # metadata and not for the actual message which does not undergo any # translation. Note that future version of GnuPG will change to UTF-8 -# as default character set. +# as default character set. In most cases this option is not required +# GnuPG is able to figure out the correct charset and use that. #charset utf-8 diff --git a/po/be.po b/po/be.po index 62f0087ad..0cdda7db1 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-10-30 16:35+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -36,9 +36,10 @@ msgstr "" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "" @@ -70,8 +71,9 @@ msgstr "" msgid "note: random_seed file not updated\n" msgstr "" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "" @@ -281,8 +283,9 @@ msgstr "сакрэтны ключ недаступны" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +msgid "can't do this in batch mode\n" msgstr "" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -451,7 +454,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "" @@ -604,11 +607,7 @@ msgstr "" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Загад> " @@ -617,7 +616,17 @@ msgstr "Загад> " msgid "Admin-only command\n" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "несумяшчальныя загады\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "сакрэтны ключ недаступны" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Нерэчаісны загад (паспрабуйце \"help\")\n" @@ -644,8 +653,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "немагчыма адкрыць \"%s\"\n" @@ -654,13 +663,14 @@ msgstr "немагчыма адкрыць \"%s\"\n" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" -msgstr "" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" +msgstr "грамадскі ключ ня знойдзены" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "" @@ -670,7 +680,7 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "" #: g10/delkey.c:139 @@ -700,7 +710,7 @@ msgstr "" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "" @@ -744,7 +754,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -813,11 +823,6 @@ msgstr "немагчыма адкрыць %s: %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "%s: немагчыма стварыць тэчку: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1111,7 +1116,7 @@ msgstr "" msgid "Pubkey: " msgstr "" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "" @@ -1119,7 +1124,7 @@ msgstr "" msgid "Hash: " msgstr "" -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "" @@ -1238,7 +1243,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 msgid "could not parse keyserver URL\n" msgstr "" @@ -2265,29 +2270,29 @@ msgstr "" msgid "[self-signature]" msgstr "" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "" @@ -2336,12 +2341,12 @@ msgid "User ID \"%s\" is revoked." msgstr "" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "" #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr "" @@ -2504,7 +2509,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "" -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -2851,436 +2856,436 @@ msgstr "" msgid "show photo ID" msgstr "" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" -msgstr "" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" +msgstr "памылка стварэньня \"%s\": %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Даступны сакрэтны ключ.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 msgid "Really sign all user IDs? (y/N) " msgstr "" -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 msgid "Really remove all selected user IDs? (y/N) " msgstr "" -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 msgid "Really remove this user ID? (y/N) " msgstr "" -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 msgid "Really move the primary key? (y/N) " msgstr "" -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 msgid "You must select exactly one key.\n" msgstr "" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 msgid "Do you really want to delete the selected keys? (y/N) " msgstr "" -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 msgid "Do you really want to delete this key? (y/N) " msgstr "" -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 msgid "Really revoke all selected user IDs? (y/N) " msgstr "" -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "паказаць сьпіс ключоў і ID карыстальнікаў" -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "" -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 msgid "Do you really want to revoke this key? (y/N) " msgstr "" -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 msgid "Set preference list to:\n" msgstr "" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 msgid "Really update the preferences? (y/N) " msgstr "" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Захаваць зьмены? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Выйсьці не захаваўшы зьмены? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "" -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "" -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr "" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "памылка чытаньня файла" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "памылка чытаньня файла" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "збой падпісаньня: %s\n" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "збой падпісаньня: %s\n" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr "памылка чытаньня файла" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, c-format msgid "trust: %s" msgstr "" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 msgid "revoked" msgstr "" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 msgid "expired" msgstr "" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" msgstr "" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" " of PGP to reject this key.\n" msgstr "" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "" -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" " some versions of PGP to reject this key.\n" msgstr "" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "" -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 msgid "this key has already been designated as a revoker\n" msgstr "" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 msgid "Are you sure you want to replace it? (y/N) " msgstr "" -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 msgid "Are you sure you want to delete it? (y/N) " msgstr "" -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "памылка чытаньня файла" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, c-format msgid "signed by your key %s on %s%s%s\n" msgstr "" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr "" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "" -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 msgid " (non-revocable)" msgstr "" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, c-format msgid "revoked by your key %s on %s\n" msgstr "" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -3733,107 +3738,107 @@ msgstr "" msgid "never " msgstr "" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "" -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "" -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "" -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "" -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "збой падпісаньня: %s\n" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr "" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr "" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr "" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "немагчыма адкрыць \"%s\"\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "паказаць сьпіс ключоў і подпісаў" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "паказаць сьпіс ключоў і подпісаў" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: створаны зьвязак ключоў\n" @@ -3953,11 +3958,6 @@ msgstr "збой падпісаньня: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "грамадскі ключ ня знойдзены" - #: g10/keyserver.c:1578 #, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4386,7 +4386,7 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +msgid "can't query password in batch mode\n" msgstr "" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4457,23 +4457,23 @@ msgstr "" msgid "unable to display photo ID!\n" msgstr "" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "" @@ -4538,7 +4538,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "" @@ -4679,7 +4679,7 @@ msgstr "" #: g10/pkclist.c:903 #, c-format -msgid "unknown default recipient `%s'\n" +msgid "unknown default recipient \"%s\"\n" msgstr "" #: g10/pkclist.c:948 @@ -4708,15 +4708,15 @@ msgstr "" msgid "Please enter name of data file: " msgstr "Калі ласка, задайце назву файла даньняў: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "чытаецца stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "" @@ -4754,7 +4754,7 @@ msgid "NOTE: key has been revoked" msgstr "" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, fuzzy, c-format msgid "build_packet failed: %s\n" msgstr "збой падпісаньня: %s\n" @@ -4764,65 +4764,65 @@ msgstr "збой падпісаньня: %s\n" msgid "key %s has no user IDs\n" msgstr "паказаць сьпіс ключоў і ID карыстальнікаў" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "" -#: g10/revoke.c:279 +#: g10/revoke.c:280 msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, fuzzy, c-format msgid "make_keysig_packet failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "" -#: g10/revoke.c:375 +#: g10/revoke.c:376 #, c-format -msgid "no revocation keys found for `%s'\n" +msgid "no revocation keys found for \"%s\"\n" msgstr "" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" -msgstr "" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" +msgstr "грамадскі ключ ня знойдзены" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "" -#: g10/revoke.c:476 +#: g10/revoke.c:479 msgid "Create a revocation certificate for this key? (y/N) " msgstr "" -#: g10/revoke.c:493 +#: g10/revoke.c:496 #, fuzzy msgid "unknown protection algorithm\n" msgstr "невядомы альгарытм сьцісканьня" -#: g10/revoke.c:497 +#: g10/revoke.c:500 #, fuzzy msgid "NOTE: This key is not protected!\n" msgstr "Ключ абаронены.\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -4833,34 +4833,34 @@ msgid "" "your machine might store the data and make it available to others!\n" msgstr "" -#: g10/revoke.c:589 +#: g10/revoke.c:592 #, fuzzy msgid "Please select the reason for the revocation:\n" msgstr "Калі ласка, абярыце від ключа, які Вам патрэбны:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "" -#: g10/revoke.c:677 +#: g10/revoke.c:680 msgid "Is this okay? (y/N) " msgstr "" @@ -5012,58 +5012,50 @@ msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "запіс у stdout\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "немагчыма адкрыць %s: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" -#: g10/skclist.c:157 +#: g10/skclist.c:158 #, c-format -msgid "skipped `%s': duplicated\n" +msgid "skipped \"%s\": duplicated\n" msgstr "" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" -msgstr "" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" +msgstr "грамадскі ключ ня знойдзены" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "" -#: g10/skclist.c:179 -#, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" #: g10/tdbdump.c:59 g10/trustdb.c:365 @@ -5682,6 +5674,14 @@ msgstr "дзеяньне немагчымае без распачатае бяс msgid "(you may have used the wrong program for this task)\n" msgstr "" +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "%s: немагчыма стварыць тэчку: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "немагчыма адкрыць %s: %s\n" + #, fuzzy #~ msgid "expires" #~ msgstr "збой падпісаньня: %s\n" diff --git a/po/ca.po b/po/ca.po index 6219cfbda..19de2bfa8 100644 --- a/po/ca.po +++ b/po/ca.po @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.4rc\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-12-05 19:15+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -57,9 +57,10 @@ msgstr "no s'ha trobat cap m�dul d'acumulaci� d'entropia\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "no s'ha pogut obrir �%s�: %s\n" @@ -93,8 +94,9 @@ msgstr "no s'ha pogut llegir �%s�: %s\n" msgid "note: random_seed file not updated\n" msgstr "nota: el fitxer random_seed no s'ha actualitzat\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "no s'ha pogut crear �%s�: %s\n" @@ -324,8 +326,12 @@ msgstr "la clau secreta no est� disponible" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +# Dest�s? ivb +# Desat�s, s�. jm +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" msgstr "no es pot fet aix� en mode desat�s\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -505,7 +511,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "La selecci� �s inv�lida.\n" @@ -666,13 +672,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -# Dest�s? ivb -# Desat�s, s�. jm -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "no es pot fet aix� en mode desat�s\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Ordre> " @@ -681,7 +681,17 @@ msgstr "Ordre> " msgid "Admin-only command\n" msgstr "les ordres entren en conflicte\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "les ordres entren en conflicte\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "s'est� escrivint la clau secreta a �%s�\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "L'ordre no �s v�lida (proveu �help�)\n" @@ -709,8 +719,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Introdu�u el nom d'usuari: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "no s'ha pogut obrir �%s�\n" @@ -719,13 +729,14 @@ msgstr "no s'ha pogut obrir �%s�\n" msgid "--output doesn't work for this command\n" msgstr "--output no funciona per a aquesta ordre\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "no s'ha trobat la clau �%s�: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "s'ha produ�t un error en llegir el bloc de claus: %s\n" @@ -737,7 +748,8 @@ msgstr "(a no ser que especifiqueu la clau per la empremta digital)\n" # Ah�! Abans �batch� est� tal qual. Cal unificar. ivb # Fet. jm #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "no es pot fer aix� en el mode desat�s sense �--yes�\n" #: g10/delkey.c:139 @@ -769,7 +781,7 @@ msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "" "utilitzeu l'opci� �--delete-secret-keys� per a eliminar-la primer.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "error en la creaci� de la contrasenya: %s\n" @@ -818,7 +830,7 @@ msgstr "" "for�ar el xifrat asim�tric %s (%d) viola les prefer�ncies del " "destinatari\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -901,11 +913,6 @@ msgstr "no s'ha pogut executar %s �%s�: %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "no s'ha pogut executar %s �%s�: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "no s'ha pogut crear �%s�: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1211,7 +1218,7 @@ msgstr "" msgid "Pubkey: " msgstr "Clau p�blica: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Xifratge: " @@ -1219,7 +1226,7 @@ msgstr "Xifratge: " msgid "Hash: " msgstr "Dispersi�: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compressi�: " @@ -1349,7 +1356,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s no �s un joc de car�cters v�lid\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "" @@ -2536,29 +2543,29 @@ msgstr "[revocaci�]" msgid "[self-signature]" msgstr "[autosignatura]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 signatura err�nia\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d signatures err�nies\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 signatura no comprovada per falta de clau\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d signatures no comprovades per falta de clau\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 signatura no comprovada a causa d'un error\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d signatures no comprovades a causa d'errors\n" @@ -2611,14 +2618,14 @@ msgid "User ID \"%s\" is revoked." msgstr "L'ID d'usuari �%s� est� revocat." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Segur que encara voleu signarla? (s/N) " # O no s'ha pogut? ivb # FIXME: comprovar context. jm #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " No es pot signar.\n" @@ -2820,7 +2827,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Signar realment? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3184,243 +3191,243 @@ msgstr "showphoto" msgid "show photo ID" msgstr "mostra el photo ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "error en llegir el bloc de claus secretes �%s�: %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "La clau secreta est� disponible.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Cal la clau secreta per a fer a��.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Useu l'ordre �toggle� abans.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "La clau est� revocada." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Realment voleu signar tots els ID d'usuari? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Pista: Trieu els ID d'usuari que voleu signar\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Aquesta ordre no est� permesa mentre s'est� en mode %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Heu de seleccionar al menys un ID d'usuari.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "No podeu esborrar l'�ltim ID d'usuari!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Realment voleu eliminar tots els ID d'usuari seleccionats? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Realment voleu eliminar aquest ID d'usuari? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Realment voleu eliminar aquest ID d'usuari? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Heu de seleccionar, si m�s no, una clau.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Heu de seleccionar, si m�s no, una clau.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Realment voleu eliminar les claus seleccionades? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Realment voleu eliminar aquesta clau? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Realment voleu revocar tots els ID d'usuari seleccionats? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Realment voleu eliminar aquest ID d'usuari? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Realment voleu revocar les claus seleccionades? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Realment voleu revocar aquesta clau? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "estableix la llista de prefer�ncies" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Voleu actualitzar les prefer�ncies per a les ID d'usuaris seleccionades?" -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Realment voleu actualitzar les prefer�ncies? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Voleu desar els canvis? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Voleu eixir sense desar? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "ha fallat l'actualitzaci�: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "ha fallat l'actualitzaci� de la clau secreta: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "La clau no ha canviat, per tant no cal actualitzaci�.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Resum: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Funcionalitats: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" # Potser %s haja d'anar darrere de �clau�. ivb # �s cert. Nova funcionalitat de 1.2.0, IIRC. jm -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Aquesta clau pot ser revocada per la clau %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensible)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "no s'ha pogut creat %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revocada]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [caduca: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [caduca: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " confian�a: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " confian�a: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Aquesta clau ha estat desactivada" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revocada]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "No hi ha prefer�ncies en un ID d'usuari d'estil PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3429,7 +3436,7 @@ msgstr "" "necess�riament\n" "correcta a no ser que torneu a executar el programa.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3439,7 +3446,7 @@ msgstr "" "assumida.\n" # Photo ID com abans. ivb -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3448,49 +3455,49 @@ msgstr "" "AV�S: Aquesta �s una clau d'estil PGP2. Afegir un photo ID pot fer que " "algunes versions de PGP rebutgen aquesta clau.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Esteu segur que encara voleu afegir-lo? (s/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "No podeu afegir un photo ID a una clau d'estil PGP2.\n" # Aquesta i les seg�ents no haurien de portar (s/N/q) i no (y/N/q)? ivb # Hmm. S�... (s/N/x) jm -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Voleu esborrar aquesta signatura correcta? (s/N/x)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Voleu esborrar aquesta signatura inv�lida? (s/N/x)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Voleu esborrar aquesta signatura desconeguda? (s/N/x)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Realment voleu esborrar aquesta autosignatura? (s/N)" # Werner FIXME: use ngettext. jm -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "S'ha esborrat %d signatura.\n" # Werner FIXME: use ngettext. jm -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "S'han esborrat %d signatures.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "No s'hi ha eliminat res.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3500,168 +3507,168 @@ msgstr "" "pot\n" "fer que algunes versions de PGP rebutjen aquesta clau.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "No podeu afegir un revocador designat a una clau d'estil PGP 2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Introdu�u l'ID d'usuari del revocador designat: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "no es pot nominar a una clau d'estil PGP 2.x com a revocador designat\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "no podeu nominar una clau com el seu propi revocador designat\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AV�S: Aquesta clau ha estat revocada pel propietari!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "AV�S: no es pot desfer la nominaci� d'una clau com a revocador " "designat!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Esteu segur que voleu nominar aquesta clau com a revocador designat? (s/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Per favor, elimineu les seleccions de les claus secretes.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Per favor, seleccioneu com a molt una clau secund�ria.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "S'est� canviant la data de caducitat per a una clau secund�ria.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "S'est� canviant la data de caducitat per a una clau prim�ria.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "No podeu canviar la data de caducitat de les claus v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Heu de seleccionar exactament un ID.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "es descarta l'autosignatura v3 en l'id d'usuari �%s�\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Esteu segur que encara voleu utilitzarla (s/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Esteu segur que encara voleu utilitzarla (s/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "No hi ha cap ID amb l'�ndex %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "No hi ha cap clau secund�ria amb l'�ndex %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID d'usuari: �" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " signat per %08lX el %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (no-exportable)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Aquesta signatura va caducar el %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Esteu segur de que encara voleu revocarla? (s/N) " # (s/N) ivb # S! jm -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "" "Voleu crear un certificat de revocaci� per a aquesta signatura? (s/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Heu signat els seg�ents ID d'usuari:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (no-exportable)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revocat per %08lX el %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Esteu a punt de revocar aquestes signatures:\n" # (s/N)? ivb -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Realment voleu crear els certificats de revocaci�? (s/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "ho hi ha clau secreta\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "l'ID d'usuari �%s� ja est� revocat\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "AV�S: una signatura d'ID d'usuari est� datada %d segons en el futur\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4183,109 +4190,109 @@ msgstr "" msgid "never " msgstr "mai " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Pol�tica de signatura cr�tica: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Pol�tica de signatura: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "AV�S: s'hi han trobat dades de notaci� inv�lides\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notaci� de signatura cr�tica: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notaci� de signatura: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "no llegible per humans" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Anell" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [caduca: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Empremtes digital de la clau prim�ria:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Empremta digital de la subclau:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Empremta digital de la clau prim�ria:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Empremta digital de la subclau:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Empremta digital =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "no s'ha pogut crear l'armadura: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AV�S: hi ha 2 fitxers amb informaci� confidencial.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s �s el que no ha canviat\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s �s el nou\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Per favor, solucioneu aquest possible problema de seguretat\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "s'est� comprovant l'anell �%s�\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "s'han comprovat %lu claus (%lu signatures)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "s'han comprovat %lu claus (%lu signatures)\n" # Fitxer indi fins final. Hau! ivb # Grrr. Com em tracten els esclaus ja... jm -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: s'ha creat l'anell\n" @@ -4412,11 +4419,6 @@ msgstr "la recepci� des del servidor de claus ha fallat: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "%s: no �s un ID v�lid\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "no s'ha trobat la clau �%s�: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4881,7 +4883,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "hi ha un problema amb l'agent: l'agent ha tornat 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "no es pot demanar la contrasenya en mode desat�s\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4960,23 +4963,23 @@ msgstr "�s aquesta foto correcta (s/N/x)? " msgid "unable to display photo ID!\n" msgstr "no s'ha pogut mostrar el photo ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "No s'ha especificat cap ra�" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "La clau ha estat substitu�da" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "La clau ha estat compromesa" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "La clau ja no s'usa" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "L'ID d'usuari ja no �s v�lid" @@ -5047,7 +5050,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "La vostra decisi�? " @@ -5205,8 +5208,8 @@ msgid "skipped: public key already set\n" msgstr "es descarta: la clau p�blica ja est� establida\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "el destinatari predeterminat �s desconegut �%s�\n" #: g10/pkclist.c:948 @@ -5237,15 +5240,15 @@ msgstr "Signatura separada.\n" msgid "Please enter name of data file: " msgstr "Introdu�u el nom del fitxer de dades: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "s'est� llegint d'stdin...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "no hi ha dades signades\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "no s'han pogut obrir les dades signades `%s'\n" @@ -5286,7 +5289,7 @@ msgid "NOTE: key has been revoked" msgstr "NOTA: aquesta clau ha estat revocada!" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "ha fallat build_packet: %s\n" @@ -5296,65 +5299,65 @@ msgstr "ha fallat build_packet: %s\n" msgid "key %s has no user IDs\n" msgstr "clau %08lX: sense ID\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "A ser revocada per:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Aquesta �s una clau de revocaci� sensible)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Voleu crear un certificat de revocaci� per a aquesta clau? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "s'ha for�at l'eixida d'armadura ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "ha fallat make_keysig_packet: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "S'ha creat el certificat de revocaci�.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "no s'han ttrobat claus de revocaci� per a �%s�\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "no s'ha trobat la clau secreta �%s�: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "no hi ha cap clau p�blica corresponent: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "la clau p�blica no coincideix amb la clau secreta!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Voleu crear un certificat de revocaci� per a aquesta clau? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "l'algorisme de protecci� �s desconegut\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "NOTA: Aquesta clau no est� protegida!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5374,34 +5377,34 @@ msgstr "" "les\n" "disponibles a altres!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Seleccioneu la ra� de la revocaci�:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Cancel�la" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Segurament voleu seleccionar %d ac�)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" "Introdu�u una descripci� opcional; finalitzeu amb una l�nia en blanc:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Ra� de la revocaci�: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(No es va donar una descripci�)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "�s a�� correcte? " @@ -5587,12 +5590,12 @@ msgstr "" "nom�s podeu fer signatures separades amb claus d'estil PGP 2.x mentre " "esteu en mode --pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "s'est� escrivint en �%s�\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5600,50 +5603,43 @@ msgstr "" "for�ar l'algoritme de digest %s (%d) viola les prefer�ncies del " "destinatari\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "signatura:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "no es pot obrir el fitxer: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "nom�s podeu signar en clar amb claus d'estil PGP 2.x en el mode --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "s'utilitzar� xifratge %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "la clau no est� marcada com a insegura - no es pot utilitzar amb el GNA " "fals!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "es descarta �%s�: duplicat\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "es descarta �%s�: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "es descarta: la clau secreta ja �s present\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "es descarta �%s�: �s una clau ElGamal generada per PGP que no �s " "segura per a signatures!\n" @@ -6310,6 +6306,20 @@ msgstr "l'operaci� no �s possible sense mem�ria segura inicialitzada\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(potser heu utilitzat el programa erroni per a aquesta tasca)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "no es pot fet aix� en mode desat�s\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "no s'ha trobat la clau �%s�: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "no s'ha pogut crear �%s�: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "no es pot obrir el fitxer: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/cs.po b/po/cs.po index ee897d586..ea68e88ad 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.2.3\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-12-07 16:20+0200\n" "Last-Translator: Roman Pavlik \n" "Language-Team: Czech \n" @@ -34,9 +34,10 @@ msgstr "nebyl detekov #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "nemohu otevt `%s': %s\n" @@ -68,8 +69,9 @@ msgstr "nemohu msgid "note: random_seed file not updated\n" msgstr "poznmka: soubor random_seed nen aktualizovn\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "nemohu vytvoit `%s': %s\n" @@ -293,8 +295,10 @@ msgstr "tajn msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" msgstr "nelze provst v dvkovm mdu\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -469,7 +473,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Neplatn vbr.\n" @@ -628,11 +632,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "nelze provst v dvkovm mdu\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Pkaz> " @@ -641,7 +641,17 @@ msgstr "P msgid "Admin-only command\n" msgstr "konfliktn pkazy\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "konfliktn pkazy\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "zapisuji tajn kl do `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Neplatn pkaz (zkuste \"help\")\n" @@ -668,8 +678,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "nelze otevt `%s'\n" @@ -678,13 +688,14 @@ msgstr "nelze otev msgid "--output doesn't work for this command\n" msgstr "--output pro tento pkaz nen platn\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "kl `%s' nenalezen: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "chyba pi ten bloku kle: %s\n" @@ -694,7 +705,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(dokud neurte kl jeho fingerprintem)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "bez parametru \"--yes\" to nemohu v dvkovm mdu provst\n" #: g10/delkey.c:139 @@ -726,7 +738,7 @@ msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "" "abyste ho smazal(a), pouijte nejprve parametr \"--delete-secret-key\".\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "chyba pi vytven hesla: %s\n" @@ -771,7 +783,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "vydan symetrick ifra %s (%d) nevyhovuje pedvolbm pjemce\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -846,11 +858,6 @@ msgstr "nelze spustit %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "nelze spustit %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "nemohu vytvoit `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1148,7 +1155,7 @@ msgstr "" msgid "Pubkey: " msgstr "Veejn kl: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "ifra: " @@ -1156,7 +1163,7 @@ msgstr " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Komprese: " @@ -1281,7 +1288,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s nen platn znakov sada\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nelze pout URI serveru kl - chyba analzy URI\n" @@ -2423,29 +2430,29 @@ msgstr "[revokace]" msgid "[self-signature]" msgstr "[podpis kle jm samm]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 patn podpis\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d patnch podpis\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 podpis neoven, protoe chyb kl\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d podpis neovench, protoe chyb kl\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 podpis neoven, protoe vznikla chyba\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d podpis neovench, protoe vznikly chyby\n" @@ -2499,12 +2506,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Uivatelsk ID \"%s\" je revokovno." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Jste si jist(), e stle chcete podepsat tento kl? (a/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Nelze podepsat.\n" @@ -2708,7 +2715,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Skuten podepsat? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3061,240 +3068,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "ukzat fotografick ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "chyba pi ten bloku tajnho kle `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Tajn kl je dostupn.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Pro proveden tto operace je poteba tajn kl.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Prosm, nejdve pouijte pkaz \"toggle\" (pepnout).\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Kl revokovn." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Opravdu podepsat vechny id uivatele? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Npovda: Vyberte id uivatele k podepsn\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tento pkaz nen v md %s dovolen.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Muste vybrat alespo jeden id uivatele.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Nemete smazat posledn id uivatele!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Opravdu odstranit vechny vybran id uivatele? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Opravdu odstranit tento id uivatele? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Opravdu odstranit tento id uivatele? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Muste vybrat alespo jeden kl.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Muste vybrat alespo jeden kl.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Opravdu chcete smazat vybran kle? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Opravdu chcete smazat tento kl? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Opravdu odstranit vechny vybran id uivatele? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Opravdu odstranit tento id uivatele? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Opravdu chcete revokovat vybran kle? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Opravdu chcete revokovat tento kl? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "nastavit seznam pedvoleb" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Opravdu aktualizovat pedvolby pro vybran id uivatele? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Opravdu aktualizovat pedvolby? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Uloit zmny? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Ukonit bez uloen? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "aktualizace selhala: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "aktualizace tajnho kle selhala: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Kl nebyl zmnn, take nen poteba jej aktualizovat.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Hash: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Vlastnosti: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Tento kl me bt revokovn klem %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr "(citliv informace)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%s: nemohu vytvoit: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revokovn] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [platnost skon: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [platnost skon: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr "dvra: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr "dvra: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Tento kl byl oznaen za neplatn (disabled)" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revokovn] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Uivatelsk ID formtu PGP 2.x nem dn pedvolby\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3302,7 +3309,7 @@ msgstr "" "Prosm nezapomete, e zobrazovan daje o platnosti kl nemus\n" "bt nutn sprvn, dokud znova nespustte program.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3310,7 +3317,7 @@ msgstr "" "VAROVN: dn uivatelsk ID nebylo oznaeno jako primrn. Tento pkaz\n" " me zpsobit, e za primrn bude povaovno jin user ID.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3319,45 +3326,45 @@ msgstr "" "VAROVN: Toto je PGP2 kl. Pidn fotografickho ID me v nkterch\n" " verzch PGP vst k odmtnut tohoto kle.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Jste si jist, e jej chcete stle pidat? (a/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Nemli by jste pidvat fotografick ID k PGP2 kli.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Smazat tento dobr podpis? (a/N/u)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Smazat tento neplatn podpis? (a/N/u)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Smazat tento neznm podpis? (a/N/u)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Opravdu smazat tento podpis podepsan sebou samm? (a/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Smazn %d podpis.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Smazno %d podpis.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nic nebylo smazno.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3366,160 +3373,160 @@ msgstr "" "VAROVN: Toto je PGP2 kl. Pidn 'poven revokace' me v nkterch\n" " verzch PGP vst k odmtnut tohoto kle.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Nemli by jste pidvat 'poven revokace' k PGP2 kli.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Vlote identifiktor uivatele povenho revokac: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "kl formtu PGP 2.x nelze povit revokac\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "kl nelze povit revokac jm samm\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "VAROVN: Tento kl byl revokovn klem s povenm k revokaci!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "VAROVN: ustanoven kle 'povenm revoktorem' je nevratn operace!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Jste si jist, e tento kl chcete povit revokac? (a/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Prosm, odstrate vbr z tajnch kl.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Prosm, vyberte nejve jeden sekundrn kl.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Mnm dobu platnosti sekundrnho kle.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Mnm dobu platnosti primrnho kle.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Nemete zmnit dobu platnosti kle verze 3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Prosm, vyberte prv jeden id uivatele .\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "peskoen v3 podpis kle jm samm u uivatelskho id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Jste si jist(), e jej chcete pout (a/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Jste si jist(), e jej chcete pout (a/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Neexistuje identifiktor uivatele s indexem %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Neexistuje sekundrn kl s indexem %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "id uivatele: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " podepsno %08lX v %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (neexportovateln)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Platnost podpisu vypr %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Jste si jist, e jej chcete stle revokovat? (a/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Vytvoit pro tento podpis revokan certifikt? (a/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Podepsal(a) jste nsledujc identifiktory uivatele:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (neexportovateln)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revokovno %08lX v %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Chystte se revokovat tyto podpisy:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Opravdu vytvoit revokan certifikty? (a/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "neexistuje tajn kl\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "Uivatelsk ID \"%s\" je ji revokovno.\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "VAROVN: podpis ID uivatele je datovn %d sekund v budoucnosti\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4031,107 +4038,107 @@ msgstr "" msgid "never " msgstr "nikdy " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kritick podepisovac politika: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Podepisovac politika: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "VAROVN: nalezen neplatn formt zpisu data\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kritick podepisovac notace: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Podepisovac notace: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "nen v pmo itelnm formtu" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "soubor kl (keyring)" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [platnost skon: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Primrn fingerprint kle:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Fingerprint podkle:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Primrn fingerprint kle:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Fingerprint podkle:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Fingerprint kle =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "kdovn do ASCII formtu selhalo: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "VAROVN: Existuj dva soubory s tajnmi informacemi.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s je beze zmny\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s je nov\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Prosm, opravte tento mon bezpenostn problm\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "kontroluji soubor kl (keyring) `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu kl zkontrolovn (%lu podpis)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu kl zkontrolovn (%lu podpis)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: soubor kl (keyring) vytvoen\n" @@ -4254,11 +4261,6 @@ msgstr "z msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "kl `%s' nenalezen: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4695,7 +4697,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problm s agentem: agent vrac 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "v dvkovm reimu se nemohu ptt na heslo\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4772,23 +4775,23 @@ msgstr "Je tato fotografie spr msgid "unable to display photo ID!\n" msgstr "nelze zobrazit photo ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Dvod nebyl specifikovn" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Kl je nahrazen" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Kl byl zkompromitovn" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Kl se ji nepouv" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Identifiktor uivatele ji neplat" @@ -4859,7 +4862,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Vae rozhodnut? " @@ -5014,8 +5017,8 @@ msgid "skipped: public key already set\n" msgstr "peskoeno: veejn kl je ji nastaven\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "neznm implicitn adrest `%s'\n" #: g10/pkclist.c:948 @@ -5046,15 +5049,15 @@ msgstr "Podpis odd msgid "Please enter name of data file: " msgstr "Prosm, vlote nzev datovho souboru: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "tu standardn vstup ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "chyb podepsan data\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "nemohu otevt podepsan data '%s'\n" @@ -5092,7 +5095,7 @@ msgid "NOTE: key has been revoked" msgstr "POZNMKA: kl byl revokovn" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "selhalo vytvoen paketu (build_packet): %s\n" @@ -5102,65 +5105,65 @@ msgstr "selhalo vytvo msgid "key %s has no user IDs\n" msgstr "kl %08lX: chyb identifiktor uivatele\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Revokovn:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Toto je citliv revokan kl)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Vytvoit pro tento kl revokan certifikt? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "nazen vstup do formtu ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "vytvoen podepisovacho paketu (make_keysig_packet) selhalo: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Revokan certifikt vytvoen.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "pro `%s' nebyl nalezen dn revokan kl\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "tajn kl `%s' nenalezen: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "neexistuje odpovdajc veejn kl: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "veejn kl neodpovd tajnmu kli!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Vytvoit pro tento kl revokan certifikt? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "neznm kompresn algoritmus\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "POZNMKA: Tento kl nen chrnn!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5179,33 +5182,33 @@ msgstr "" "na Vaem potai me ukldat data uren k tisku a zpstupnist je\n" "jinm uivatelm!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Prosm vyberte dvod revokace:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Zruit" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Pravdpodobn zda chcete vybrat %d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Mete vloit dal popis. Ukonete przdnm dkem:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Dvod revokace: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Nebyl zadn dn popis)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Je dvod revokace vybrn sprvn? " @@ -5378,61 +5381,54 @@ msgstr "" "v mdu --pgp2 mete vytvoit pouze oddlen podpis (detach-sign)s kli " "formtu PGP-2.x\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "zapisuji do '%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "vydan hashovac algoritmus %s (%d) nevyhovuje pedvolbm pjemce\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "podepisuji:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "nelze otevt soubor: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "v mdu --pgp2 mete vytvet jen iteln podpisy s kli formtu PGP-2.x\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "bude pouito ifrovn %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "kl nen oznaen jako nedostaten bezpen - nemohu jej pout s padlanm " "RNG!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "peskoen `%s': duplikovn\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "peskoen `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "peskoeno: tajn kl je u v databzi\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "peskoen `%s': toto je vygenerovan PGP kl podle algoritmu ElGamal,\n" "podpisy vytvoen tmto klem nejsou bezpen!\n" @@ -6063,6 +6059,20 @@ msgstr "prov msgid "(you may have used the wrong program for this task)\n" msgstr "(pravdpodobn jste pro tento kol pouili nesprvn program)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "nelze provst v dvkovm mdu\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "kl `%s' nenalezen: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "nemohu vytvoit `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "nelze otevt soubor: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/da.po b/po/da.po index 50654ce8d..7ebbc8236 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-12-03 16:11+0100\n" "Last-Translator: Birger Langkjer \n" "Language-Team: Danish \n" @@ -37,9 +37,10 @@ msgstr "" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" @@ -71,8 +72,9 @@ msgstr "kan ikke msgid "note: random_seed file not updated\n" msgstr "" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, fuzzy, c-format msgid "can't create `%s': %s\n" msgstr "kan ikke oprette %s: %s\n" @@ -294,8 +296,9 @@ msgstr "hemmelig n msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +msgid "can't do this in batch mode\n" msgstr "" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -471,7 +474,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Ugyldigt valg.\n" @@ -629,11 +632,7 @@ msgstr "kodeord" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "" @@ -642,7 +641,17 @@ msgstr "" msgid "Admin-only command\n" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "konfliktende kommandoer\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "skriver hemmeligt certifikat til '%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "" @@ -670,8 +679,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Indtast bruger-id: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke bne `%s'\n" @@ -680,13 +689,14 @@ msgstr "kan ikke msgid "--output doesn't work for this command\n" msgstr "" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 #, fuzzy, c-format -msgid "key `%s' not found: %s\n" +msgid "key \"%s\" not found: %s\n" msgstr "%s: bruger ikke fundet: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, fuzzy, c-format msgid "error reading keyblock: %s\n" msgstr "fejl ved lsning af '%s': %s\n" @@ -696,7 +706,7 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "" #: g10/delkey.c:139 @@ -726,7 +736,7 @@ msgstr "" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "fejl ved oprettelse af kodestning: %s\n" @@ -770,7 +780,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -839,11 +849,6 @@ msgstr "kan ikke msgid "unable to execute shell `%s': %s\n" msgstr "kan ikke bne %s: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "kan ikke oprette %s: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1140,7 +1145,7 @@ msgstr "" msgid "Pubkey: " msgstr "" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "" @@ -1148,7 +1153,7 @@ msgstr "" msgid "Hash: " msgstr "" -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 #, fuzzy msgid "Compression: " msgstr "Kommentar: " @@ -1268,7 +1273,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "importr ngler fra en ngleserver: %s\n" @@ -2318,29 +2323,29 @@ msgstr "" msgid "[self-signature]" msgstr "[selv-signatur]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 drlig signature\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d drlige signaturer\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "" @@ -2389,13 +2394,13 @@ msgid "User ID \"%s\" is revoked." msgstr "Nglen er beskyttet.\n" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 #, fuzzy msgid "Are you sure you still want to sign it? (y/N) " msgstr "Er du sikker p at de vil benytte denne nglestrrelse? " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr "" @@ -2563,7 +2568,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Vil du gerne signere? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -2929,462 +2934,462 @@ msgstr "" msgid "show photo ID" msgstr "" -#: g10/keyedit.c:1344 +#: g10/keyedit.c:1347 #, fuzzy, c-format -msgid "error reading secret keyblock `%s': %s\n" +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 #, fuzzy msgid "Key is revoked." msgstr "Nglen er beskyttet.\n" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Vil du gerne signere? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Vil du virkelig oprette?" -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Vil du virkelig oprette?" -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 msgid "Really move the primary key? (y/N) " msgstr "" -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Vlg venligst hvilken slags ngle du vil have:\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Vil du gerne oprette en underskrivnings- og krypteringsngle? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Vil du virkelig gerne gre dette?" -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Vil du virkelig oprette?" -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Vil du virkelig oprette?" -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Vil du gerne oprette en underskrivnings- og krypteringsngle? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Vil du virkelig gerne gre dette?" -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "vis prferencer" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Generr en annullrbar certifikat" -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Generr en annullrbar certifikat" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Gem ndringer? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Afslut uden at gemme? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "" -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "" -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, fuzzy, c-format msgid "This key may be revoked by %s key " msgstr "ADVARSEL: Denne ngle er blevet annulleret af dets ejer!\n" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr "" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "kan ikke oprette %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "tilfj ngle" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "Ngle udlber d. %s\n" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "Ngle udlber d. %s\n" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr "betro" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr "betro" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "tilfj ngle" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "udlb" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" msgstr "" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" " of PGP to reject this key.\n" msgstr "" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 #, fuzzy msgid "Are you sure you still want to add it? (y/N) " msgstr "Er du sikker p at de vil benytte denne nglestrrelse? " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Slettede %d signatur.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" " some versions of PGP to reject this key.\n" msgstr "" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 #, fuzzy msgid "Enter the user ID of the designated revoker: " msgstr "Indtast nglens strrelse" -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "ADVARSEL: Denne ngle er blevet annulleret af dets ejer!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Er du sikker p at de vil benytte denne nglestrrelse? " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 #, fuzzy msgid "Please select exactly one user ID.\n" msgstr "Vlg venligst hvilken slags ngle du vil have:\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "ngle %08lX: ingen gyldige bruger-id'er\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Er du sikker p at de vil benytte denne nglestrrelse? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Er du sikker p at de vil benytte denne nglestrrelse? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Ingen bruger-id med indeks %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Ingen sekundr ngle med indeks %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "bruger-id: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, c-format msgid "signed by your key %s on %s%s%s\n" msgstr "" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr "" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, fuzzy, c-format msgid "This signature expired on %s.\n" msgstr "Denne ngle er ikke beskyttet.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 #, fuzzy msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Er du sikker p at de vil benytte denne nglestrrelse? " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 #, fuzzy msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Generr en annullrbar certifikat" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr "signr en ngle lokalt" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr "ADVARSEL: Denne ngle er blevet annulleret af dets ejer!\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 #, fuzzy msgid "Really create the revocation certificates? (y/N) " msgstr "Generr en annullrbar certifikat" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, fuzzy, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "Nglen er beskyttet.\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -3850,113 +3855,113 @@ msgstr "" msgid "never " msgstr "" -#: g10/keylist.c:186 +#: g10/keylist.c:201 #, fuzzy msgid "Critical signature policy: " msgstr "%s signatur fra: %s\n" -#: g10/keylist.c:188 +#: g10/keylist.c:203 #, fuzzy msgid "Signature policy: " msgstr "%s signatur fra: %s\n" -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "" -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "" -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "Ngle udlber d. %s\n" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 #, fuzzy msgid "Primary key fingerprint:" msgstr "vis ngle og fingeraftryk" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 #, fuzzy msgid " Subkey fingerprint:" msgstr " Fingeraftryk:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 #, fuzzy msgid " Primary key fingerprint:" msgstr " Fingeraftryk:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 #, fuzzy msgid " Subkey fingerprint:" msgstr " Fingeraftryk:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Fingeraftryk:" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "fejl ved skrivning af nglering `%s': %s\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "vis ngler og signaturer" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "vis ngler og signaturer" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "" @@ -4077,11 +4082,6 @@ msgstr "p msgid "\"%s\" not a key ID: skipping\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "%s: bruger ikke fundet: %s\n" - #: g10/keyserver.c:1578 #, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4514,7 +4514,7 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +msgid "can't query password in batch mode\n" msgstr "" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4588,24 +4588,24 @@ msgstr "Er dette korrekt (j/n)? " msgid "unable to display photo ID!\n" msgstr "kan ikke bne %s: %s\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 #, fuzzy msgid "Key is superseded" msgstr "Nglen er beskyttet.\n" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "" @@ -4677,7 +4677,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Dit valg? " @@ -4827,8 +4827,8 @@ msgid "skipped: public key already set\n" msgstr "%s: udelod: offentlig ngle er allerede tilstede\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "ukendt standard modtager '%s'\n" #: g10/pkclist.c:948 @@ -4857,15 +4857,15 @@ msgstr "" msgid "Please enter name of data file: " msgstr "" -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "lser stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "" @@ -4904,7 +4904,7 @@ msgid "NOTE: key has been revoked" msgstr "ngle %08lX: ngle er blevet annulleret!\n" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, fuzzy, c-format msgid "build_packet failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" @@ -4914,68 +4914,68 @@ msgstr "fjernelse af beskyttelse fejlede: %s\n" msgid "key %s has no user IDs\n" msgstr "ngle %08lX: ingen bruger-id\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Generr en annullrbar certifikat" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, fuzzy, c-format msgid "make_keysig_packet failed: %s\n" msgstr "signering fejlede: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 #, fuzzy msgid "Revocation certificate created.\n" msgstr "ngle %08lX: offentlig ngle importeret\n" -#: g10/revoke.c:375 +#: g10/revoke.c:376 #, c-format -msgid "no revocation keys found for `%s'\n" +msgid "no revocation keys found for \"%s\"\n" msgstr "" -#: g10/revoke.c:429 +#: g10/revoke.c:432 #, fuzzy, c-format -msgid "secret key `%s' not found: %s\n" +msgid "secret key \"%s\" not found: %s\n" msgstr "%s: bruger ikke fundet: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, fuzzy, c-format msgid "no corresponding public key: %s\n" msgstr "skriver offentligt certifikat til '%s'\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Generr en annullrbar certifikat" -#: g10/revoke.c:493 +#: g10/revoke.c:496 #, fuzzy msgid "unknown protection algorithm\n" msgstr "ukendt kompressionsalgoritme" -#: g10/revoke.c:497 +#: g10/revoke.c:500 #, fuzzy msgid "NOTE: This key is not protected!\n" msgstr "Denne ngle er ikke beskyttet.\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -4986,34 +4986,34 @@ msgid "" "your machine might store the data and make it available to others!\n" msgstr "" -#: g10/revoke.c:589 +#: g10/revoke.c:592 #, fuzzy msgid "Please select the reason for the revocation:\n" msgstr "rev- forkert ngletilbagekald\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, fuzzy, c-format msgid "Reason for revocation: %s\n" msgstr "rev- forkert ngletilbagekald\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Brug denne ngle alligevel? " @@ -5168,59 +5168,51 @@ msgstr "%s signatur fra: %s\n" msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "skriver til `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "signerer:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "kan ikke bne %s: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" -msgstr "" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" +msgstr "vis prferencer" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" -msgstr "" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" +msgstr "%s: udelod: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 #, fuzzy msgid "skipped: secret key already present\n" msgstr "udelod: hemmelig ngle er allerede tilstede\n" -#: g10/skclist.c:179 -#, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" #: g10/tdbdump.c:59 g10/trustdb.c:365 @@ -5843,6 +5835,18 @@ msgstr "operation er ikke mulig uden beskyttet hukommelse indl msgid "(you may have used the wrong program for this task)\n" msgstr "(du kan have brugt et forkert program til denne opgave)\n" +#, fuzzy +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "%s: bruger ikke fundet: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "kan ikke oprette %s: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "kan ikke bne %s: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/de.po b/po/de.po index eb90dd768..7d3eb2531 100644 --- a/po/de.po +++ b/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-10-05 10:11+0200\n" "Last-Translator: Walter Koch \n" "Language-Team: German \n" @@ -34,9 +34,10 @@ msgstr "Kein Modul zum sammeln von Entropie vorhanden\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "'%s' kann nicht geffnet werden: %s\n" @@ -69,8 +70,9 @@ msgstr "'%s' ist unlesbar: %s\n" msgid "note: random_seed file not updated\n" msgstr "Hinweis: 'random_seed'-Datei bleibt unverndert\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "'%s' kann nicht erzeugt werden: %s\n" @@ -296,8 +298,10 @@ msgstr "Geheimer Schl msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" msgstr "Dies kann im Batchmodus nicht durchgefhrt werden.\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -474,7 +478,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Ungltige Auswahl.\n" @@ -633,11 +637,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "Dies kann im Batchmodus nicht durchgefhrt werden.\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Befehl> " @@ -646,7 +646,17 @@ msgstr "Befehl> " msgid "Admin-only command\n" msgstr "Widersprchliche Befehle\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "Widersprchliche Befehle\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "schreiben des geheimen Schlssels nach '%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Ungltiger Befehl (versuchen Sie's mal mit \"help\")\n" @@ -674,8 +684,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Geben Sie die User-ID ein: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "'%s' kann nicht geffnet werden\n" @@ -684,13 +694,14 @@ msgstr "'%s' kann nicht ge msgid "--output doesn't work for this command\n" msgstr "--output funktioniert nicht bei diesem Kommando\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "Schlssel `%s' nicht gefunden: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "Fehler beim Lesen des Schlsselblocks: %s\n" @@ -700,7 +711,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(es sei denn, Sie geben den Schlssel mittels Fingerprint an)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "Dies kann im Batchmodus ohne \"--yes\" nicht durchgefhrt werden.\n" #: g10/delkey.c:139 @@ -734,7 +746,7 @@ msgstr "" "Verwenden Sie zunchst das Kommando \"--delete-secret-key\", um ihn zu " "entfernen.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "Fehler beim Erzeugen der Passphrase: %s\n" @@ -786,7 +798,7 @@ msgstr "" "Erzwungene Verwendung des symmetrischen Verschlsselungsverfahren %s (%d) " "verletzt die Empfngervoreinstellungen\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -865,11 +877,6 @@ msgstr "Ausf msgid "unable to execute shell `%s': %s\n" msgstr "Ausfhren von %s \"%s\" nicht mglich: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "'%s' kann nicht erzeugt werden: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1168,7 +1175,7 @@ msgstr "" msgid "Pubkey: " msgstr "ff.Schlssel: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Verschl.: " @@ -1176,7 +1183,7 @@ msgstr "Verschl msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Komprimierung: " @@ -1305,7 +1312,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s ist kein gltiger Zeichensatz.\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "Schlsselserver-URI konnte nicht zerlegt werden\n" @@ -2483,29 +2490,29 @@ msgstr "[Widerruf]" msgid "[self-signature]" msgstr "[Eigenbeglaubigung]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 falsche Beglaubigung\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d falsche Beglaubigungen\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 Beglaubigung wegen fehlendem Schlssel nicht geprft\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d Beglaubigungen wegen fehlenden Schlsseln nicht geprft\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 Beglaubigung aufgrund von Fehler nicht geprft\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d Beglaubigungen aufgrund von Fehlern nicht geprft\n" @@ -2565,12 +2572,12 @@ msgid "User ID \"%s\" is revoked." msgstr "User-ID \"%s\" ist widerrufen." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Wollen Sie ihn immmer noch beglaubigen? (j/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Beglaubigen ist nicht mglich.\n" @@ -2775,7 +2782,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Wirklich unterschreiben? (j/N) " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3126,241 +3133,241 @@ msgstr "showphoto" msgid "show photo ID" msgstr "Foto-ID anzeigen" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "Fehler beim Lesen des geheimen Schlsselblocks `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Geheimer Schlssel ist vorhanden.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Hierzu wird der geheime Schlssel bentigt.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Bitte verwenden sie zunchst den Befehl \"toggle\"\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Schlssel wurde widerrufen." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Wirklich alle User-IDs beglaubigen? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Tip: Whlen Sie die User-IDs, die beglaubigt werden sollen\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Dieses Kommando ist im %s-Modus nicht erlaubt.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Zumindestens eine User-ID mu ausgewhlt werden.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Die letzte User-ID kann nicht gelscht werden!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Mchten Sie alle ausgewhlten User-IDs wirklich entfernen? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Diese User-ID wirklich entfernen? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Diese User-ID wirklich entfernen? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Zumindestens ein Schlssel mu ausgewhlt werden.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Zumindestens ein Schlssel mu ausgewhlt werden.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Mchten Sie die ausgewhlten Schlssel wirklich entfernen? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Mchten Sie diesen Schlssel wirklich entfernen? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Mchten Sie wirklich alle ausgewhlten User-IDs widerrufen? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Diese User-ID wirklich widerrufen? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Mchten Sie die ausgewhlten Schlssel wirklich widerrufen? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Mchten Sie diesen Schlssel wirklich wiederrufen? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "Liste der Voreinstellungen einstellen" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Mchten Sie die Voreinstellungen der ausgewhlten User-IDs wirklich ndern? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Die Voreinstellungen wirklich ndern? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "nderungen speichern? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Beenden ohne zu speichern? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "nderung fehlgeschlagen: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "nderung des Geheimnisses fehlgeschlagen: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Schlssel ist nicht gendert worden, also ist kein Speichern ntig.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Digest: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Eigenschaften: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "Keyserver no-modify" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Dieser Schlssel knnte widerrufen worden sein von %s Schlssel " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr "(empfindlich)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%s kann nicht erzeugt werden: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[widerrufen]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [verfllt: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [verfllt: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " Vertrauen: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " Vertrauen: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "Gltigkeit: %s" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Hinweis: Dieser Schlssel ist abgeschaltet" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[widerrufen]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "PGP 2.x-artige Schlssel haben keine Voreinstellungen.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3369,7 +3376,7 @@ msgstr "" "Schlsselgltigkeit nicht notwendigerweise korrekt ist.\n" # translated by wk -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3377,7 +3384,7 @@ msgstr "" "WARNUNG: Keine User-ID ist als primr markiert. Dieses Kommando kann\n" "dazu fhren, da eine andere User-ID as primr angesehen wird.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3387,45 +3394,45 @@ msgstr "" "knnte\n" " bei einigen PGP-Versionen zur Zurckweisung des Schlssels fhren.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Wollen Sie ihn immmer noch hinzufgen? (j/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Sie knnen einem PGP2-artigen Schlsel keine Foto-ID hinzufgen.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Diese korrekte Beglaubigung entfernen? (j/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Diese ungltige Beglaubigung entfernen= (j/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Diese unbekannte Beglaubigung entfernen? (j/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Eigenbeglaubigung wirklich entfernen? (j/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d Beglaubigungen entfernt.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d Beglaubigungen entfernt.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nichts entfernt.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3435,37 +3442,37 @@ msgstr "" " Widerrufers knnte bei einigen PGP-Versionen zur Zurckweisung\n" " des Schlssels fhren.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "Sie knnen einem PGP2-artigen Schlsel keine vorgesehenen Widerrufer " "hinzufgen.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Geben sie die User-ID des designierten Widerrufers ein: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "Ein PGP 2.x-artiger Schlssel kann nicht als vorgesehener Widerrufer " "eingetragen werden\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "Ein Schlssel kann nicht sein eigener vorgesehener Widerrufer werden\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 msgid "this key has already been designated as a revoker\n" msgstr "Dieser Schlssel wurde bereits als ein Widerrufer vorgesehen\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "WARNUNG: Einen Schlssel als vorgesehenen Widerrufer zu deklarieren, kann " "nicht rckgangig gemacht werden!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " @@ -3473,129 +3480,129 @@ msgstr "" "Mchten Sie diesen Schlssel wirklich als vorgesehenen Widerrufer " "deklarieren? (j/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Bitte entfernen Sie die Auswahl von den geheimen Schlsseln.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Bitte whlen Sie hchstens einen Zweitschlssel aus.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "ndern des Verfallsdatums des Zweitschlssels.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "ndern des Verfallsdatums des Hauptschlssels.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Sie knnen das Verfallsdatum eines v3-Schlssels nicht ndern\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Keine entsprechende Signatur im geheimen Schlsselbund\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Bitte genau eine User-ID auswhlen.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "berspringen der v3 Eigenbeglaubigung von User-ID \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Wollen Sie es wirklich benutzen? (j/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Wollen Sie es wirklich benutzen? (j/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Keine User-ID mit Index %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Kein Zweitschlssel mit Index %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "User-ID: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " beglaubigt durch %08lX um %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (nicht-exportierbar)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Diese Unterschrift ist seit %s verfallen.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Wollen Sie ihn immmer noch widerrufen? (j/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Ein Widerrufszertifikat fr diese Unterschrift erzeugen (j/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Sie haben folgende User-IDs beglaubigt:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (nicht-exportierbar)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " widerrufen durch %08lX um %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Es werden nun folgende Beglaubigungen entfernt:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Wirklich ein Unterschrift-Widerrufszertifikat erzeugen? (j/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "Kein geheimer Schlssel\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "User-ID \"%s\" ist bereits widerrufen\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "WARNUNG: Eine User-ID-Unterschrift datiert mit %d Sekunden aus der Zukunft\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4102,107 +4109,107 @@ msgstr "" msgid "never " msgstr "niemals " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Krititische Beglaubigungsrichtlinie: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Beglaubigungsrichtlinie: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "WARNUNG: Ungltige \"Notation\"-Daten gefunden\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Krititische Beglaubigungs-\"Notation\": " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Beglaubigungs-\"Notation\": " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "nicht als Klartext darstellbar" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Schlsselbund" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [verfllt: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Haupt-Fingerabdruck =" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr "Unter-Fingerabdruck =" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Haupt-Fingerabdruck =" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Unter-Fingerabdruck =" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Schl.-Fingerabdruck =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "Anbringen der ASCII-Hlle ist fehlgeschlagen: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "Warnung: Zwei Dateien mit vertraulichem Inhalt vorhanden.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s ist der Unvernderte\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s ist der Neue\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Bitte diesen potentiellen Sicherheitsmangel beseitigen\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "Prfen des Schlsselbundes `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu Schlssel bislang geprft (%lu Beglaubigungen)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu Schlssel geprft (%lu Beglaubigungen)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: Schlsselbund erstellt\n" @@ -4326,11 +4333,6 @@ msgstr "Empfangen vom Schl msgid "\"%s\" not a key ID: skipping\n" msgstr "%s: Dies ist keine gltige Schlssel-ID\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "Schlssel `%s' nicht gefunden: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4769,7 +4771,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "Schwierigkeiten mit dem Agenten: Agent antwortet 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "Passphrase kann im Batchmodus nicht abgefragt werden\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4848,23 +4851,23 @@ msgstr "Ist dieses Bild richtig? (j/N) " msgid "unable to display photo ID!\n" msgstr "Die Photo ID kann nicht angezeigt werden!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Kein Grund angegeben" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Schlssel ist berholt" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Hinweis: Dieser Schlssel ist nicht mehr sicher" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Schlssel wird nicht mehr benutzt" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "User-ID ist nicht mehr gltig" @@ -4935,7 +4938,7 @@ msgid "" "\n" msgstr "Die minimale Trust-Ebene fr diesen Schlssel betrgt: %s\n" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Ihre Auswahl? " @@ -5102,8 +5105,8 @@ msgid "skipped: public key already set\n" msgstr "bersprungen: ffentlicher Schlssel bereits gesetzt\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "Unbekannter voreingestellter Empfnger '%s'\n" #: g10/pkclist.c:948 @@ -5133,15 +5136,15 @@ msgstr "Abgetrennte Beglaubigungen.\n" msgid "Please enter name of data file: " msgstr "Bitte geben Sie den Namen der Datendatei ein: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "lese stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "keine unterschriebene Daten\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "kann signierte Datei '%s' nicht ffnen.\n" @@ -5179,7 +5182,7 @@ msgid "NOTE: key has been revoked" msgstr "Hinweis: Schlssel wurde widerrufen" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "\"build_packet\" fehlgeschlagen: %s\n" @@ -5189,66 +5192,66 @@ msgstr "\"build_packet\" fehlgeschlagen: %s\n" msgid "key %s has no user IDs\n" msgstr "Schlssel %08lX: Keine User-ID\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Schlssel soll widerrufen werden von:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Dies ist ein \"sensitiver\" Widerrufsschlssel)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Ein Widerrufszertifikat fr diesen Schlssel erzeugen? (j/N) " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Ausgabe mit ASCII Hlle erzwungen\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "\"make_keysig_packet\" fehlgeschlagen: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Widerrufzertifikat erzeugt.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "Widerrufsschlssel fr `%s' nicht gefunden\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "Geheimer Schlssel `%s' nicht gefunden: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "kein zugehriger ffentlicher Schlssel: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "ffentliche Schlssel pat nicht zum geheimen Schlssel!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Ein Widerrufszertifikat fr diesen Schlssel erzeugen? (j/N) " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "Unbekanntes Schutzverfahren\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "Dieser Schlssel ist nicht geschtzt.\n" # translated by wk -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5268,34 +5271,34 @@ msgstr "" "Drucksystem kann unter Umstnden eine Kopie anderen Nutzern zugnglich\n" "machen.\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Grund fr den Widerruf:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Abbruch" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Wahrscheinlich mchten Sie hier %d auswhlen)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" "Geben Sie eine optionale Beschreibung ein. Beenden mit einer leeren Zeile:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Grund fr Widerruf: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Keine Beschreibung angegeben)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Ist das richtig? " @@ -5485,63 +5488,56 @@ msgstr "" "Im --pgp2-Modus kann nur mit PGP-2.x-artigen Schlsseln eine abgetrennte " "Unterschrift erzeugt werden\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "Schreiben nach '%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "Erzwingen des Hashverfahrens %s (%d) verletzt die Empfngervoreinstellungen\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "unterschreibe:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "Datei kann nicht geffnet werden: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "Im --pgp2-Modus knnen Sie Klartextunterschriften nur mit PGP-2.x-artigen " "Schlssel machen\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s Verschlsselung wird verwendet\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "Schlssel ist nicht als unsicher gekennzeichnet - er ist nur mit einem\n" "echten Zufallsgenerator verwendbar\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "bersprungen '%s': doppelt\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "bersprungen '%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "bersprungen: geheimer Schlssel bereits vorhanden\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "'%s bersprungen: Dies ist ein durch PGP erzeugter ElGamal-Schlssel. Das " "ist fr Signaturen NICHT sicher genug!\n" @@ -6181,6 +6177,20 @@ msgid "(you may have used the wrong program for this task)\n" msgstr "" "(mglicherweise haben Sie das falsche Programm fr diese Aufgabe benutzt)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "Dies kann im Batchmodus nicht durchgefhrt werden.\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "Schlssel `%s' nicht gefunden: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "'%s' kann nicht erzeugt werden: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "Datei kann nicht geffnet werden: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/el.po b/po/el.po index 3c674b81b..7d61d5c29 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-06-27 12:00+0200\n" "Last-Translator: Dokianakis Theofanis \n" "Language-Team: Greek \n" @@ -36,9 +36,10 @@ msgstr " #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr " `%s': %s\n" @@ -72,8 +73,9 @@ msgstr " msgid "note: random_seed file not updated\n" msgstr ": random_seed\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr " `%s': %s\n" @@ -297,9 +299,11 @@ msgstr " msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr ", (batchmode)\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr " (batchmode)\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -473,7 +477,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr " .\n" @@ -632,11 +636,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr " (batchmode)\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "> " @@ -645,7 +645,17 @@ msgstr " msgid "Admin-only command\n" msgstr " \n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr " \n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr " `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr " ( \"help\")\n" @@ -672,8 +682,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr " `%s'\n" @@ -682,13 +692,14 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "--output \n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr " '%s' : %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr " : %s\n" @@ -698,7 +709,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "( )\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr " \"--yes\"\n" #: g10/delkey.c:139 @@ -730,7 +742,7 @@ msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "" " \"--delete-secret-key\" .\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr " : %s\n" @@ -780,7 +792,7 @@ msgstr "" " %s (%d) \n" " \n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -859,11 +871,6 @@ msgstr " msgid "unable to execute shell `%s': %s\n" msgstr " %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr " `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1157,7 +1164,7 @@ msgstr "" msgid "Pubkey: " msgstr ":" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr ": " @@ -1165,7 +1172,7 @@ msgstr " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr ": " @@ -1289,7 +1296,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr " %s \n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr " URI \n" @@ -2442,29 +2449,29 @@ msgstr "[ msgid "[self-signature]" msgstr "[-]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 \n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d \n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 \n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d \n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 \n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d \n" @@ -2518,12 +2525,12 @@ msgid "User ID \"%s\" is revoked." msgstr " user ID \"%s\" ." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr " ; (y/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " .\n" @@ -2727,7 +2734,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr " ; " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3078,241 +3085,241 @@ msgstr "showphoto" msgid "show photo ID" msgstr " photo ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr " `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr " .\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr " .\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr " \"toggle\" .\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr " ." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr " user ID; " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr ": user ID \n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr " %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr " user ID.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr " user ID!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr " user ID; " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr " user ID; " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr " user ID; " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr " .\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr " .\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr " ; " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr " ; " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr " user ID; " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr " user ID; " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr " ; " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr " ; " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr " " -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" " user ID; " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr " ;" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr " ; " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr " ; " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr " : %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr " : %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr " .\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr ": " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr ": " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr " %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " ()" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr " %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " : %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " : %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr " " -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr " user ID PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3320,7 +3327,7 @@ msgstr "" " \n" " .\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3328,7 +3335,7 @@ msgstr "" ": ID . \n" " ID .\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3337,45 +3344,45 @@ msgstr "" ": PGP2. photo ID\n" " PGP .\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr " ; (y/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr " photo ID PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr " ; (y/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr " ; (y/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr " ; (y/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr " -; (y/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr " %d .\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr " %d .\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr " .\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3385,38 +3392,38 @@ msgstr "" " PGP\n" " .\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" " PGP2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr " user ID : " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" " PGP 2.x, \n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" " \n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "" ": !\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" ": " "!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " @@ -3424,129 +3431,129 @@ msgstr "" " ; (y/" "N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr " .\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr " .\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr " .\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr " .\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr " v3 \n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr " \n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr " user ID.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr " v3 - user id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr " ; (y/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr " ; (y/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr " user ID %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr " %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "user ID: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " %08lX %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (-)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr " %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr " ; " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr " ; (y/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr " user ID:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (-)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " %08lX %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr " :\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr " ; (y/N)" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr " \n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr " user ID \"%s\" \n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" ": user ID %d \n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr " %s photo ID %ld 0x%08lX (uid %d)\n" @@ -4060,107 +4067,107 @@ msgstr "" msgid "never " msgstr " " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr " : " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr " : " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr ": \n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr " : " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr " : " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr " " -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr " :" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " :" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " :" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " :" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr " : %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr ": 2 .\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s \n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s \n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr " \"\" \n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr " `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu (%lu )\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu (%lu )\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: \n" @@ -4284,11 +4291,6 @@ msgstr "keyserver msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr " '%s' : %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4724,7 +4726,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr " agent: agent 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr " \n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4801,23 +4804,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr " photo ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr " " -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr " " -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr " " -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr " " -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr " User ID " @@ -4888,7 +4891,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr " ; " @@ -5049,8 +5052,8 @@ msgid "skipped: public key already set\n" msgstr ": \n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr " `%s'\n" #: g10/pkclist.c:948 @@ -5079,15 +5082,15 @@ msgstr " msgid "Please enter name of data file: " msgstr " : " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr " stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr " \n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr " `%s'\n" @@ -5125,7 +5128,7 @@ msgid "NOTE: key has been revoked" msgstr ": " #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet : %s\n" @@ -5135,65 +5138,65 @@ msgstr "build_packet msgid "key %s has no user IDs\n" msgstr " %08lX: user ID\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr " :\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "( )\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr " ; " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr " ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet : %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr " .\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr " `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr " `%s' : %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr " : %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr " !\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr " ; " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr " \n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr ": !\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5212,33 +5215,33 @@ msgstr "" " \n" " !\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr " :\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "( %d )\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr " ޷ :\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr " : %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "( )\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr " ; " @@ -5417,12 +5420,12 @@ msgstr "" " - PGP 2.x \n" "--pgp2 \n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr " `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5430,50 +5433,43 @@ msgstr "" " %s (%d) \n" " \n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr ":" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr " : %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" " PGP 2.x --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s \n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" " - " " RNG!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr " `%s': \n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr " `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr ": \n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" " `%s': PGP ElGamal " " !\n" @@ -6104,6 +6100,20 @@ msgstr " msgid "(you may have used the wrong program for this task)\n" msgstr "( )\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr ", (batchmode)\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr " '%s' : %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr " `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr " : %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " \"" diff --git a/po/eo.po b/po/eo.po index 31a70740c..04a02dc53 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" @@ -35,9 +35,10 @@ msgstr "" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "ne povas malfermi '%s': %s\n" @@ -70,8 +71,9 @@ msgstr "ne povas legi '%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "noto: dosiero random_seed ne aktualigita\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "ne povas krei '%s': %s\n" @@ -293,9 +295,10 @@ msgstr "sekreta msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 #, fuzzy -msgid "sorry, can't do this in batch mode\n" +msgid "can't do this in batch mode\n" msgstr "ne povas fari tion en neinteraga reimo\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -470,7 +473,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Nevalida elekto.\n" @@ -629,11 +632,7 @@ msgstr "pasf" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "ne povas fari tion en neinteraga reimo\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Komando> " @@ -642,7 +641,17 @@ msgstr "Komando> " msgid "Admin-only command\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "malkongruaj komandoj\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "skribas sekretan losilon al '%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Nevalida komando (provu per \"helpo\")\n" @@ -670,8 +679,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Donu la uzantidentigilon: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "ne povas malfermi '%s'\n" @@ -680,13 +689,14 @@ msgstr "ne povas malfermi '%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output ne funkcias por i tiu komando\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "losilo '%s' ne trovita: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "eraro dum legado de losilbloko: %s\n" @@ -696,7 +706,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "ne povas fari tion en neinteraga reimo sen \"--yes\"\n" #: g10/delkey.c:139 @@ -727,7 +738,7 @@ msgstr "estas sekreta msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "uzu la opcion \"--delete-secret-key\" por forvii in unue.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" @@ -771,7 +782,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "NOTO: ifrad-metodo %d ne trovita en preferoj\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -842,11 +853,6 @@ msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" msgid "unable to execute shell `%s': %s\n" msgstr "ne povas malfermi %s: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "ne povas krei '%s': %s\n" - #: g10/exec.c:521 #, fuzzy, c-format msgid "system error while calling external program: %s\n" @@ -1140,7 +1146,7 @@ msgstr "" msgid "Pubkey: " msgstr "" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "" @@ -1148,7 +1154,7 @@ msgstr "" msgid "Hash: " msgstr "" -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 #, fuzzy msgid "Compression: " msgstr "Komento: " @@ -1268,7 +1274,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ne povis analizi URI de losilservilo\n" @@ -2402,29 +2408,29 @@ msgstr "[revoko]" msgid "[self-signature]" msgstr "[mem-subskribo]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 malbona subskribo\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d malbonaj subskriboj\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 subskribo ne kontrolita pro manko de losilo\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d subskriboj ne kontrolitaj pro manko de losiloj\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 subskribo ne kontrolita pro eraro\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d subskriboj ne kontrolitaj pro eraroj\n" @@ -2478,13 +2484,13 @@ msgid "User ID \"%s\" is revoked." msgstr "Uzantidentigilo \"%s\" estas revokita.\n" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 #, fuzzy msgid "Are you sure you still want to sign it? (y/N) " msgstr "u vi estas certa, ke vi ankora volas subskribi in?\n" #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr "" @@ -2701,7 +2707,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "u vere subskribi? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3058,253 +3064,253 @@ msgstr "monfoto" msgid "show photo ID" msgstr "montri foto-identigilon" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "eraro dum legado de sekreta losilbloko '%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Sekreta losilo estas havebla.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Bezonas la sekretan losilon por fari tion.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Bonvolu uzi la komandon \"toggle\" unue.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 #, fuzzy msgid "Key is revoked." msgstr "losilo estas revokita.\n" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "u vere subskribi iujn uzantidentigilojn? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Sugesto: Elekti la uzantidentigilojn por subskribi\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tiu komando ne eblas en la reimo %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Vi devas elekti almena unu uzantidentigilon.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Vi ne povas forvii la lastan uzantidentigilon!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "u vere forigi iujn elektitajn uzantidentigilojn? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "u vere forigi i tiun uzantidentigilon? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "u vere forigi i tiun uzantidentigilon? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Vi devas elekti almena unu losilon.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Vi devas elekti almena unu losilon.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "u vi vere volas forvii la elektitajn losilojn? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "u vi vere volas forvii i tiun losilon? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "u vere forigi iujn elektitajn uzantidentigilojn? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "u vere forigi i tiun uzantidentigilon? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "u vi vere volas revoki la elektitajn losilojn? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "u vi vere volas revoki i tiun losilon? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "agordi liston de preferoj" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "u vere aktualigi la preferojn por la elektitaj uzantidentigiloj? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "u vere aktualigi la preferojn? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "u skribi anojn? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "u fini sen skribi anojn? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "aktualigo de sekreto malsukcesis: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "losilo ne anita, do aktualigo ne necesas.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "" -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "" -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, fuzzy, c-format msgid "This key may be revoked by %s key " msgstr "i tiu losilo estas revokebla per %s losilo %s%s\n" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sentema)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "ne povas krei %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "rev" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [eksvalidios: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [eksvalidios: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " fido: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " fido: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "i tiu losilo estas malaltita" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "rev" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "eksval" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" msgstr "" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3313,46 +3319,46 @@ msgstr "" "AVERTO: i tiu estas PGP2-stila losilo. Aldono de foto-identigilo eble\n" " kazos, ke iuj versioj de PGP malakceptos la losilon.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 #, fuzzy msgid "Are you sure you still want to add it? (y/N) " msgstr "u vi estas certa, ke vi ankora volas aldoni in? (j/n) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Ne eblas aldoni foto-identigilon al PGP2-stila losilo.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "u forvii i tiun bonan subskribon? (j/N/f)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "u forvii i tiun nevalidan subskribon? (j/N/f)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "u forvii i tiun nekonatan subskribon? (j/N/f)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "u vere forvii i tiun mem-subskribon? (j/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Forviis %d subskribon.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Forviis %d subskribojn.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nenio estis forviita.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 #, fuzzy msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " @@ -3362,164 +3368,164 @@ msgstr "" "AVERTO: i tiu estas PGP2-stila losilo. Aldono de foto-identigilo eble\n" " kazos, ke iuj versioj de PGP malakceptos la losilon.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 #, fuzzy msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Ne eblas aldoni foto-identigilon al PGP2-stila losilo.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 #, fuzzy msgid "Enter the user ID of the designated revoker: " msgstr "Donu la losilgrandon" -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AVERTO: i tiu losilo estas revokita de sia posedanto!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "u vi estas certa, ke vi ankora volas subskribi in?\n" -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Bonvolu malelekti la sekretajn losilojn.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Bonvolu elekti maksimume unu flankan losilon.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "anas la daton de eksvalidio de flanka losilo.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "anas la daton de eksvalidio de la efa losilo.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Vi ne povas ani la daton de eksvalidio de v3-losilo\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Mankas responda subskribo en sekreta losilaro\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Bonvolu elekti precize unu uzantidentigilon.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "losilo %08lX: nevalida mem-subskribo\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "u vi estas certa, ke vi ankora volas subskribi in?\n" -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "u vi estas certa, ke vi ankora volas subskribi in?\n" -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Mankas uzantidentigilo kun indekso %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Mankas flanka losilo kun indekso %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "uzantidentigilo: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " subskribita per %08lX je %s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr "" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, fuzzy, c-format msgid "This signature expired on %s.\n" msgstr "i tiu losilo eksvalidios je %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 #, fuzzy msgid "Are you sure you still want to revoke it? (y/N) " msgstr "u vi estas certa, ke vi ankora volas aldoni in? (j/n) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 #, fuzzy msgid "Create a revocation certificate for this signature? (y/N) " msgstr "u krei revokatestilon por i tiu subskribo? (j/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Vi subskribis la sekvajn uzantidentigilojn:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr "subskribi losilon nerevokeble" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revokita de %08lX je %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Vi revokos la sekvajn subskribojn:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 #, fuzzy msgid "Really create the revocation certificates? (y/N) " msgstr "u vere krei la revokatestilojn? (j/N)" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "mankas sekreta losilo\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, fuzzy, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "Uzantidentigilo \"%s\" estas revokita.\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4024,113 +4030,113 @@ msgstr "" msgid "never " msgstr "" -#: g10/keylist.c:186 +#: g10/keylist.c:201 #, fuzzy msgid "Critical signature policy: " msgstr "Subskribo-gvidlinioj: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Subskribo-gvidlinioj: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "AVERTO: nevalida notacia dateno trovita\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 #, fuzzy msgid "Critical signature notation: " msgstr "Subskribo-notacio: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Subskribo-notacio: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "ne homlegebla" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "losilaro" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [eksvalidios: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 #, fuzzy msgid "Primary key fingerprint:" msgstr "listigi losilojn kaj fingropurojn" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 #, fuzzy msgid " Subkey fingerprint:" msgstr " losilo-fingrospuro =" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 #, fuzzy msgid " Primary key fingerprint:" msgstr " losilo-fingrospuro =" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 #, fuzzy msgid " Subkey fingerprint:" msgstr " losilo-fingrospuro =" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " losilo-fingrospuro =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVERTO: ekzistas 2 dosieroj kun sekretaj informoj.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s estas la neanita\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s estas la nova\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Bonvolu ripari i tiun eblan sekurecproblemon\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "kontrolas losilaron '%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu losiloj kontrolitaj (%lu subskriboj)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu losiloj kontrolitaj (%lu subskriboj)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: losilaro kreita\n" @@ -4253,11 +4259,6 @@ msgstr "listigo de sekretaj msgid "\"%s\" not a key ID: skipping\n" msgstr "%s: ne valida losilidentigilo\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "losilo '%s' ne trovita: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4691,7 +4692,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problemo kun agento: agento redonas 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "ne povas kontroli pasvorton en neinteraga reimo\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4765,23 +4767,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr "ne povas malfermi %s: %s\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Nenia kialo specifita" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "losilo estas anstataigita." -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "losilo estas kompromitita" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "losilo estas ne plu uzata" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Uzantidentigilo ne plu validas" @@ -4854,7 +4856,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Via decido? " @@ -5010,8 +5012,8 @@ msgid "skipped: public key already set\n" msgstr "ignorita: publika losilo jam agordita\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "nekonata implicita ricevonto '%s'\n" #: g10/pkclist.c:948 @@ -5040,15 +5042,15 @@ msgstr "Aparta subskribo.\n" msgid "Please enter name of data file: " msgstr "Bonvolu doni la nomon de la dosiero: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "legas la normalan enigon ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "mankas subskribitaj datenoj\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "ne povas malfermi subskribitan dosieron '%s'\n" @@ -5087,7 +5089,7 @@ msgid "NOTE: key has been revoked" msgstr "losilo %08lX: losilo estas revokita!\n" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, fuzzy, c-format msgid "build_packet failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" @@ -5097,68 +5099,68 @@ msgstr "aktualigo malsukcesis: %s\n" msgid "key %s has no user IDs\n" msgstr "losilo %08lX: mankas uzantidentigilo\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "u krei revokatestilon por i tiu subskribo? (j/N)" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, fuzzy, c-format msgid "make_keysig_packet failed: %s\n" msgstr "listigo de losilblokoj malsukcesis: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 #, fuzzy msgid "Revocation certificate created.\n" msgstr "losilo %08lX: revokatestilo aldonita\n" -#: g10/revoke.c:375 +#: g10/revoke.c:376 #, c-format -msgid "no revocation keys found for `%s'\n" +msgid "no revocation keys found for \"%s\"\n" msgstr "" -#: g10/revoke.c:429 +#: g10/revoke.c:432 #, fuzzy, c-format -msgid "secret key `%s' not found: %s\n" +msgid "secret key \"%s\" not found: %s\n" msgstr "losilo '%s' ne trovita: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, fuzzy, c-format msgid "no corresponding public key: %s\n" msgstr "skribas publikan losilon al '%s'\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "u krei revokatestilon por i tiu subskribo? (j/N)" -#: g10/revoke.c:493 +#: g10/revoke.c:496 #, fuzzy msgid "unknown protection algorithm\n" msgstr "nekonata densig-metodo" -#: g10/revoke.c:497 +#: g10/revoke.c:500 #, fuzzy msgid "NOTE: This key is not protected!\n" msgstr "i tiu losilo ne estas protektita.\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5169,37 +5171,37 @@ msgid "" "your machine might store the data and make it available to others!\n" msgstr "" -#: g10/revoke.c:589 +#: g10/revoke.c:592 #, fuzzy msgid "Please select the reason for the revocation:\n" msgstr "Kialo por revoko: " -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "" -#: g10/revoke.c:642 +#: g10/revoke.c:645 #, fuzzy msgid "Enter an optional description; end it with an empty line:\n" msgstr "" "\n" "Donu la uzantidentigilon. Finu per malplena linio: " -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, fuzzy, c-format msgid "Reason for revocation: %s\n" msgstr "Kialo por revoko: " -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "u tamen uzi i tiun losilon? " @@ -5365,61 +5367,54 @@ msgstr "%s-subskribo de: %s\n" msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "eblas subskribi nur per PGP-2.x-stilaj losiloj kun --pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "skribas al '%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "NOTO: ifrad-metodo %d ne trovita en preferoj\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "subskribas:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "ne povas malfermi %s: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "eblas klartekste subskribi nur per PGP-2.x-stilaj losiloj kun --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s ifrado estos aplikata\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "losilo ne estas markita kiel malsekura - ne povas uzi in kun falsa " "stokastilo!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "ignoris '%s': ripetita\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "ignoris '%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "ignorita: sekreta losilo jam eestas\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "ignoris '%s': i tio estas PGP-kreita ElGamal-losilo, kiu ne estas sekura " "por subskribado!\n" @@ -6047,6 +6042,21 @@ msgstr "operacio ne eblas sen sekura memoro kun komenca valoro\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(eble vi uzis la malustan programon por i tiu tasko)\n" +#, fuzzy +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "ne povas fari tion en neinteraga reimo\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "losilo '%s' ne trovita: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "ne povas krei '%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "ne povas malfermi %s: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alinome \"" diff --git a/po/es.po b/po/es.po index 1da9b4d54..6c1ff407a 100644 --- a/po/es.po +++ b/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-10-12 19:27+0200\n" "Last-Translator: Jaime Surez \n" "Language-Team: Spanish \n" @@ -39,9 +39,10 @@ msgstr "no se ha detectado m #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "no se puede abrir `%s': %s\n" @@ -79,8 +80,9 @@ msgstr "no se puede leer `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "nota: el fichero de semillas aleatorias no se ha actualizado\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "no se puede crear %s: %s\n" @@ -306,9 +308,11 @@ msgstr "clave secreta no disponible" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "lo siento, no puede hacerse en modo de proceso por lotes\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "imposible hacer esto en modo de proceso por lotes\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -484,7 +488,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Eleccin invlida.\n" @@ -643,11 +647,7 @@ msgstr "contr" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "imposible hacer esto en modo de proceso por lotes\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Orden> " @@ -656,7 +656,17 @@ msgstr "Orden> " msgid "Admin-only command\n" msgstr "rdenes incompatibles\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "rdenes incompatibles\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "escribiendo clave privada en `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Orden invlida (pruebe \"help\")\n" @@ -684,8 +694,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Introduzca el ID de usuario: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "no se puede abrir `%s'\n" @@ -694,13 +704,14 @@ msgstr "no se puede abrir `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output no funciona con esta orden\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "clave '%s' no encontrada: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "error leyendo bloque de claves: %s\n" @@ -710,7 +721,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(excepto si especifica la clave dando su huella digital)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "imposible hacer esto en modo de proceso por lotes sin \"--yes\"\n" #: g10/delkey.c:139 @@ -741,7 +753,7 @@ msgstr " msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "use antes la opcin \"--delete-secret-key\" para borrarla.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "error creando frase contrasea: %s\n" @@ -788,7 +800,7 @@ msgstr "" "forzar el cifrado simtrico %s (%d) viola las preferencias\n" "del destinatario\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -867,11 +879,6 @@ msgstr "no se puede ejecutar %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "no se puede ejecutar %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "no se puede crear %s: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1174,7 +1181,7 @@ msgstr "" msgid "Pubkey: " msgstr "Clave pblica: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Cifrado: " @@ -1182,7 +1189,7 @@ msgstr "Cifrado: " msgid "Hash: " msgstr "Resumen: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compresin: " @@ -1301,7 +1308,7 @@ msgstr "no se carga el cifrado de ampliaci msgid "`%s' is not a valid character set\n" msgstr "%s no es un juego de caracteres vlido\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no se puede interpretar la URI del servidor de claves\n" @@ -2443,29 +2450,29 @@ msgstr "[revocaci msgid "[self-signature]" msgstr "[autofirma]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 firma incorrecta\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d firmas incorrectas\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 firma no comprobada por falta de clave\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d firmas no comprobadas por falta de clave\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 firma no comprobada por causa de un error\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d firmas no comprobadas por errores\n" @@ -2519,12 +2526,12 @@ msgid "User ID \"%s\" is revoked." msgstr "ID de usuario \"%s\" revocado." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Seguro que todava quiere firmarlo? (s/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Imposible firmar.\n" @@ -2725,7 +2732,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Firmar de verdad? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3078,241 +3085,241 @@ msgstr "verfoto" msgid "show photo ID" msgstr "mostrar ID fotogrfico" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "error leyendo bloque de clave secreta `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Clave secreta disponible.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Se necesita la clave secreta para hacer esto.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Por favor use la orden \"cambia\" primero.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "La clave est revocada." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Firmar realmente todos los identificadores de usuario? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Sugerencia: seleccione los identificadores de usuario que firmar\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Esta orden no se permite en modo %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Debe seleccionar por lo menos un identificador de usuario.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "No puede borrar el ltimo identificador de usuario!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Borrar realmente todos los identificadores seleccionados? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Borrar realmente este identificador de usuario? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Borrar realmente este identificador de usuario? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Debe seleccionar por lo menos una clave.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Debe seleccionar por lo menos una clave.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "De verdad quiere borrar las claves seleccionadas? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "De verdad quiere borrar esta clave? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Revocar realmente todos los identificadores seleccionados? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Revocar realmente este identificador de usuario? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "De verdad quiere revocar las claves seleccionadas? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "De verdad quiere revocar esta clave? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "establece preferencias" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Actualizar realmente las preferencias para todos los ID seleccionados? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Actualizar realmente las preferencias? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Grabar cambios? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Salir sin grabar? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "actualizacin fallida: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "actualizacin de la clave secreta fallida: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Clave sin cambios, no se necesita actualizacin.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Resumen: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Caractersticas: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Esta clave puede ser revocada por la clave %s" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (confidencial)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "no se puede crear %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revocada]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [caduca: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [caduca: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " confianza: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " confianza: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Esta clave est deshabilitada" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revocada]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expira" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "No hay preferencias en un identificador de usuario estilo PGP 2.x\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3320,7 +3327,7 @@ msgstr "" "Por favor, advierta que la validez de clave mostrada no es necesariamente\n" "correcta a menos de que reinicie el programa.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3328,7 +3335,7 @@ msgstr "" "AVISO: ningn ID de usuario est marcado como principal. Esta orden puede\n" " causar que se tome como principal por defecto otro ID de usuario.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3337,45 +3344,45 @@ msgstr "" "AVISO: esta es una clave de tipo PGP2. Aadir un ID fotogrfico puede\n" "hacer que algunas versiones de PGP rechacen esta clave.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Est seguro de querer aadirla? (s/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "No puede aadir un ID fotogrfico a una clave tipo PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Borrar esta firma correcta? (s/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Borrar esta firma invlida? (s/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Borrar esta firma desconocida? (s/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Borrar realmente esta autofirma? (s/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d firmas borradas.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d firmas borradas\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "No se borr nada\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3384,163 +3391,163 @@ msgstr "" "AVISO: esta es una clave tipo PGP2. Aadir un revocador designado puede\n" " hacer que algunas versiones de PGP rechacen esta clave.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "No puede aadir un revocador designado a una clave tipo PGP2.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Introduzca el ID de usuario del revocador designado: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "no se puede elegir una clave tipo PGP 2.x como revocador designado\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "no puede elegir una clave como su propio revocador designado\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "" "ATENCIN: Esta clave ha sido revocada por la persona designada\n" "como revocador!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "AVISO: no podr deshacer la eleccin de clave como revocador designado!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Est seguro de querer elegir esta clave como revocador designado? (s/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Por favor, quite las selecciones de las claves secretas.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Por favor, seleccione como mximo una clave secundaria.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Cambiando caducidad de clave secundaria.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Cambiando caducidad de clave primaria.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "No puede cambiar la fecha de caducidad de una clave v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "No existe la firma correspondiente en el anillo secreto\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Por favor seleccione exactamente un identificador de usuario.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "omitiendo autofirma V3 para el id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Seguro que quiere usarlo? (s/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Seguro que quiere usarlo? (s/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "No hay ningn identificador de usuario con el ndice %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "No hay ninguna clave secundaria con el ndice %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID de usuario: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " firmada por %08lX el %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (no exportable)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Esta firma caduc el %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "De verdad quiere revocarla? (s/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Crear un certificado de revocacin para esta clave? (s/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Ha firmado los siguientes IDs de usuario:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (no exportable)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revocada por %08lX el %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Va a revocar las siguientes firmas:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Crear los certificados de revocacin realmente? (s/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "no hay clave secreta\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "ID de usuario \"%s\" ya ha sido revocado\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "AVISO: un ID de usuario tiene fecha %d segundos en el futuro\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4049,107 +4056,107 @@ msgstr "" msgid "never " msgstr "nunca " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Poltica de firmas crticas: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Poltica de firmas: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "ATENCIN: encontrados datos de notacin invlidos\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notacin de firmas crticas: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notacin de firma: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "ilegible" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Anillo de claves" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [caduca: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Huellas dactilares de la clave primaria:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Huella de subclave:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Huella de clave primaria:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Huella de subclave:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Huella de clave =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "creacin de armadura fallida: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ATENCIN: existen 2 ficheros con informacin confidencial.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s es el que no se ha modificado\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s es el nuevo\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Por favor arregle este posible fallo de seguridad\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "comprobando anillo `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu claves comprobadas (%lu firmas)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu claves comprobadas (%lu firmas)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: anillo creado\n" @@ -4272,11 +4279,6 @@ msgstr "recepci msgid "\"%s\" not a key ID: skipping\n" msgstr "'%s' no es un identificador de clave vlido\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "clave '%s' no encontrada: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4708,7 +4710,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problema con el agente: el agente devuelve 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "imposible pedir contrasea en modo de proceso por lotes\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4785,23 +4788,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr "no puedo mostrar ID fotogrfico!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "No se dio ninguna razn" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "La clave ha sido reemplazada." -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "La clave ha sido comprometida" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "La clave ya no est en uso" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "El identificador de usuario ya no es vlido" @@ -4872,7 +4875,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Su decisin: " @@ -5029,8 +5032,8 @@ msgid "skipped: public key already set\n" msgstr "omitida: clave pblica ya establecida\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "desconocido el destinatario predefinido `%s'\n" #: g10/pkclist.c:948 @@ -5059,15 +5062,15 @@ msgstr "Firma separada.\n" msgid "Please enter name of data file: " msgstr "Introduzca el nombre del fichero de datos: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "leyendo stdin...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "no hay datos firmados\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "imposible abrir datos firmados `%s'\n" @@ -5105,7 +5108,7 @@ msgid "NOTE: key has been revoked" msgstr "NOTA: la clave ha sido revocada" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "construccin del paquete fallida: %s\n" @@ -5115,65 +5118,65 @@ msgstr "construcci msgid "key %s has no user IDs\n" msgstr "clave %08lX: sin identificador de usuario\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Ser revocado por:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Este es una clave de revocacin confidencial)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Crear un certificado de revocacin para esta clave? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "se fuerza salida con armadura ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet fall: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Certificado de revocacin creado.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "no se encuetran claves de revocacin para `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "clave secreta `%s' no encontrada: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "no existe la clave pblica correspondiente: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "la clave pblica y la privada no se corresponden!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Crear un certificado de revocacin para esta clave? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "algoritmo de proteccin desconocido\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "NOTA: Esta clave no est protegida!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5192,33 +5195,33 @@ msgstr "" "de impresin de su mquina podra almacenar los datos y hacerlos accesibles\n" "a otras personas!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Por favor elija una razn para la revocacin:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Cancelar" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Probablemente quera seleccionar %d aqu)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Introduzca una descripcin opcional; acbela con una lnea vaca:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Razn para la revocacin: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(No se di descripcin)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Es correcto? " @@ -5389,12 +5392,12 @@ msgstr "" "slo puede hacer firmas separadas con claves tipo PGP 2.x estando enmodo --" "pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "escribiendo en `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5402,47 +5405,40 @@ msgstr "" "forzar el algoritmo de resumen %s (%d) va en contra de las\n" "preferencias del destinatario\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "firmando:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "no puede abrirse el fichero: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "slo puede firmar en claro con claves PGP 2.x estando en modo --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "se usar un cifrado %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "clave no marcada como insegura - no puede usarse con el pseudo RNG\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "`%s' omitido: duplicado\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "`%s' omitido: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "omitido: clave secreta ya presente\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "`%s' omitida: esta es una clave ElGamal generada por PGP que NO es segura " "para las firmas\n" @@ -6099,6 +6095,20 @@ msgstr "operaci msgid "(you may have used the wrong program for this task)\n" msgstr "(es posible que haya usado el programa incorrecto para esta tarea)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "lo siento, no puede hacerse en modo de proceso por lotes\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "clave '%s' no encontrada: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "no se puede crear %s: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "no puede abrirse el fichero: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/et.po b/po/et.po index b3979a0ab..706fbbcc5 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -35,9 +35,10 @@ msgstr "entroopia kogumise moodul puudub\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "`%s' ei nnestu avada: %s\n" @@ -69,8 +70,9 @@ msgstr "`%s' ei msgid "note: random_seed file not updated\n" msgstr "mrkus: random_seed faili ei uuendatud\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "`%s' ei nnestu luua: %s\n" @@ -293,9 +295,11 @@ msgstr "salajane v msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "vabandust, seda ei saa pakettmoodis teha\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "seda ei saa teha pakettmoodis\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -469,7 +473,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Vigane valik.\n" @@ -628,11 +632,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "seda ei saa teha pakettmoodis\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Ksklus> " @@ -641,7 +641,17 @@ msgstr "K msgid "Admin-only command\n" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "vastuolulised ksud\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "kirjutan salajase vtme faili `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Vigane ksklus (proovige \"help\")\n" @@ -668,8 +678,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "`%s' ei nnestu avada\n" @@ -678,13 +688,14 @@ msgstr "`%s' ei msgid "--output doesn't work for this command\n" msgstr "vti --output ei tta selle ksuga\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "vtit '%s' ei leitud: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "viga vtmebloki lugemisel: %s\n" @@ -694,7 +705,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(kui te just ei mra vtit srmejljega)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "pakettmoodis ei nnestu seda teha vtmeta \"--yes\"\n" #: g10/delkey.c:139 @@ -725,7 +737,7 @@ msgstr "avaliku v msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "selle kustutamiseks kasutage vtit \"--delete-secret-keys\".\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "viga parooli loomisel: %s\n" @@ -771,7 +783,7 @@ msgid "" msgstr "" "smmetrilise ifri %s (%d) kasutamine on vastuolus saaja eelistustega\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -847,11 +859,6 @@ msgstr "ei msgid "unable to execute shell `%s': %s\n" msgstr "ei nnestu kivitada %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "`%s' ei nnestu luua: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1145,7 +1152,7 @@ msgstr "" msgid "Pubkey: " msgstr "Avalik vti: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "iffer: " @@ -1153,7 +1160,7 @@ msgstr " msgid "Hash: " msgstr "Rsi: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Pakkimine: " @@ -1272,7 +1279,7 @@ msgstr "ebaturvaliste msgid "`%s' is not a valid character set\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ei saa parsida vtmeserveri URI\n" @@ -2400,29 +2407,29 @@ msgstr "[t msgid "[self-signature]" msgstr "[iseenda allkiri]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 halb allkiri\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d halba allkirja\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 allkiri ji testimata, kuna vti puudub\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d allkirja ji testimata, kuna vtmed puuduvad\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 allkiri ji vea tttu kontrollimata\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d allkirja ji vigade tttu kontrollimata\n" @@ -2476,12 +2483,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Kasutaja ID \"%s\" on thistatud." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Olete kindel, et soovite seda ikka allkirjastada? (j/e) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Ei saa allkirjastada.\n" @@ -2681,7 +2688,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Allkirjastan testi? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3034,240 +3041,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "nita foto ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "viga salajase vtmebloki `%s' lugemisel: %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Salajane vti on kasutatav.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Selle tegamiseks on vaja salajast vtit.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Palun kasutage kigepealt ksku \"toggle\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Vti on thistatud." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Kas allkirjastan testi kik kasutaja IDd? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Vihje: Valige allkirjastamiseks kasutaja\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "See ksklus ei ole %s moodis lubatud.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Te peate valima vhemalt he kasutaja ID.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Viimast kasutaja ID ei saa kustutada!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Kas kustutan testi kik kasutaja IDd? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Kas eemaldan testi selle kasutaja ID? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Kas eemaldan testi selle kasutaja ID? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Te peata valima vhemalt he vtme.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Te peata valima vhemalt he vtme.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Kas te testi soovite valitud vtmeid kustutada? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Kas te testi soovite seda vtit kustutada? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Kas thistan testi kik valitud kasutaja IDd? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Kas thistan testi selle kasutaja ID? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Kas te testi soovite valitud vtmeid thistada? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Kas te testi soovite seda vtit thistada? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "sea eelistuste nimekiri" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Kas uuendan testi kik kasutaja ID-de seaded? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Kas testi uuendan seaded? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Salvestan muutused? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Vljun salvestamata? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "uuendamine ebannestus: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "salajase vtme uuendamine ebannestus: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Vtit ei muudetud, seega pole uuendamist vaja.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Teatelhend: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Omadused: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Selle vtme vib olla thistanud %s vti " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (tundlik)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%s ei nnestu luua: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[thistatud] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [aegub: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [aegub: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " usaldus: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " usaldus: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "See vti on blokeeritud" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[thistatud] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "PGP 2.x stiilis kasutaja ID ei oma seadeid.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3275,7 +3282,7 @@ msgstr "" "Tuleb thele panna et kuni te pole programmi uuesti kivitanud, ei pruugi\n" "nidatud vtme kehtivus olla tingimata korrektne.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3283,7 +3290,7 @@ msgstr "" "HOIATUS: htegi kasutaja ID pole mrgitud primaarseks. See ksklus vib\n" " phjustada muu kasutaja ID primaarseks mramist.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3292,45 +3299,45 @@ msgstr "" "HOIATUS: See on PGP2-stiilis vti. Foto ID lisamine vib sundida mningaid\n" " PGP versioone seda vtit tagasi lkkama.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Olete kindel, et soovite seda ikka lisada? (j/E) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Foto IDd ei saa PGP2 vtmele lisada.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Kustutan selle korrektse allkirja? (j/E/v)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Kustutan selle vigase allkirja? (j/E/v)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Kustutan selle tundmatu allkirja? (j/E/v)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Kas testi kustutan selle iseenda allkirja? (j/E)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Kustutatud %d allkiri.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Kustutatud %d allkirja.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Midagi ei kustutatud.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3339,160 +3346,160 @@ msgstr "" "HOIATUS: See on PGP2-stiilis vti. Mratud thistaja lisamine vib\n" " phjustada mningaid PGP versioone seda vtit tagasi lkkama.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "PGP 2.x-stiili vtmele ei saa mratud thistajat lisada.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Sisestage mratud thistaja kasutaja ID: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "PGP 2.x stiilis vtit ei saa nimetada mratud thistajaks\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "te ei saa nimetada vtit iseenda mratud thistajaks\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "HOIATUS: See vti on mratud thistaja poolt thistatud!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "HOIATUS: vtme seadmist mratud thistajaks ei saa tagasi vtta!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Olete kindel, et soovite seda vtit seada mratud thistajaks? (j/E): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Palun eemaldage salajastelt vtmetelt valikud.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "palun valige limalt ks sekundaarne vti.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Muudan sekundaarse vtme aegumise aega.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Muudan primaarse vtme aegumise aega.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "v3 vtme aegumise aega ei saa muuta.\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Palun valige tpselt ks kasutaja ID.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "jtan kasutaja \"%s\" v3 iseenda allkirja vahele\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Olete kindel, et soovite seda kasutada (j/E)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Olete kindel, et soovite seda kasutada (j/E)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Kasutaja ID numbriga %d puudub\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Sekundaarne vti numbriga %d puudub\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "kasutaja ID: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " allkirjastanud %08lX %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (mitte-eksporditav)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "See allkiri aegub %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Olete kindel, et soovite seda ikka thistada? (j/E) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Loon sellele allkirjale thistamise sertifikaadi? (j/E) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Te olete allkirjastanud jrgnevad kasutaja IDd:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (mitte-eksporditav)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " thistanud %08lX %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Te asute thistama jrgmisi allkirju:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Kas testi loon thistamise sertifikaadid? (j/E) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "salajast vtit pole\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "kasutaja ID \"%s\" on juba thistatud\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "HOIATUS: kasutaja ID allkirja ajatempel on %d sekundit tulevikus\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Nitan %s foto IDd suurusega %ld, vti 0x%08lX (uid %d)\n" @@ -3993,107 +4000,107 @@ msgstr "" msgid "never " msgstr "mitte kunagi" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kriitiline allkirja poliitika: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Allkirja poliitika: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "HOIATUS: leidsin vigased noteerimise andmed\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kriitiline allkirja noteerimine: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Allkirja noteerimine: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "pole inimese poolt loetav" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Vtmehoidla" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [aegub: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Primaarse vtme srmejlg:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Alamvtme srmejlg:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Primaarse vtme srmejlg:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Alamvtme srmejlg:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Vtme srmejlg =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "pakendamine ebannestus: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "HOIATUS: on olemas 2 faili konfidentsiaalse infoga.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s ei ole muudetud\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s on uus\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Palun parandage see vimalik turvaprobleem\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "kontrollin vtmehoidlat `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "kontrollitud %lu vtit (%lu allkirja)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "kontrollitud %lu vtit (%lu allkirja)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: vtmehoidla on loodud\n" @@ -4216,11 +4223,6 @@ msgstr "v msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "vtit '%s' ei leitud: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4650,7 +4652,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "probleem agendiga: agent tagastas 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "pakettmoodis ei saa parooli ksida\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4727,23 +4730,23 @@ msgstr "On see foto msgid "unable to display photo ID!\n" msgstr "foto ID ei saa nidata!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Phjus puudub" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Vti on asendatud" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Vti on kompromiteeritud" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Vti ei ole enam kasutusel" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Kasutaja ID ei ole enam kehtiv" @@ -4814,7 +4817,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Teie otsus? " @@ -4966,8 +4969,8 @@ msgid "skipped: public key already set\n" msgstr "jtsin vahele: avalik vti on juba olemas\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "tundmatu vaikimisi saaja `%s'\n" #: g10/pkclist.c:948 @@ -4996,15 +4999,15 @@ msgstr "Eraldiseisev allkiri.\n" msgid "Please enter name of data file: " msgstr "Palun sisestage andmefaili nimi: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "loen standardsisendit ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "allkirjastatud andmeid pole\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "allkirjastatud andmete avamine ebannestus `%s'\n" @@ -5042,7 +5045,7 @@ msgid "NOTE: key has been revoked" msgstr "MRKUS: vti on thistatud" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet ebannestus: %s\n" @@ -5052,67 +5055,67 @@ msgstr "build_packet eba msgid "key %s has no user IDs\n" msgstr "vti %08lX: kasutaja ID puudub\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Thistaja:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(See on tundlik thistamise vti)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Loon sellele vtmele thistamise sertifikaadi? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Vljundis sunnitakse kasutama ASCII vormingut.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet ebannestus: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Thistamise sertifikaat on loodud.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "" "`%s' jaoks pole thistamise vtmeid\n" "\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "salajast vtit `%s' ei leitud: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "vastavat avalikku vtit pole: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "avalik vti ei sobi salajase vtmega!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Loon sellele vtmele thistamise sertifikaadi? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "tundmatu kaitsealgoritm\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "MRKUS: See vti ei ole kaitstud!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5133,33 +5136,33 @@ msgstr "" "trkissteem\n" "vib salvestada need andmed ja teha teistele kttesaadavaks! \n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Palun valige thistamise phjus:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Katkesta" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Tenoliselt soovite siin valida %d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Sisestage mittekohustuslik kirjeldus. Lpetage thja reaga:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Thistamise phjus: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Kirjeldust ei antud)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "On see hsti? " @@ -5322,61 +5325,54 @@ msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "PGP 2.x stiilis vtmetega saab eraldi-allkirjastada ainult --pgp2 moodis\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "kirjutan faili `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "snumilhendi algoritmi %s (%d) kasutamine on vastuolus saaja eelistustega\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "allkirjastan:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "faili ei nnestu avada: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "PGP 2.x stiilis vtmetega saab avateksti allkirjastada ainult --pgp2 moodis\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "kasutatakse %s krpteerimist\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "vti ei ole mrgitud ebaturvaliseks - sellega ei saa vlts RNGd kasutada!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "`%s' jtsin vahele: duplikaat\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "`%s' jtsin vahele: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "jtsin vahele: avalik vti on juba olemas\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "jtsin `%s' vahele: see on PGP genereeritud ElGamal vti,\n" "mis ei ole allkirjades kasutamiseks turvaline!\n" @@ -6004,6 +6000,20 @@ msgstr "initsialiseerimata turvalise m msgid "(you may have used the wrong program for this task)\n" msgstr "(te kasutasite vahest selle t jaoks valet programmi)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "vabandust, seda ei saa pakettmoodis teha\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "vtit '%s' ei leitud: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "`%s' ei nnestu luua: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "faili ei nnestu avada: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " ka \"" diff --git a/po/fi.po b/po/fi.po index a26e861de..597589d5d 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" @@ -51,9 +51,10 @@ msgstr "entropian keräysmoduulia ei havaittu\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi avata: %s\n" @@ -86,8 +87,9 @@ msgstr "tiedostoa \"%s\" ei voi lukea: %s\n" msgid "note: random_seed file not updated\n" msgstr "huom: random_seed-tiedostoa ei päivitetty\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" @@ -313,9 +315,11 @@ msgstr "salaista avainta ei löydy" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "valitan, tätä ei voi tehdä eräajossa\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "tätä ei voi tehdä eräajossa\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -489,7 +493,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Valinta ei kelpaa.\n" @@ -648,11 +652,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "tätä ei voi tehdä eräajossa\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Komento> " @@ -661,7 +661,17 @@ msgstr "Komento> " msgid "Admin-only command\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "ristiriitainen komento\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Komento ei kelpaa (kirjoita \"help\")\n" @@ -688,8 +698,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "tiedostoa \"%s\" ei voi avata\n" @@ -698,13 +708,14 @@ msgstr "tiedostoa \"%s\" ei voi avata\n" msgid "--output doesn't work for this command\n" msgstr "--output ei toimi yhdessä tämän komennon kanssa\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "avainta \"%s\" ei löydy: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "virhe luettaessa avainlohkoa: %s\n" @@ -714,7 +725,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(ellet määritä avainta sormenjäljen perusteella)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "ei onnistu eräajossa ilman \"--yes\"-valitsinta\n" #: g10/delkey.c:139 @@ -745,7 +757,7 @@ msgstr "julkiselle avaimelle \"%s\" löytyy vastaava salainen avain!\n" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "käytä valitsinta \"--delete-secret-keys\" poistaaksesi se ensin.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "virhe luotaessa salasanaa: %s\n" @@ -790,7 +802,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "valittu symmetrinen salain %s (%d) ei ole vastaanottajan suosima\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -865,11 +877,6 @@ msgstr "komentoa %s \"%s\" ei voi suorittaa: %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "komentoa %s \"%s\" ei voi suorittaa: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1166,7 +1173,7 @@ msgstr "" msgid "Pubkey: " msgstr "JulkAvain: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Salaus: " @@ -1174,7 +1181,7 @@ msgstr "Salaus: " msgid "Hash: " msgstr "Tiiviste: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Pakkaus: " @@ -1293,7 +1300,7 @@ msgstr "Oikeudet eivät ole turvallisia, salainlaajennuksia \"%s\" ei ladattu\n" msgid "`%s' is not a valid character set\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" @@ -2435,29 +2442,29 @@ msgstr "[mitätöinti]" msgid "[self-signature]" msgstr "[oma-allekirjoitus]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 väärä allekirjoitus\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d väärää allekirjoitusta\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 allekirjoitus jätetty tarkistamatta puuttuvan avaimen vuoksi\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d allekirjoitusta jätetty tarkistamatta puuttuvien avainten vuoksi\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 allekirjoitus jätetty tarkistamatta virheen vuoksi\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d allekirjoitusta jätetty tarkistamatta virheiden vuoksi\n" @@ -2512,12 +2519,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Käyttäjätunnus \"%s\" on mitätöity." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Haluatko varmasti edelleen allekirjoittaa? (k/E) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Allekirjoittaminen ei onnistu.\n" @@ -2719,7 +2726,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Varmastiko allekirjoita? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3072,240 +3079,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "näytä valokuvatunniste" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "virhe luettaessa salaista avainlohkoa \"%s\": %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Salainen avain on saatavilla.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Tähän tarvitaan salainen avain.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Käytä ensin komentoa \"toggle\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Avain on mitätöity." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Varmastiko allekirjoita kaikki käyttäjätunnukset?" -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Vihje: Valitse allekirjoitettavat käyttäjätunnukset\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tätä komentoa ei sallita %s-tilassa.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Sinun täytyy valita ainakin yksi käyttäjätunnus.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Et voi poistaa viimeistä käyttäjätunnusta!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Varmastiko poista kaikki valitut käyttäjätunnukset? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Varmastiko poista tämä käyttäjätunnus? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Varmastiko poista tämä käyttäjätunnus? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Sinun täytyy valita ainakin yksi avain.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Sinun täytyy valita ainakin yksi avain.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Haluatko varmasti poistaa valitut avaimet? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Haluatko varmasti poistaa tämän avaimen? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Varmastiko mitätöi kaikki valitut käyttäjätunnukset? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Varmastiko mitätöi tämä käyttäjätunnus? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Haluatko varmasti mitätöidä valitut avaimet? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Haluatko varmasti mitätöidä tämän avaimen? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "näytä valinnat" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Varmastiko päivitä valinnat näille käyttäjätunnuksille? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Varmastiko päivitä valinnat? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Tallenna muutokset? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Lopeta tallentamatta muutoksia?" -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "päivitys epäonnistui: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "salaisen päivitys epäonnistui: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Päivitystä ei tarvita, koska avain ei ole muuttunut.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Tiiviste: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Ominaisuudet: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Tämä avain voidaan mitätöidä %s-avaimella " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (luottamuksellinen)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "ei voida luoda kohdetta %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[mitätöity] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [vanhenee: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [vanhenee: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " luottamus: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " luottamus: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Tämä avain on poistettu käytöstä" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[mitätöity] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "PGP 2.x -muodon käyttäjätunnukselle ei ole valintoja.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3313,7 +3320,7 @@ msgstr "" "Huomioi, että tässä näytetty voimassaolo ei ole välttämättä\n" "ajan tasalla jollet käynnistä ohjelmaa uudelleen\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3321,7 +3328,7 @@ msgstr "" "VAROITUS: mitään käyttäjätunnusta ei ole merkitty ensisijaiseksi. Tämän \n" "komennon johdosta eri käyttäjätunnus voi tulla oletetuksi ensisijaiseksi.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3330,45 +3337,45 @@ msgstr "" "VAROITUS: Tämä on PGP2-muodon avain. Valokuvan lisääminen voi\n" " saada jotkin PGP:n versiot hylkäämään avaimen.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Haluatko edelleen varmasti lisätä sen? (k/E) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Et voi lisätä valokuvaa PGP2-muodon avaimeen.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Poistetaanko tämä kelvollinen allekirjoitus? (k/E/l)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Poistetaanko tämä epäkelpo allekirjoitus? (k/E/l)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Poistetaanko tämä tuntematon allekirjoitus? (k/E/l)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Varmastiko poista oma-allekirjoitus? (k/E)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d allekirjoitus poistettu.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d allekirjoitusta poistettu.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Mitään ei poistettu.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3378,162 +3385,162 @@ msgstr "" "voi\n" " saada jotkin PGP:n versiot hylkäämään avaimen.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Et voi lisätä määrättyä mitätöijää PGP 2.x -muodon avaimeen.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Syötä määrätyn mitätöijän käyttäjätunnus: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "PGP 2.x -avainta ei voi nimetä määrätyksi mitätöijäksi\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "et voi nimittää avainta sen omaksi määrätyksi mitätöijäksi\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "VAROITUS: Tämän avaimen nimetty mitätöijä on mitätöinyt avaimen!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "VAROITUS: avaimen nimittämistä määrätyksi mitätöijäksi ei voi perua!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Haluatko varmasti nimittää tämän avaimen määrätyksi mitätöijäksi? (k/E): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Poista salaisten avainten valinnat, kiitos.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Valitse korkeintaan yksi toissijainen avain, kiitos.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Muutetaan toissijaisen avaimen vanhentumisaikaa.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Muutetaan ensisijaisen avaimen vanhentumisaikaa.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Et voi muuttaa v3-avainten vanhentumispäivää\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Valitse tasan yksi käyttäjätunnus!\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "ohitetaan v3-muodon oma-allekirjoitus käyttäjätunnukselle \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Haluatko varmasti käyttää sitä (k/E)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Haluatko varmasti käyttää sitä (k/E)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Indeksillä %d ei löydy käyttäjätunnusta\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Indeksillä %d ei löydy toissijaista avainta\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "käyttäjätunnus: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " %08lX allekirjoitti tämän %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (vientiin kelpaamaton)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Tämä allekirjoitus vanheni %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Haluatko varmasti mitätöidä sen? (k/E) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Luodaanko tälle alekirjoitukselle mitätöintivarmenne? (k/E) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Olet allekirjoittanut seuraavat käyttäjätunnukset:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (vientiin kelpaamaton)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " %08lX mitätöi tämän %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Olet mitätöimässä seuraavat allekirjoitukset:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Varmastiko luo mitätöintivarmenteet? (k/E) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "salainen avain ei ole saatavilla\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "käyttäjätunnus \"%s\" on jo mitätöity\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "VAROITUS: käyttäjätunnuksen allekirjoitus on päivätty %d sekuntin päähän " "tulevaisuuteen\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4041,107 +4048,107 @@ msgstr "" msgid "never " msgstr "ei koskaan" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kriittinen allekirjoituskäytäntö: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Allekirjoituskäytäntö: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "VAROITUS: löydettiin väärin muotoiltua notaatiodataa\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kriittinen allekirjoitusnotaatio: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Allekirjoitusnotaatio: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "ei ihmisten luettavissa" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Avainrengas" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [vanhenee: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Ensisijaisen avaimen sormenjälki:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Aliavaimen sormenjälki:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Ensisijaisen avaimen sormenjälki:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Aliavaimen sormenjälki:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Avaimen sormenjälki =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "ascii-koodaaminen epäonnistui: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "VAROITUS: löytyi 2 tiedostoa, joissa on luottamuksellisia tietoja.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s säilyi muuttumattomana\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s on uusi\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Ole hyvä ja korjaa tämä mahdollinen tietoturvareikä\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "tarkistetaan avainrengasta \"%s\"\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "käsiteltiin %lu avainta (%lu allekirjoitusta)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "käsiteltiin %lu avainta (%lu allekirjoitusta)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: avainrengas luotu\n" @@ -4266,11 +4273,6 @@ msgstr "avainpalvelimelta vastaanotto epäonnistui: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "avainta \"%s\" ei löydy: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4707,7 +4709,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "agentin käytössä on ongelmia: agentti vastaa 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "salasanan kysyminen ei onnistu eräajossa\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4784,23 +4787,23 @@ msgstr "Onko tämä oikein (k/E/l)? " msgid "unable to display photo ID!\n" msgstr "valokuvatunnistetta ei voi näyttää!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Ei eriteltyä syytä" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Avain on uusittu" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Avain on murrettu" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Avain ei ole enää käytössä" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Käyttäjätunnus ei ole enää käytössä" @@ -4871,7 +4874,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Valintasi? " @@ -5032,8 +5035,8 @@ msgid "skipped: public key already set\n" msgstr "ohitettu: julkinen avain on jo asetettu\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "tuntematon oletusvastaanottaja \"%s\"\n" #: g10/pkclist.c:948 @@ -5063,15 +5066,15 @@ msgstr "Erillinen allekirjoitus.\n" msgid "Please enter name of data file: " msgstr "Anna datatiedoston nimi: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "luetaan vakiosyötettä ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "ei allekirjoitettua dataa\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "allekirjoitetun datan \"%s\" avaaminen ei onnistu\n" @@ -5109,7 +5112,7 @@ msgid "NOTE: key has been revoked" msgstr "HUOM: avain on mitätöity!" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet epäonnistui: %s\n" @@ -5119,65 +5122,65 @@ msgstr "build_packet epäonnistui: %s\n" msgid "key %s has no user IDs\n" msgstr "avain %08lX: ei käyttäjätunnusta\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Mitätöinnin tekee:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Tämä on arkaluonteinen mitätöintiavain)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Luo tälle avaimelle mitätöintivarmenne? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "ASCII-koodattu tuloste määritetty.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet epäonnistui: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Mitätöintivarmenne luotu.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "mitätöintiavainta ei löydy avaimelle \"%s\"\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "salaista avainta \"%s\" ei löydy: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "ei vastaavaa julkista avainta: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "julkinen avain ei täsmää salaiseen avaimeen!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Luo tälle avaimelle mitätöintivarmenne? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "tuntematon suojausalgoritmi\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "HUOM: Tätä avainta ei ole suojattu!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5197,33 +5200,33 @@ msgstr "" "tulostusjärjestelmä saattaa tallentaa datan ja saattaa sen muiden " "saataville!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Valitse mitätöinnin syy:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Peru" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Todennäköisesti haluat valita %d tässä)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Syötä vapaaehtoinen kuvaus; lopeta tyhjään riviin:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Mitätöinnin syy: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Kuvausta ei annettu)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Kelpaako tämä? " @@ -5399,63 +5402,56 @@ msgstr "" "voit tehdä erillisiä allekirjoituksia PGP 2.x -muodon avaimilla \n" "vain --pgp2-tilassa\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "kirjoitetaan kohteeseen \"%s\"\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "valittua tiivistesalgoritmia %s (%d) ei löydy vastaanottajan valinnoista\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "allekirjoitetaan:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "ei voi avata tiedostoa: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "PGP 2.x -muodon avaimilla voi allekirjoittaa tekstimuotoon \n" "vain --pgp2-tilassa\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "käytetään %s-salausta\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "avainta ei ole merkitty turvattomaksi - sitä ei voida käyttää jäljitellyn\n" "satunnaislukugeneraattorin kanssa!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "ohitetaan \"%s\": kopio\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "ohitetaan \"%s\": %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "ohitetaan \"%s\": tämä on PGP:n luoma ElGamal-avain, jolla ei voi " "allekirjoittaa turvallisesti!\n" @@ -6084,6 +6080,20 @@ msgstr "toiminto on mahdollinen vain, jos suojattu muisti alustetaan\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(olet ehkä käyttänyt tehtävään väärää ohjelmaa)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "valitan, tätä ei voi tehdä eräajossa\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "avainta \"%s\" ei löydy: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "ei voi avata tiedostoa: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " aka \"" diff --git a/po/fr.po b/po/fr.po index 0dea4230d..0a7f0ce9f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-16 20:20+0200\n" "Last-Translator: Gal Quri \n" "Language-Team: French \n" @@ -42,9 +42,10 @@ msgstr "aucun module de r #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "impossible d'ouvrir `%s': %s\n" @@ -78,8 +79,9 @@ msgstr "impossible de lire `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "note: le fichier `random_seed' n'a pas t mis jour\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "impossible de crer `%s': %s\n" @@ -305,9 +307,11 @@ msgstr "la cl msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "dsol, impossible de faire cela en mode automatique\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "impossible de faire cela en mode automatique\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -481,7 +485,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Choix invalide.\n" @@ -641,11 +645,7 @@ msgstr "mot.pas" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "impossible de faire cela en mode automatique\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Commande> " @@ -654,7 +654,17 @@ msgstr "Commande> " msgid "Admin-only command\n" msgstr "commandes en conflit\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "commandes en conflit\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "criture de la cl secrte vers `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Commande invalide (essayez help)\n" @@ -681,8 +691,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "impossible d'ouvrir `%s'\n" @@ -691,13 +701,14 @@ msgstr "impossible d'ouvrir `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output n'est pas compatible avec cette commande\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "cl '%s' introuvable: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "erreur pendant la lecture du bloc de cl : %s\n" @@ -707,7 +718,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "( moins de spcifier la cl par son empreinte)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "impossible de faire cela en mode automatique sans --yes\n" #: g10/delkey.c:139 @@ -738,7 +750,7 @@ msgstr "il y a une cl msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "utiliser l'option --delete-secret-keys pour l'effacer d'abord.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "erreur pendant la cration du mot de passe: %s\n" @@ -789,7 +801,7 @@ msgstr "" "forcer le chiffrement symtrique %s (%d) entre en dsaccord\n" "avec les prferences du rcipient\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -869,11 +881,6 @@ msgstr "impossible d'ex msgid "unable to execute shell `%s': %s\n" msgstr "impossible d'excuter %s %s : %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "impossible de crer `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1175,7 +1182,7 @@ msgstr "" msgid "Pubkey: " msgstr "Cl publique: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Chiffrement: " @@ -1183,7 +1190,7 @@ msgstr "Chiffrement: " msgid "Hash: " msgstr "Hachage: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compression: " @@ -1316,7 +1323,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s n'est pas une table de caractres valide\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossible d'interprter l'URI du serveur de cls\n" @@ -2468,29 +2475,29 @@ msgstr "[r msgid "[self-signature]" msgstr "[auto-signature]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "une mauvaise signature\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d mauvaises signatures\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "une signature non vrifie cause d'une cl manquante\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d signatures non vrifies cause de cls manquantes\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "une signature non vrifie cause d'une erreur\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d signatures non vrifies cause d'erreurs\n" @@ -2543,12 +2550,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Le nom d'utilisateur \"%s\" est rvoqu." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Etes-vous sr de toujours vouloir le signer ? (o/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Impossible de signer.\n" @@ -2752,7 +2759,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Signer rellement ? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3105,242 +3112,242 @@ msgstr "montr.photo" msgid "show photo ID" msgstr "montrer la photo d'identit" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "erreur pendant la lecture du bloc de cl secrte `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "La cl secrte est disponible.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Il faut la cl secrte pour faire cela.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Utilisez la commande toggle d'abord.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "La cl est rvoque." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Signer vraiment tous les utilisateurs ? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Aide: Slectionner les utilisateurs signer\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Cette commande n'est pas admise en mode %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Vous devez slectionner au moins un utilisateur.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Vous ne pouvez pas supprimer le dernier utilisateur !\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Enlever rellement tous les utilisateurs slectionns ? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Enlever rellement cet utilisateur ? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Enlever rellement cet utilisateur ? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Vous devez slectionner au moins une cl.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Vous devez slectionner au moins une cl.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Voulez-vous vraiment supprimer les cls slectionnes ? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Voulez-vous vraiment supprimer cette cl ? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Rvoquer rellement tous les noms d'utilisateurs slectionns ? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Rvoquer rellement ce nom d'utilisateur ? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Voulez-vous vraiment rvoquer les cls slectionnes ? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Voulez-vous vraiment rvoquer cette cl ? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "donner la liste de prfrences" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Enlever rellement les prfrences des utilisateurs slectionns ? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Faut-il vraiment mettre jour les prfrences ? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Enregistrer les changements? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Quitter sans enregistrer? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "la mise jour a chou: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "la mise jour de la cl secrte a chou: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "La cl n'a pas chang donc la mise jour est inutile.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Hachage: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Fonctions: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Cette cl peut tre rvoque par la cl %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensible)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "impossible de crer %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revoque] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [expire: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [expire: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " confiance: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " confiance: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Cette cl a t dsactive" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revoque] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "" "Il n'y a pas de prfrences dans un nom d'utilisateur du style de\n" "PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3348,7 +3355,7 @@ msgstr "" "Notez que la validit affiche pour la cl n'est pas ncessairement\n" "correcte tant que vous n'avez pas relanc le programme.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3357,7 +3364,7 @@ msgstr "" "Cette commande risque de rendre un autre nom d'utilisateur principal\n" "par dfaut.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3367,46 +3374,46 @@ msgstr "" "d'identit peut empcher certaines versions de PGP d'accepter\n" "cette cl\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Etes-vous sr de vouloir l'ajouter ? (y/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" "Vous ne pouvez pas ajouter de photo d'identit une cl du style PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Supprimer cette bonne signature ? (o/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Supprimer cette signature invalide ? (o/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Supprimer cette signature inconnue ? (o/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Faut-il vraiment supprimer cette auto-signature ? (o/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d signature supprime.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d signatures supprimes\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Rien n'a t supprim.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3416,39 +3423,39 @@ msgstr "" "dsign peut empcher certaines versions de PGP d'accepter\n" "cette cl.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "Vous ne pouvez pas ajouter de rvocateur dsign une cl de style PGP2.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Entrez le nom d'utilisateur du rvocateur dsign: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "impossible d'utiliser une cl de style PGP 2.x comme rvocateur\n" "dsign.\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" "vous ne pouvez pas utiliser une cl comme son propre rvocateur\n" "dsign\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AVERTISSEMENT: Cette cl t rvoque par son rvocateur dsign !\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "AVERTISSEMENT: l'tablissement d'une cl comme rvocateur dsign\n" "est irrversible !\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " @@ -3456,130 +3463,130 @@ msgstr "" "Etes-vous sr de vouloir tablir cette cl comme rvocateur\n" "dsign (o/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Enlevez les slections des cls secrtes.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Vous devez slectionner au plus une cl secondaire.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Changer la date d'expiration d'une cl secondaire.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Changer la date d'expiration de la cl principale.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Vous ne pouvez pas changer la date d'expiration d'une cl v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Pas de signature correspondante dans le porte-cls secret\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Vous devez slectionner exactement un utilisateur.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "l'auto-signature v3 du nom d'utilisateur \"%s\" a t ignore\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Etes-vous sr de vouloir l'utiliser ? (o/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Etes-vous sr de vouloir l'utiliser ? (o/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Pas d'utilisateur avec l'index %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Pas de cl secondaire avec l'index %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "nom d'utilisateur: " -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " sign par %08lX %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (non-exportable)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Cette signature a expir le %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Etes-vous sr de vouloir toujours le rvoquer ? (y/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Gnrer un certificat de rvocation pour cette signature ? (o/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Vous avez sign ces noms d'utilisateurs:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (non-exportable)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " rvoqu par %08lX %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Vous tes sur le point de rvoquer ces signatures:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Crer rellement les certificats de rvocation ? (o/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "pas de cl secrte\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "Le nom d'utilisateur \"%s\" est dj rvoqu.\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "AVERTISSEMENT: une signature de nom d'utilisateur date de %d secondes\n" "dans le futur\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4094,108 +4101,108 @@ msgstr "" msgid "never " msgstr "jamais " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Politique de signature critique: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Politique de signature: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "ATTENTION: des donnes de notation invalides ont t dtectes\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notation de signature critique: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notation de signature: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "illisible par un humain" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Porte-cls" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [expire: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Empreinte de cl principale:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Empreinte de la sous-cl:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Empreinte de la cl principale:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Empreinte de la sous-cl:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Empreinte de la cl =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "la construction d'une armure a chou: %s \n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "" "ATTENTION: 2 fichiers avec des informations confidentielles existent.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s est le fichier original\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s est le nouveau\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Rparez ce problme de scurit possible\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "vrification du porte-cls `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu cls vrifies (%lu signatures)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu cls vrifies (%lu signatures)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: porte-cls cr\n" @@ -4319,11 +4326,6 @@ msgstr "la r msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "cl '%s' introuvable: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4767,7 +4769,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problme avec l'agent : l'agent renvoie 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "impossible de demander un mot de passe en mode automatique\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4845,23 +4848,23 @@ msgstr "Cette photo est-elle correcte (o/N/q) ? " msgid "unable to display photo ID!\n" msgstr "impossible d'afficher la photo d'identit !\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Aucune raison spcifie" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "La cl a t remplace" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "La cl a t compromise" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "La cl n'est plus utilise" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Le nom d'utilisateur n'est plus valide" @@ -4932,7 +4935,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Votre dcision ? " @@ -5092,8 +5095,8 @@ msgid "skipped: public key already set\n" msgstr "ignor: cl publique dj active\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "rcipient par dfaut `%s' inconnu\n" #: g10/pkclist.c:948 @@ -5124,15 +5127,15 @@ msgstr "Signature d msgid "Please enter name of data file: " msgstr "Entrez le nom du fichier de donnes: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "lecture de l'entre standard...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "pas de donnes signes\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "impossible d'ouvir les donnes signes `%s'\n" @@ -5172,7 +5175,7 @@ msgid "NOTE: key has been revoked" msgstr "NOTE: la cl a t rvoque" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet a chou: %s\n" @@ -5182,65 +5185,65 @@ msgstr "build_packet a msgid "key %s has no user IDs\n" msgstr "cl %08lX: pas de nom d'utilisateur\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Doit tre rvoqu par:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(c'est une cl de rvocation sensible)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Gnrer un certificat de rvocation pour cette cl ? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "sortie avec armure ASCII force.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet a chou: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Certificat de rvocation cr.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "aucune cl de rvocation trouve pour `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "la cl secrte `%s' n'a pas t trouve: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "pas de cl publique correspondante: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "la cl publique ne correspond pas la cl secrte !\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Gnrer un certificat de rvocation pour cette cl ? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "algorithme de protection inconnu\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "NOTE: Cette cl n'est pas protge !\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5260,33 +5263,33 @@ msgstr "" "le systme d'impression de votre machine pourrait stocker ces\n" "donnes et les rendre accessibles d'autres personnes !\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "choisissez la cause de la rvocation:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Annuler" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Vous devriez srement slectionner %d ici)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Entrez une description optionnelle ; terminez-l par une ligne vide:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Cause de rvocation: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Aucune description donne)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Est-ce d'accord ? " @@ -5474,12 +5477,12 @@ msgstr "" "il n'est possible gnrer une signature dtache avec des cls de\n" "style PGP 2.x qu'en mode --pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "criture de `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5487,51 +5490,44 @@ msgstr "" "forcer l'algorithme de chiffrement %s (%d) entre en dsaccord avec\n" "les prfrences du rcipient\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "signature:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "impossible d'ouvrir le fichier: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "il n'est possible de faire une signature en texte clair avec des cls\n" "de style PGP 2.x qu'en mode --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "le chiffrement %s sera utilis\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "la cl n'est pas marque comme non-sre; on ne peut pas l'utiliser avec le\n" "pseudo-gnrateur de nombres alatiores !\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "`%s' a t ignor: dupliqu\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "`%s' a t ignor: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "ignor: cl secrte dj prsente\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "`%s' a t ignore: c'est une cl ElGamal gnre par PGP qui n'est pas\n" "sre pour les signatures !\n" @@ -6168,6 +6164,20 @@ msgstr "" msgid "(you may have used the wrong program for this task)\n" msgstr "(vous avez peut-tre utilis un programme non adapt cette fin)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "dsol, impossible de faire cela en mode automatique\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "cl '%s' introuvable: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "impossible de crer `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "impossible d'ouvrir le fichier: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/gl.po b/po/gl.po index 0acc9939d..97fe6d719 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -35,9 +35,10 @@ msgstr "non se detectou un m #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "non se puido abrir `%s': %s\n" @@ -69,8 +70,9 @@ msgstr "non se pode ler de `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "nota: o ficheiro random_seed non se actualiza\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "non se pode crear `%s': %s\n" @@ -297,9 +299,11 @@ msgstr "a chave secreta non est msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "sentmolo, non se pode facer isto no modo por lotes\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "non se pode facer iso no modo por lotes\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -473,7 +477,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Seleccin non vlida.\n" @@ -632,11 +636,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "non se pode facer iso no modo por lotes\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Comando> " @@ -645,7 +645,17 @@ msgstr "Comando> " msgid "Admin-only command\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "comandos conflictivos\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "gravando a chave secreta en `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Comando incorrecto (tente \"help\")\n" @@ -673,8 +683,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Introduza o ID de usuario: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "non se puido abrir `%s'\n" @@ -683,13 +693,14 @@ msgstr "non se puido abrir `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output non traballa con este comando\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "non se atopou a chave `%s': %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "erro ao le-lo bloque de chaves: %s\n" @@ -699,7 +710,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(a menos que especifique a chave por pegada dactilar)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "" "iso non se pode facer no modo de procesamento por lotes sen \"--yes\"\n" @@ -731,7 +743,7 @@ msgstr " msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "empregue a opcin \"--delete-secret-keys\" para borrala primeiro.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "erro ao crea-lo contrasinal: %s\n" @@ -778,7 +790,7 @@ msgid "" msgstr "" "forza-la cifra simtrica %s (%d) viola as preferencias do destinatario\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -855,11 +867,6 @@ msgstr "non se puido executar %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "non se puido executar %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "non se pode crear `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1156,7 +1163,7 @@ msgstr "" msgid "Pubkey: " msgstr "Pblica: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Cifra: " @@ -1164,7 +1171,7 @@ msgstr "Cifra: " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compresin: " @@ -1284,7 +1291,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" @@ -2427,29 +2434,29 @@ msgstr "[revocaci msgid "[self-signature]" msgstr "[auto-sinatura]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 sinatura errnea\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d sinaturas errneas\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 sinatura non verificada debido a unha chave que falta\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d sinaturas non verificadas debido a chaves que faltan\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 sinatura non verificada debido a un erro\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d sinaturas non verificadas debido a erros\n" @@ -2502,12 +2509,12 @@ msgid "User ID \"%s\" is revoked." msgstr "O ID de usuario \"%s\" est revocado." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Est seguro de que quere asinalo? (s/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Non se puido asinar.\n" @@ -2706,7 +2713,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Asinar de verdade? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3059,242 +3066,242 @@ msgstr "showphoto" msgid "show photo ID" msgstr "amosa-la identificacin fotogrfica" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "erro ao le-lo bloque de chave secreta `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "A chave secreta est disponible.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Cmpre a chave secreta para facer isto.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Por favor, empregue o comando \"toggle\" antes.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "A chave est revocada." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Seguro de que quere asinar tdolos IDs de usuario? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Pista: seleccione os IDs de usuario que desexa asinar\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Non se admite este comando no modo %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Debe seleccionar alomenos un ID de usuario.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Non pode borra-lo ltimo ID de usuario!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Seguro de que quere borrar tdolos IDs de usuario seleccionados? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Seguro de que quere borrar este ID de usuario? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Seguro de que quere borrar este ID de usuario? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Debe seleccionar alomenos unha chave.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Debe seleccionar alomenos unha chave.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Seguro de que quere borra-las chaves seleccionadas? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Seguro de que quere borrar esta chave? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Seguro de que quere revocar tdolos IDs de usuario seleccionados? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Seguro de que quere revocar este ID de usuario? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Realmente quere revoca-las chaves seleccionadas? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Realmente quere revocar esta chave? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "estabrece-la lista de preferencias" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Seguro que quere actualiza-las preferencias dos IDs de usuario " "seleccionados? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Realmente desexa actualiza-las preferencias? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Garda-los cambios? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Sar sin gardar? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "a actualizacin fallou: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "o segredo da actualizacin fallou: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "A chave non cambiou, polo que non fai falla actualizar.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Resumo: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Caractersticas: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Esta chave pode estar revocada por %s chave " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensible)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "non foi posible crear %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revocada] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [caduca: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [caduca: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " confianza: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " confianza: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Esta chave est desactivada" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revocada] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Non hai preferencias nun ID de usuario estilo PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3302,7 +3309,7 @@ msgstr "" "Tea en conta que a validez da chave amosada non necesariamente\n" "correcta a menos que reinicie o programa.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3310,7 +3317,7 @@ msgstr "" "AVISO: non se marcou ningn ID de usuario coma primario. Esta orde pode\n" " facer que un ID de usuario diferente se converta no primario.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3319,47 +3326,47 @@ msgstr "" "AVISO: Esta unha chave de estilo PGP2. Se engade unha identificacin\n" " fotogrfica algunhas versins de PGP han rexeitar esta chave.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Est seguro de que quere engadila? (s/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" "Non pode engadir unha identificacin fotogrfica a unha chave de estilo " "PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Borrar esta sinatura correcta? (s/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Borrar esta sinatura incorrecta? (s/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Borrar esta sinatura descoecida? (s/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Realmente quere borrar esta auto-sinatura? (s/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Borrada %d sinatura.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Borradas %d sinaturas.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Non se borrou nada.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3369,165 +3376,165 @@ msgstr "" "designado\n" " pode facer que algunhas versins de PGP rexeiten esta chave.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "Non pode engadir un revocador designado a unha chave de estilo PGP 2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Introduza o ID de usuario do revocador designado: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "non se pode nomear unha chave estilo PGP 2.x coma revocador designado\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "non se pode nomear unha chave coma o seu propio revocador designado\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AVISO: Esta chave est revocada polo propietario!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "AVISO: o nomeamento dunha chave coma o seu propio revocador designado non " "se pode desfacer!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Est seguro de que quere nomear esta chave coma revocador designado? (s/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Por favor, quite as seleccins das chaves secretas.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Por favor, seleccione como mximo unha chave secundaria.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Cambiando a data de expiracin para a chave secundaria.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Cambiando a data de expiracin da chave primaria.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Non pode cambia-la data de expiracin dunha chave v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Escolla exactamente un ID de usuario.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "omitindo a auto-sinatura v3 do id de usuario \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Est seguro de que quere empregala (s/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Est seguro de que quere empregala (s/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Non hai ID de usuario con ndice %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Non hai chave secundaria con ndice %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID de usuario: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " asinada por %08lX no %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (non exportable)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Esta sinatura caducou o %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Est seguro de que quere revocala? (s/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Crear un certificado de revocacin para esta sinatura? (s/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Asinou estes IDs de usuario: \n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (non exportable)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revocada por %08lX no %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Est a punto de revocar estas sinaturas:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Realmente desexa crea-los certificados de revocacin? (s/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "non hai chave secreta\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "o ID de usuario \"%s\" xa est revocado\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "AVISO: unha sinatura de ID de usuario ten unha data %d segundos no futuro\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4035,107 +4042,107 @@ msgstr "" msgid "never " msgstr "nunca " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Normativa de sinaturas crticas: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Normativa de sinaturas: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "AVISO: atopronse datos de notacin non vlidos\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notacin de sinaturas crticas: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notacin de sinaturas: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "non lexible por humanos" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Chaveiro" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [caduca: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Pegada dactilar da chave primaria:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Pegada dactilar da sub-chave:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr "Pegada dactilar da chave primaria:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Pegada dactilar da sub-chave:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Pegada dactilar =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "non se puido poe-la armadura: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVISO: existen dous ficheiros con informacin confidencial.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s o que non cambiou\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s o novo\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Por favor, amae este posible fallo de seguridade\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "comprobando o chaveiro `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu chaves comprobadas (%lu sinaturas)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu chaves comprobadas (%lu sinaturas)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: chaveiro creado\n" @@ -4259,11 +4266,6 @@ msgstr "a recepci msgid "\"%s\" not a key ID: skipping\n" msgstr "%s: non un ID de chave vlido\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "non se atopou a chave `%s': %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4697,7 +4699,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problema co axente: o axente voltou coa resposta 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "non se pode consulta-lo contrasinal en modo de proceso por lotes\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4774,23 +4777,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr "non se pode amosa-la identificacin fotogrfica!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Non se especificou un motivo" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "A chave obsoleta" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Esta chave quedou descoberta" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Xa non se emprega esta chave" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "O ID de usuario xa non vlido" @@ -4861,7 +4864,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "A sa decisin? " @@ -5021,8 +5024,8 @@ msgid "skipped: public key already set\n" msgstr "omitido: chave pblica xa estabrecida\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "destinatario por defecto `%s' descoecido\n" #: g10/pkclist.c:948 @@ -5051,15 +5054,15 @@ msgstr "Sinatura non adxunta.\n" msgid "Please enter name of data file: " msgstr "Por favor, introduza o nome do ficheiro de datos: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "lendo de stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "non hai datos asinados\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "non foi posible abri-los datos asinados `%s'\n" @@ -5097,7 +5100,7 @@ msgid "NOTE: key has been revoked" msgstr "NOTA: a chave est revocada" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "a chamada a build_packet fallou: %s\n" @@ -5107,65 +5110,65 @@ msgstr "a chamada a build_packet fallou: %s\n" msgid "key %s has no user IDs\n" msgstr "chave %08lX: non hai ID de usuario\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Ha ser revocada por:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Esta unha chave de revocacin sensible)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Crear un certificado de revocacin para esta sinatura? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Forzouse unha sada con armadura ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "a chamada a make_keysig_packet fallou: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Creouse o certificado de revocacin.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "non se atoparon chaves de revocacin para `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "non se atopou a chave secreta `%s': %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "non hai unha chave pblica correspondente: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "a chave pblica con coincide coa chave secreta!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Crear un certificado de revocacin para esta sinatura? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "algoritmo de proteccin descoecido\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "NOTA: Esta chave non est protexida!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5183,33 +5186,33 @@ msgstr "" "se volve ilexible. Pero tea coidado: o sistema de impresin da sa\n" "mquina podera armacena-los datos e deixrllelos dispoibles a outros.\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Por favor, escolla o motivo da revocacin:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Cancelar" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(probablemente queira seleccionar %d aqu)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Introduza unha descricin opcional; remtea cunha lia en branco:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Motivo para a revocacin: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Non se deu unha descricin)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr " correcto? " @@ -5388,61 +5391,54 @@ msgstr "" "s pode asinar nun ficheiro separado con chaves estilo PGP 2.x no modo --" "pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "escribindo a `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "forza-lo algoritmo de resumo %s (%d) viola as preferencias do destinatario\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "asinando:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "non se puido abrir un ficheiro: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "s pode asinar en claro con chaves estilo PGP 2.x no modo --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "hase empregar cifrado %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "a chave non est marcada coma insegura - non se pode empregar co xerador de " "nmeros aleatorios falso\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "omtese `%s': duplicada\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "omtese `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "omtese: a chave secreta xa est presente\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "omtese `%s': esta unha chave ElGamal xerada por PGP que non segura " "para sinaturas!\n" @@ -6075,6 +6071,20 @@ msgstr "a operaci msgid "(you may have used the wrong program for this task)\n" msgstr "(pode que usara o programa equivocado para esta tarefa)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "sentmolo, non se pode facer isto no modo por lotes\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "non se atopou a chave `%s': %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "non se pode crear `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "non se puido abrir un ficheiro: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/hu.po b/po/hu.po index 9ba99471e..a883b40db 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-19 21:53+0200\n" "Last-Translator: Nagy Ferenc Lszl \n" "Language-Team: Hungarian \n" @@ -35,9 +35,10 @@ msgstr "Nem #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "Nem tudom megnyitni a(z) \"%s\" llomnyt: %s.\n" @@ -70,8 +71,9 @@ msgstr "Nem tudom olvasni a(z) \"%s\" msgid "note: random_seed file not updated\n" msgstr "Megjegyzs: random_seed llomnyt nem frisstettem.\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "Nem tudom ltrehozni a(z) \"%s\" llomnyt: %s.\n" @@ -295,9 +297,11 @@ msgstr "titkos kulcs nem msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "Sajnlom, ezt nem tudom megcsinlni ktegelt mdban!\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "Nem tudom ezt megcsinlni ktegelt mdban!\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -471,7 +475,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "rvnytelen vlaszts.\n" @@ -630,11 +634,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "Nem tudom ezt megcsinlni ktegelt mdban!\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Parancs> " @@ -643,7 +643,17 @@ msgstr "Parancs> " msgid "Admin-only command\n" msgstr "Egymsnak ellentmond parancsok!\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "Egymsnak ellentmond parancsok!\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "rom a titkos kulcsot a %s llomnyba.\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "rvnytelen parancs! (Prblja a sgt: \"help\".)\n" @@ -670,8 +680,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "Nem tudom megnyitni %s-t!\n" @@ -680,13 +690,14 @@ msgstr "Nem tudom megnyitni %s-t!\n" msgid "--output doesn't work for this command\n" msgstr "Az --output opci nem mkdik ehhez a parancshoz.\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "\"%s\" kulcs nem tallhat: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "Hiba a kulcsblokk olvassakor: %s\n" @@ -696,7 +707,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(Kivve, ha megad egy kulcsot az ujjlenyomatval.)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "Nem tudom ezt megcsinlni ktegelt mdban \"--yes\" nlkl.\n" #: g10/delkey.c:139 @@ -727,7 +739,7 @@ msgstr "Van egy titkos kulcs a \"%s\" nyilv msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "Elszr azt trlje a \"--delete-secret-keys\" opcival!\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "Hiba a jelsz ltrehozsakor: %s.\n" @@ -772,7 +784,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "A %s (%d) rejtjelez hasznlata srti a cmzett preferenciit!\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -846,11 +858,6 @@ msgstr "Nem tudom v msgid "unable to execute shell `%s': %s\n" msgstr "Nem tudom vgrehajtani a kvetkez \"%s\"-t: \"%s\": %s.\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "Nem tudom ltrehozni a(z) \"%s\" llomnyt: %s.\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1145,7 +1152,7 @@ msgstr "" msgid "Pubkey: " msgstr "Nyilvnos kulcs (pubkey): " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Rejtjelez (cipher): " @@ -1153,7 +1160,7 @@ msgstr "Rejtjelez msgid "Hash: " msgstr "Kivonatol (hash): " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Tmrt (compression): " @@ -1272,7 +1279,7 @@ msgstr "A \"%s\" rejtjelez msgid "`%s' is not a valid character set\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "rtelmezhetetlen a kulcsszerver URI-ja!\n" @@ -2413,29 +2420,29 @@ msgstr "[visszavon msgid "[self-signature]" msgstr "[nalrs]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 rossz alrs.\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d rossz alrs.\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 alrst nem ellenriztem hinyz kulcs miatt.\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d alrst nem ellenriztem hinyz kulcs miatt.\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 alrst nem ellenriztem hiba miatt.\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d alrst nem ellenriztem hiba miatt.\n" @@ -2489,12 +2496,12 @@ msgid "User ID \"%s\" is revoked." msgstr "\"%s\" felhasznli azonostt visszavontk." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Biztos abban, hogy tovbbra is al akarja rni? (i/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Nem tudom alrni.\n" @@ -2693,7 +2700,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Valban alrja? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3046,240 +3053,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "fotazonost megmutatsa" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "Hiba \"%s\" titkoskulcs-blokk olvassakor: %s.\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Titkos kulcs rendelkezsre ll.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Ehhez szksg van a titkos kulcsra.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Krem, hasznlja elbb a \"toggle\" parancsot!\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "A kulcsot visszavontk." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Valban alrja az sszes felhasznlazonostt? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Javaslat: Vlassza ki az alrni kvnt felhasznlazonostkat!\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Ez a parancs %s mdban nem engedlyezett.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Legalbb egy felhasznlazonostt ki kell vlasztania!\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Nem trlheti az utols felhasznlazonostt!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Valban eltvoltja az sszes kijellt felhasznlazonostt? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Valban eltvoltja ezt a felhasznlazonostt? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Valban eltvoltja ezt a felhasznlazonostt? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Legalbb egy kulcsot ki kell vlasztania!\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Legalbb egy kulcsot ki kell vlasztania!\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Valban trli a kivlasztott kulcsokat? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Valban trli ezt a kulcsot? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Valban visszavonja az sszes kijellt felhasznlazonostt? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Valban visszavonja ezt a felhasznlazonostt? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Valban visszavonja a kijellt kulcsokat? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Valban visszavonja ezt a kulcsot? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "preferencialista belltsa" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Valban frissti a kijellt felhasznlazonostk preferenciit? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Valban frisstsem a preferencikat? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Mentsem a vltoztatsokat? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Kilpjek ments nlkl? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "Frissts sikertelen: %s.\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "Titkoskulcs-blokk frisstse sikertelen: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "A kulcs nem vltozott, nincs szksg frisstsre.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Kivonat: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Jellemzk: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Ezt a kulcsot a kvetkez %s kulcs visszavonhatja: " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (rzkeny)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%s nem hozhat ltre: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[visszavont] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [lejr: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [lejr: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " bizalom: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " bizalom: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Ez a kulcs tiltott." -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[visszavont] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Nincsenek preferencik egy PGP 2.x felhasznlazonostn!\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3287,7 +3294,7 @@ msgstr "" "Krem, vegye figyelembe, hogy az itt lthat kulcs rvnyessge nem\n" "felttlenl helyes, amg jra nem indtja a programot!\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3295,7 +3302,7 @@ msgstr "" "FIGYELEM: Nincs kijellt elsdleges felhasznlazonost. Ez a parancs\n" " azt okozhatja, hogy egy msik azonost lesz elsdlegesknt hasznlva.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3305,45 +3312,45 @@ msgstr "" "okozhatja,\n" " hogy a PGP egyes verzii visszautastjk ezt a kulcsot.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Tovbbra is hozz akarja adni? (i/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Lehet, hogy nem adhat fotazonostt egy PGP2 stlus kulcshoz!\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Trli ezt a j alrst? (i/N/k)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Trli ezt az rvnytelen alrst? (i/N/k)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Trli ezt az ismeretlen alrst? (i/N/k)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Valban trli ezt az nalrst? (i/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Trltem %d alrst.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Trltem %d alrst.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nem trltem semmit.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3353,162 +3360,162 @@ msgstr "" " azt okozhatja, hogy egyes PGP verzik visszautastjk ezt a " "kulcsot!\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "Lehet, hogy nem adhat kijellt visszavont egy PGP 2.x-stlus kulcshoz.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "rja be a kijellt visszavon felhasznlazonostjt: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "Nem adhat meg PGP 2.x stlus kulcsot kijellt visszavonnak!\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "Nem adhat meg egy kulcsot sajt kijellt visszavonjnak!\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "FIGYELEM: Ezt a kulcsot a kijellt visszavon visszavonta!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "FIGYELEM: A kijellt visszavon kulcs megadsa nem csinlhat vissza!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Biztosan ez a kulcs legyen a kijellt visszavon? (i/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Krem, tvoltsa el a kijellseket a titkos kulcsokrl!\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Maximum egy msodlagos kulcsot jelljn ki, krem!\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Msodlagos kulcs lejrati idejnek vltoztatsa.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Elsdleges kulcs lejrati idejnek vltoztatsa.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Nem vltoztathatja meg egy v3 kulcs lejrati dtumt!\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Krem, vlasszon ki pontosan egy felhasznlazonostt!\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "Kihagyom a v3 nalrst a \"%s\" felhasznlazonostn.\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Biztos abban, hogy hasznlni akarja (i/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Biztos abban, hogy hasznlni akarja (i/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Nincs %d index felhasznlazonost!\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Nincs %d index msodlagos kulcs!\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "Felhasznlazonost: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " alrva %08lX ltal %s%s%s idpontban.\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (nem exportlhat)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Ez az alrs lejrt %s idpontban.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Biztos benne, hogy mgis visszavonja? (i/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Csinljunk egy visszavon igazolst ehhez az alrshoz? (i/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "n alrta a kvetkez felhasznlazonostkat:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (nem exportlhat)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " visszavonva %08lX ltal %s idpontban.\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "A kvetkez alrsokat fogja visszavonni:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Valban ltrehozzam a visszavon igazolst? (i/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "Nincs titkos kulcs.\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "\"%s\" felhasznli azonostt mr visszavontk.\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "FIGYELEM: A felhasznlazonostt %d msodperccel a jvben rtk al.\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "%s fotazonost (mret: %ld, kulcs: 0x%08lX, felh: %d) mutatsa.\n" @@ -4014,107 +4021,107 @@ msgstr "" msgid "never " msgstr "soha " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kritikus alrsi eljrsmd: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Alrsi eljrsmd: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "FIGYELEM: rvnytelen jell adatot talltam.\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kritikus alrs-jells: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Alrs-jells: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "nem olvashat forma" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Kulcskarika" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [lejr: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Elsdlegeskulcs-ujjlenyomat:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Alkulcsujjlenyomat:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr "Elsdlegeskulcs-ujjlenyomat:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Alkulcsujjlenyomat:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Kulcs ujjlenyomata =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "Pnclozs nem sikerlt: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "FIGYELEM: 2 bizalmas informcikat tartalmaz llomny van!\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s az eredeti pldny.\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s az j pldny.\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Krem, oldja meg ezt a lehetsges biztonsgi problmt!\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "Ellenrzm a(z) \"%s\" kulcskarikt.\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu kulcsot ellenriztem (%lu alrssal).\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu kulcsot ellenriztem (%lu alrssal).\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: Kulcskarikt ltrehoztam.\n" @@ -4238,11 +4245,6 @@ msgstr "V msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "\"%s\" kulcs nem tallhat: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4680,7 +4682,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "Problma az gynkkel: gynk vlasza: 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "Nem tudok jelszt bekrni ktegelt mdban!\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4758,23 +4761,23 @@ msgstr "Ez a fot msgid "unable to display photo ID!\n" msgstr "Nem tudom megjelenteni a fotazonostt!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Nincs megadva ok." -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "A kulcsot lecserltk." -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "A kulcs kompromittldott." -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "A kulcs mr nem hasznlatos." -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "A felhasznli azonost mr nem rvnyes." @@ -4845,7 +4848,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Mit vlaszt? " @@ -5001,8 +5004,8 @@ msgid "skipped: public key already set\n" msgstr "Kihagyva: Nyilvnos kulcs mr be lett lltva.\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "Ismeretlen alaprtelmezett cmzett: \"%s\"\n" #: g10/pkclist.c:948 @@ -5032,15 +5035,15 @@ msgstr "K msgid "Please enter name of data file: " msgstr "Krem, adja meg az adatllomny nevt: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "Olvasom a szabvnyos bemenetet...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "Nincs alrt adat.\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "Nem tudom megnyitni a(z) \"%s\" alrt adatot!\n" @@ -5078,7 +5081,7 @@ msgid "NOTE: key has been revoked" msgstr "MEGJEGYZS: A kulcsot visszavontk." #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet sikertelen: %s.\n" @@ -5088,65 +5091,65 @@ msgstr "build_packet sikertelen: %s.\n" msgid "key %s has no user IDs\n" msgstr "%08lX kulcs: Nincs felhasznli azonost.\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Visszavonja:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Ez egy rzkeny visszavon kulcs.)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Csinljunk egy visszavon igazolst ehhez a kulcshoz? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "ASCII-pnclozott kimenet kivlasztva.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet sikertelen: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Visszavon igazols ltrehozva.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "Nem talltam visszavon kulcsot a kvetkezhz: \"%s\".\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "\"%s\" titkos kulcs nem tallhat: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "Nincs hozz tartoz nyilvnos kulcs: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "A nyilvnos kulcs nem passzol a titkos kulcshoz!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Csinljunk egy visszavon igazolst ehhez a kulcshoz? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "Ismeretlen vdelmi algoritmus!\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "MEGJEGYZS: Ez a kulcs nem vdett.\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5164,33 +5167,33 @@ msgstr "" "adathordoz olvashatatlann vlik. De vigyzat: az n gpnek nyomtatsi\n" "rendszere is trolhatja az adatot, s msok esetleg hozzfrhetnek ehhez!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Krem, vlassza ki a visszavons okt:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Mgsem" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Valsznleg a(z) %d. lehetsget akarja vlasztani.)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Adjon meg egy nem ktelez lerst! res sorral fejezze be:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Visszavons oka: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Nincs lers.)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Ez gy rendben van? " @@ -5361,12 +5364,12 @@ msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "Klnll alrst PGP 2.x stlus kulcsokkal csak --pgp2 mdban kszthet!\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "rok a \"%s\" llomnyba.\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5374,50 +5377,43 @@ msgstr "" "%s (%d) kivonatol algoritmus hasznlatnak erltetse ellenttes\n" "a cmzett preferenciival.\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "Alrom:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "Nem tudom megnyitni az llomnyt: %s.\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "Olvashat szveget PGP 2.x stlus kulccsal csak --pgp2 mdban rhat al!\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s titkostst fogok hasznlni.\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "A kulcs nincs \"nem biztonsgosnak\" jellve,\n" "nem tudom a ptl vletlenszm-genertorral hasznlni!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "\"%s\"-t kihagytam: msodpldny.\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "Kihagytam \"%s\"-t: %s.\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "Kihagytam: titkos kulcs mr jelen van.\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "Kihagytam \"%s\"-t: ez egy PGP ltal ltrehozott ElGamal kulcs, amely nem\n" "biztonsgos alrsokhoz!\n" @@ -6046,6 +6042,20 @@ msgstr "A m msgid "(you may have used the wrong program for this task)\n" msgstr "(Lehet, hogy nem a megfelel programot hasznlja a feladatra.)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "Sajnlom, ezt nem tudom megcsinlni ktegelt mdban!\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "\"%s\" kulcs nem tallhat: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "Nem tudom ltrehozni a(z) \"%s\" llomnyt: %s.\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "Nem tudom megnyitni az llomnyt: %s.\n" + #, fuzzy #~ msgid " \"" #~ msgstr " azaz \"" diff --git a/po/id.po b/po/id.po index 61675c4dd..809acd1ce 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -37,9 +37,10 @@ msgstr "modul entropi gathering tidak terdeteksi\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "tidak dapat membuka `%s': %s\n" @@ -71,8 +72,9 @@ msgstr "tidak dapat membaca `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "catatan: file random_seed tidak diupdate\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "tidak dapat membuat %s: %s\n" @@ -297,9 +299,11 @@ msgstr "kunci rahasia tidak tersedia" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "maaf, tidak dapat melakukan hal ini dalam mode batch\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "tidak dapat melakukan hal itu dalam mode batch\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -473,7 +477,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Pilihan tidak valid.\n" @@ -632,11 +636,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "tidak dapat melakukan hal itu dalam mode batch\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Perintah> " @@ -645,7 +645,17 @@ msgstr "Perintah> " msgid "Admin-only command\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "perintah saling konflik\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "menulis kunci rahasia ke `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Perintah tidak valid (coba \"help\")\n" @@ -672,8 +682,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "tidak dapat membuka `%s'\n" @@ -682,13 +692,14 @@ msgstr "tidak dapat membuka `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output tidak berfungsi untuk perintah ini\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "kunci '%s' tidak ditemukan: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "gagal membaca keyblock: %s\n" @@ -698,7 +709,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(kecuali anda menspesifikasikan kunci dengan fingerprint)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "tidak dapat dilakukan dalam mode batch tanpa \"--yes\"\n" #: g10/delkey.c:139 @@ -729,7 +741,7 @@ msgstr "terdapat kunci rahasia untuk kunci publik \"%s\"!\n" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "gunakan pilihan \"--delete-secret-key\" untuk menghapusnya.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "kesalahan penciptaan passphrase: %s\n" @@ -776,7 +788,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "memaksa cipher simetrik %s (%d) melanggar preferensi penerima\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -850,11 +862,6 @@ msgstr "tidak dapat mengeksekusi %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "tidak dapat mengeksekusi %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "tidak dapat membuat %s: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1149,7 +1156,7 @@ msgstr "" msgid "Pubkey: " msgstr "Pubkey: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Cipher: " @@ -1157,7 +1164,7 @@ msgstr "Cipher: " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Kompresi: " @@ -1276,7 +1283,7 @@ msgstr "ekstensi cipher \"%s\" tidak dimuat karena permisi tidak aman\n" msgid "`%s' is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "tidak dapat memparsing URI keyserver\n" @@ -2425,29 +2432,29 @@ msgstr "[pembatalan]" msgid "[self-signature]" msgstr "[self-signature]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 signature yang buruk\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d signature yang buruk\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 signature tidak diperiksa karena tidak ada kunci\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d signature tidak diperiksa karena tidak ada kunci\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 signature tidak diperiksa karena kesalahan\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d signature tidak diperiksa karena ada kesalahan\n" @@ -2501,12 +2508,12 @@ msgid "User ID \"%s\" is revoked." msgstr "User ID \"%s\" dibatalkan." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Apakah anda yakin masih ingin menandainya? (y/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr "..Tidak dapat menandai.\n" @@ -2709,7 +2716,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Ditandai? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3062,240 +3069,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "tampilkan photo ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "kesalahan membaca keyblock rahasia `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Kunci rahasia tersedia.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Perlu kunci rahasia untuk melakukan hal ini.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Silakan gunakan dulu perintah \"toogle\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Kunci dibatalkan" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Tandai ID seluruh user? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Petunjuk: Pilih ID user untuk ditandai\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Perintah ini tidak dibolehkan saat dalam mode %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Anda harus memilih minimum satu ID user.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Anda tidak dapat menghapus ID user terakhir!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Hapus seluruh ID user terpilih? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Hapus ID user ini? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Hapus ID user ini? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Anda harus memilih minimum satu kunci.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Anda harus memilih minimum satu kunci.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Anda ingin menghapus kunci terpilih ini? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Anda ingin menghapus kunci ini? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Benar-benar hapus seluruh ID user terpilih? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Benar-benar hapus ID user ini? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Anda ingin membatalkan kunci terpilih ini? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Anda ingin membatalkan kunci ini? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "set daftar preferensi" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Perbarui preferensi untuk user ID terpilih?" -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Update preferensi?" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Simpan perubahan? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Berhenti tanpa menyimpan? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "gagal memperbarui: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "gagal perbarui rahasia: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Kunci tidak berubah sehingga tidak perlu pembaharuan.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Digest: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Fitur: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Kunci ini dapat dibatalkan oleh kunci %s" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensitive)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "tidak dapat membuat %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revoked] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [berakhir: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [berakhir: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " trust: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " trust: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Kunci ini telah ditiadakan" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revoked] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Tidak ada preferensi pada user ID bergaya PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3303,7 +3310,7 @@ msgstr "" "Perhatikan bahwa validitas kunci yang ditampilkan belum tentu benar\n" "kecuali anda memulai kembali program.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3311,7 +3318,7 @@ msgstr "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3321,45 +3328,45 @@ msgstr "" "dapat menyebabkan beberapa versi\n" " PGP menolak kunci ini.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Anda tetap ingin menambahkannya? (y/n) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Anda tidak boleh menambahkan sebuah photo ID ke kunci bergaya PGP2 \n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Hapus signature baik ini? (y/T/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Hapus signature tidak valid ini? (y/T/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Hapus signature tidak dikenal ini? (y/T/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Yakin ingin menghapus self-signature ini? (y/T)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Menghapus %d signature.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Menghapus %d signature.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Tidak ada yang dihapus.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3369,165 +3376,165 @@ msgstr "" "designated dapat\n" "............menyebabkan beberapa versi PGP menolak kunci ini.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Anda tidak boleh revoker designated ke kunci bergaya PGP2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Masukkan user ID pihak yang ingin dibatalkan: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "tidak dapat menunjuk kunci bergaya PGP 2.x sebagai pihak yang dibatalkan\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" "anda tidak dapat menunjuk sebuah kunci sebagai pihak yang dibatalkan " "sendiri\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "PERINGATAN: Kunci ini telah dibatalkan oleh pihak yang berwenang\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "PERINGATAN: menunjuk sebuah kunci sebagai pihak yang dibatalkan tidak dapat " "dilakukan\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Anda yakin ingin menunjuk kunci inin sebagai pihak yang dibatalkan? (y/N):" -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Silakan hapus pilihan dari kunci rahasia.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Silakan pilih maksimum satu kunci sekunder.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Merubah batas waktu untuk kunci sekunder.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Merubah batas waktu untuk kunci primer.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Anda tidak dapat merubah batas waktu kunci v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Anda harus memilih minimum satu ID user.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "melewati self-signature v3 pada user id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Apakah anda yakin ingin menggunakannya? (y/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Apakah anda yakin ingin menggunakannya? (y/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Tidak ada ID user dengan index %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Tidak ada kunci sekunder dengan index %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID user: " -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " ditandai oleh %08lX pada %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (tidak dapat diekspor)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Kunci ini akan kadaluarsa pada %s \n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Anda tetap ingin membatalkannya? (y/n) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Membuat sertifikat pembatalan untuk signature ini? (y/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Anda telah menandai ID user ini:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (tidak dapat diekspor)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " dibatalkan oleh %08lX pada %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Anda akan membatalkan signature ini:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Ingin membuat sertifikat pembatalan? (y/T)" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "tidak ada kunci rahasia\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "User ID \"%s\" telah dibatalkan\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "PERINGATAN: signature user ID bertanggal %d detik di masa depan\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Menampilkan photo ID %s berukuran %ld untuk kunci 0x%08lX (uid %d)\n" @@ -4031,107 +4038,107 @@ msgstr "" msgid "never " msgstr "tidak pernah..." -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kebijakan signature kritis: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Kebijakan signature: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "PERINGATAN: ditemukan notasi data tidak valid\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notasi signature kritis: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notasi signature: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "tidak dapat dibaca manusia" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Keyring" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [berakhir: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Fingerprint kunci primer:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Fingerprint subkunci =" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Fingerprint kunci primer =" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Fingerprint subkunci =" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Fingerprint kunci =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "PERINGATAN: terdapat 2 file dengan informasi penting.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s adalah yang tidak berubah\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s adalah yang baru\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Silakan perbaiki kemungkinan lubang keamanan ini\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "memeriksa keyring `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu kunci telah diperiksa (%lu signature)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu kunci telah diperiksa (%lu signature)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: keyring tercipta\n" @@ -4254,11 +4261,6 @@ msgstr "Penerimaan keyserver gagal: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "kunci '%s' tidak ditemukan: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4689,7 +4691,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "masalah dengan agen: agen mengembalikan 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "tidak dapat meminta password dalam mode batch\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4768,23 +4771,23 @@ msgstr "Apakah foto ini benar (y/N/q)? " msgid "unable to display photo ID!\n" msgstr "tidak dapat menampilkan photo ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Tidak ada alasan diberikan" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Kunci dilampaui" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Kunci ini telah dikompromikan" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Kunci tidak lagi digunakan" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "ID User tidak lagi valid" @@ -4855,7 +4858,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Keputusan anda? " @@ -5010,8 +5013,8 @@ msgid "skipped: public key already set\n" msgstr "dilewati: kunci publik telah diset\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "penerima baku tidak dikenal `%s'\n" #: g10/pkclist.c:948 @@ -5040,15 +5043,15 @@ msgstr "Menghapus signature.\n" msgid "Please enter name of data file: " msgstr "Silakan masukkan nama file data: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "membaca stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "tidak ada data tertandai\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "tidak dapat membuka data tertandai `%s'\n" @@ -5086,7 +5089,7 @@ msgid "NOTE: key has been revoked" msgstr "CATATAN: kunci telah dibatalkan" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet gagal: %s\n" @@ -5096,65 +5099,65 @@ msgstr "build_packet gagal: %s\n" msgid "key %s has no user IDs\n" msgstr "kunci %08lX: tidak ada ID user\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Akan dibatalkan oleh:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Ini adalah kunci pembatalan sensitif)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Buat sertifikat pembatalan untuk kunci ini?" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Pemaksaan output mode ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "gagal make_keysig_packet: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Sertifikat pembatalan tercipta.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "tidak ditemukan kunci pembatalan untuk `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "kunci rahasia `%s' tidak ditemukan: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "tidak ada kunci publik yang sesuai: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "kunci publik tidak cocok dengan kunci rahasia!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Buat sertifikat pembatalan untuk kunci ini?" -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "algoritma proteksi tidak dikenal\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "CATATAN: Kunci ini tidak diproteksi!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5174,34 +5177,34 @@ msgstr "" "pencetakan\n" "mesin anda mungkin menyimpan data dan menyediakannya untuk yang lain!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Batal" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Mungkin anda ingin memilih %d di sini)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" "Masukkan sebuah deskripsi opsional; akhiri dengan sebuah baris kosong:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Alasan pembatalan: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Tidak diberikan deskripsi)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Ini oke? " @@ -5371,62 +5374,55 @@ msgstr "" "anda hanya dapat detach-sign dengan kunci bergaya PGP 2.x saat dalam mode --" "pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "menulis ke `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "memaksa algoritma digest %s (%d) melanggar preferensi penerima\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "menandai:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "tidak dapat membuka file: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "anda hanya dapat clearsign dengan kunci bergaya PGP 2.x saat dalam mode --" "pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s enkripsi akan digunakan\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "kunci tidak dianggap sebagai tidak aman - tidak dapat digunakan dengan RNG " "palsu!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "lewati `%s': terduplikasi\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "melewati `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "melewati `%s': ini adalah kunci ElGamal yang dihasilkan PGP yang tidak aman " "untuk signature!\n" @@ -6055,6 +6051,20 @@ msgstr "operasi tidak mungkin tanpa menginisialisasi memori yang aman\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(anda mungkin menggunakan program yang salah untuk tugas ini)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "maaf, tidak dapat melakukan hal ini dalam mode batch\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "kunci '%s' tidak ditemukan: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "tidak dapat membuat %s: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "tidak dapat membuka file: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/it.po b/po/it.po index 6cb2a46a8..cae774fd5 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-16 17:01+0200\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -35,9 +35,10 @@ msgstr "non #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "impossibile aprire `%s': %s\n" @@ -70,8 +71,9 @@ msgstr "impossibile leggere `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "nota: il file random_seed non stato aggiornato\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "impossibile creare `%s': %s\n" @@ -298,9 +300,11 @@ msgstr "la chiave segreta non msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "mi dispiace, non possibile fare questo in modo batch\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "impossibile fare questo in modo batch\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -475,7 +479,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Scelta non valida.\n" @@ -634,11 +638,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "impossibile fare questo in modo batch\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Comando> " @@ -647,7 +647,17 @@ msgstr "Comando> " msgid "Admin-only command\n" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "comandi in conflitto\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "scrittura della chiave segreta in `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Comando non valido (prova \"help\")\n" @@ -674,8 +684,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "impossibile aprire `%s'\n" @@ -684,13 +694,14 @@ msgstr "impossibile aprire `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output non funziona con questo comando\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "chiave `%s' non trovata: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "errore leggendo il keyblock: %s\n" @@ -700,7 +711,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(a meno che la chiave sia specificata con il fingerprint)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "impossibile fare questo in modo batch senza \"--yes\"\n" #: g10/delkey.c:139 @@ -731,7 +743,7 @@ msgstr "c' msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "usa prima l'opzione \"--delete-secret-keys\" per cancellarla.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "errore nella creazione della passhprase: %s\n" @@ -782,7 +794,7 @@ msgstr "" "forzare il cifrario simmetrico %s (%d) viola le preferenze\n" "del destinatario\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -862,11 +874,6 @@ msgstr "impossibile eseguire %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "impossibile eseguire %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "impossibile creare `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1160,7 +1167,7 @@ msgstr "" msgid "Pubkey: " msgstr "A chiave pubblica: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Cifrari: " @@ -1168,7 +1175,7 @@ msgstr "Cifrari: " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compressione: " @@ -1290,7 +1297,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s non un set di caratteri valido\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossibile fare il parsing dell'URI del keyserver\n" @@ -2438,29 +2445,29 @@ msgstr "[revoca]" msgid "[self-signature]" msgstr "[autofirma]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "una firma non corretta\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d firme non corrette\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "una firma non controllata per mancanza della chiave\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d firme non controllate per mancanza delle chiavi\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "una firma non controllata a causa di un errore\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d firme non controllate a causa di errori\n" @@ -2514,12 +2521,12 @@ msgid "User ID \"%s\" is revoked." msgstr "L'user ID \"%s\" stato revocato." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Sei ancora sicuro di volerla firmare? (s/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Impossibile firmarla.\n" @@ -2720,7 +2727,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Firmo davvero? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3073,240 +3080,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "mostra l'ID fotografico" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "errore leggendo il keyblock segreto `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr " disponibile una chiave segreta.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Per fare questo serve la chiave segreta.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Per favore usa prima il comando \"toggle\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "La chiave stata revocata." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Firmo davvero tutti gli user ID? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Suggerimento: seleziona gli user ID da firmare\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Questo comando non permesso in modalit %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Devi selezionare almeno un user ID.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Non puoi cancellare l'ultimo user ID!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Tolgo davvero tutti gli user ID selezionati? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Tolgo davvero questo user ID? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Tolgo davvero questo user ID? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Devi selezionare almeno una chiave.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Devi selezionare almeno una chiave.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Vuoi davvero cancellare le chiavi selezionate? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Vuoi davvero cancellare questa chiave? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Revoco davvero tutti gli user ID selezionati? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Revoco davvero questo user ID? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Vuoi davvero revocare le chiavi selezionate? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Vuoi davvero revocare questa chiave? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "imposta la lista di preferenze" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Aggiorno davvero le preferenze per gli user ID selezionati? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Aggiorno davvero le preferenze? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Salvo i cambiamenti? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Esco senza salvare? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "aggiornamento fallito: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "aggiornamento della chiave segreta fallito: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "La chiave non cambiata quindi non sono necessari aggiornamenti.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Digest: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Caratteristiche: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Questa chiave pu essere revocata dalla chiave %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensibile)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "impossibile creare %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revocata]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "[scadenza: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "[scadenza: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " fiducia: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " fiducia: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Questa chiave stata disabilitata" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revocata]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Non esistono preferense su un user ID in stile PGP 2.x\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3315,7 +3322,7 @@ msgstr "" "corretta\n" "finch non eseguirai di nuovo il programma.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3324,7 +3331,7 @@ msgstr "" " potrebbe fare diventare un altro user ID il primario " "predefinito.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3333,46 +3340,46 @@ msgstr "" "ATTENZIONE: Questa una chiave in stile PGP2. Aggiungere un ID fotografico\n" " pu causarne il rifiuto da parte di alcune versioni di PGP.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Sei ancora sicuro di volerlo aggiungere? (s/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" "Non possibile aggiungere un ID fotografico a una chiave in stile PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Cancellare questa firma corretta? (s/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Cancellare questa firma non valida? (s/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Cancellare questa firma sconosciuta? (s/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Cancellare davvero questa autofirma? (s/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Cancellata %d firma.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Cancellate %d firme.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Non stato cancellato nulla.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3382,168 +3389,168 @@ msgstr "" " designato pu causarne il rifiuto da parte di alcune versioni\n" " di PGP.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "Non possibile aggiungere un revocatore designato a una chiave in stile\n" "PGP 2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Inserisci l'user ID del revocatore designato: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "impossibile nominare come revocatore designato una chiave in stile PGP 2.x\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" "impossibile nominare una chiave come revocatore designato di s stessa\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "" "ATTENZIONE: questa chiave stata revocata dal suo revocatore designato!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "ATTENZIONE: la nomina di una chiave a revocatrice designata non pu essere\n" "annullata.\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Sei sicuro di volere nominare questa chiave revocatrice designata? (s/N):" -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Togli le selezioni dalle chiavi segrete.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Seleziona al massimo una chiave secondaria.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Cambio la data di scadenza per una chiave secondaria.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Cambio la data di scadenza per la chiave primaria.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Non possibile cambiare la data di scadenza di una chiave v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Devi selezionare esattamente un user ID.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "salto una autofirma v3 sull'user ID \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Sei sicuro di volerla usare? (s/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Sei sicuro di volerla usare? (s/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Nessun user ID con l'indice %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Nessuna chiave secondaria con l'indice %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "user ID: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " firmata da %08lX il %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (non esportabile)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Questa chiave scaduta il %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Sei ancora sicuro di volerlo aggiungere? (s/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Creare un certificato di revoca per questa firma? (s/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Non puoi cancellare l'ultimo user ID!\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (non esportabile)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revocata da %08lX il %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Stai per revocare queste firme:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Creare davvero i certificati di revoca? (s/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "manca la chiave segreta\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "l'user ID \"%s\" gi stato revocato\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "ATTENZIONE: una firma dell'user ID ha la data di %d secondi nel futuro\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4050,107 +4057,107 @@ msgstr "" msgid "never " msgstr "mai " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Politica critica di firma: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Politica di firma: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "ATTENZIONE: trovati dati di una nota non validi\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Annotazione critica della firma: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Annotazione della firma: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "non leggibile" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Portachiavi" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "[scadenza: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Impronta digitale della chiave primaria:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Impronta digitale della subchiave:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Impronta digitale della chiave primaria:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Impronta digitale della subchiave:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Impronta digitale =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ATTENZIONE: esistono due file con informazioni confidenziali.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s quello non modificato\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s quello nuovo\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Per favore risolvete questo possibile problema di sicurezza\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "controllo il portachiavi `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "Sono state controllate %lu chiavi (%lu firme)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "Sono state controllate %lu chiavi (%lu firme)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: portachiavi creato\n" @@ -4276,11 +4283,6 @@ msgstr "ricezione dal keyserver fallita: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "chiave `%s' non trovata: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4713,7 +4715,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problema con l'agent: ha restituito 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "impossibile chiedere la password in modo batch\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4793,23 +4796,23 @@ msgstr "Questa foto msgid "unable to display photo ID!\n" msgstr "impossibile mostrare l'ID fotografico\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Nessuna ragione specificata" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Questa chiave stata sostituita" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Questa chiave stata compromessa" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "La chiave non pi usata" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "L'user ID non pi valido" @@ -4880,7 +4883,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Cosa hai deciso? " @@ -5037,8 +5040,8 @@ msgid "skipped: public key already set\n" msgstr "saltata: chiave pubblica gi impostata\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "destinatario predefinito `%s' sconosciuto\n" #: g10/pkclist.c:948 @@ -5068,15 +5071,15 @@ msgstr "Firma separata.\n" msgid "Please enter name of data file: " msgstr "Inserisci il nome del file di dati: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "viene letto stdin...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "non ci sono dati firmati\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "impossibile aprire i dati firmati `%s'\n" @@ -5115,7 +5118,7 @@ msgid "NOTE: key has been revoked" msgstr "NOTA: la chiave stata revocata" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet fallito: %s\n" @@ -5125,65 +5128,65 @@ msgstr "build_packet fallito: %s\n" msgid "key %s has no user IDs\n" msgstr "chiave %08lX: nessun user ID\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Revocabile da:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Questa una chiave di revoca sensibile)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Creare un certificato di revoca per questa chiave? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Forzato l'output con armatura ASCII.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet fallito: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Certificato di revoca creato.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "non sono state trovate chiavi di revoca per `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "chiave segreta `%s' non trovata: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "non c' una chiave pubblica corrispondente: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "la chiave pubblica non corrisponde alla chiave segreta!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Creare un certificato di revoca per questa chiave? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "algoritmo di protezione sconosciuto\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "NOTA: Questa chiave non protetta!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5203,33 +5206,33 @@ msgstr "" "disponibili\n" "ad altri!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Per favore scegli il motivo della revoca:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Cancella" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Probabilmente volevi scegliere %d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Inserisci una descrizione opzionale; terminala con una riga vuota:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Motivo della revoca: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Non stata data una descrizione)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Va bene cos? " @@ -5416,62 +5419,55 @@ msgstr "" "nella modalit --pgp2 puoi fare firme separate solo con chiavi in stile PGP " "2.x\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "scrittura in `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "forzare l'algoritmo di digest %s (%d) viola le preferenze del destinatario\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "firma:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "impossibile aprire il file: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "In modalit -pgp2 puoi firmare in chiaro solo con chiavi in stile PGP 2.x\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "sar usato il cifrario %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "la chiave non indicata come insicura - impossibile usarla con il RNG " "finto!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "saltata `%s': doppia\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "saltata `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "saltata: chiave pubblica gi presente\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "saltata %s: questa una chiave ElGamal generata da PGP che NON sicura per " "le firme!\n" @@ -6101,6 +6097,20 @@ msgstr "l'operazione non msgid "(you may have used the wrong program for this task)\n" msgstr "(potresti avere usato il programma sbagliato per questa funzione)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "mi dispiace, non possibile fare questo in modo batch\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "chiave `%s' non trovata: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "impossibile creare `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "impossibile aprire il file: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/ja.po b/po/ja.po index 490573730..1b0c31c7d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.1\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-12-06 00:44+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" @@ -38,9 +38,10 @@ msgstr " #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "%sפޤ: %s\n" @@ -72,8 +73,9 @@ msgstr " msgid "note: random_seed file not updated\n" msgstr ": random_seed եι򤷤ޤ\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "%sפǤޤ: %s\n" @@ -297,9 +299,11 @@ msgstr " msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "ǰʤ顢Хå⡼ɤǤϤǤޤ\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "ϥХå⡼ɤǤϤǤޤ\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -473,7 +477,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "̵Ǥ\n" @@ -632,11 +636,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "ϥХå⡼ɤǤϤǤޤ\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "ޥ> " @@ -645,7 +645,17 @@ msgstr " msgid "Admin-only command\n" msgstr "Ω륳ޥ\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "Ω륳ޥ\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "%sפ̩񤭹ߤޤ\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "̵ʥޥ (helpפ򻲾)\n" @@ -672,8 +682,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "%sפޤ\n" @@ -682,13 +692,14 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "Υޥɤ--outputϵǽޤ\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "%sפĤޤ: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "֥åɹߥ顼: %s\n" @@ -698,7 +709,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(뤤ϡǸ)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "--yesפΤʤХå⡼ɤǤϤǤޤ\n" #: g10/delkey.c:139 @@ -729,7 +741,7 @@ msgstr " msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "ޤ--delete-secret-keysץץǤƤ\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "ѥե졼κ顼: %s\n" @@ -773,7 +785,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "оΰŹ楢르ꥺ %s (%d) ζͤΩޤ\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -846,11 +858,6 @@ msgstr " msgid "unable to execute shell `%s': %s\n" msgstr "¹ԤǤޤ %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "%sפǤޤ: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1149,7 +1156,7 @@ msgstr "" msgid "Pubkey: " msgstr ": " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Ź: " @@ -1157,7 +1164,7 @@ msgstr " msgid "Hash: " msgstr "ϥå: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr ": " @@ -1276,7 +1283,7 @@ msgstr " msgid "`%s' is not a valid character set\n" msgstr "%sϡͭʸǤϤޤ\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "СURIǽ\n" @@ -2397,29 +2404,29 @@ msgstr "[ msgid "[self-signature]" msgstr "[ʽ̾]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "̵ʽ̾1\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "̵ʽ̾%d\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "ʤ1Ĥν̾򸡺ޤ\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "ʤ%dĤν̾򸡺ޤ\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "顼Τ1Ĥν̾򸡺ޤ\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "顼Τ%dĤν̾򸡺ޤ\n" @@ -2472,12 +2479,12 @@ msgid "User ID \"%s\" is revoked." msgstr "桼ID%sפϡƤޤ" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Ǥ⤳θ˽̾Ǥ? (y/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " ̾ǽ\n" @@ -2673,7 +2680,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "˽̾ޤ? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3027,240 +3034,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "եIDɽ" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "̩֥å%sפɹߥ顼: %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "̩ѤǤޤ\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "μ¹Ԥˤ̩ޤ\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "ޤtoggleץޥɤȤäƤ\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "ϡƤޤ" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "桼ID˽̾ޤ? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr ": ޤ̾桼ID򤷤ޤ\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "%s⡼ɤǤΥޥɤѤ뤳ȤϤǤޤ\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "桼ID򾯤ʤȤҤȤ򤷤Ƥ\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "ǸΥ桼IDϺǤޤ!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "򤷤桼ID˺ޤ? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Υ桼ID˺ޤ? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Υ桼ID˺ޤ? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "򾯤ʤȤҤȤ򤷤Ƥ\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "򾯤ʤȤҤȤ򤷤Ƥ\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "򤷤˺ޤ? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "θ˺ޤ? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "򤷤桼ID˼ޤ? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Υ桼ID˼ޤ? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "򤷤˼ޤ? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "θ˼ޤ? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "ΰ" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "򤷤桼ID˹ޤ? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "˹ޤ? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "ѹ¸ޤ? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "¸˽λޤ? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "̩ι˼Ԥޤ: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "̵ѹʤΤǹϤޤ\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr ": " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "ǽ: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "θϡ%sˤäƼ줿褦Ǥ " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (ǥꥱ)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%sǤޤ: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [ͭ: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [ͭ: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " trust: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " trust: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "θϻѶػߤꤵƤޤ" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "PGP 2.x桼IDޤ\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3268,7 +3275,7 @@ msgstr "" "ץƵưޤǡɽ줿ͭʤ⤷ʤ\n" "ȤȤǰƬ֤Ƥ\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3276,7 +3283,7 @@ msgstr "" "ٹ: Ȥʤ桼IDޤ󡣤Υޥɤϡ̤\n" " 桼IDˤʤȲꤹ礬ޤ\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3285,45 +3292,45 @@ msgstr "" "ٹ: PGP2θǤեIDɲäǡǤPGPϡ\n" " θݤ뤫⤷ޤ\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "ǤɲäǤ? (y/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "PGP2θˤϥեIDɲäǤʤ⤷ޤ\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "̾ޤ? (y/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "̵ʽ̾ޤ? (y/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "̤Τν̾ޤ? (y/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "μʽ̾˺ޤ? (y/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%dĤν̾ޤ\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%dĤν̾ޤ\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Ƥޤ\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3332,159 +3339,159 @@ msgstr "" "ٹ: PGP 2.xθǤ̾ԤɲäǡǤPGPϡ\n" " θݤ뤫⤷ޤ\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "PGP 2.xθˤϻ̾ԤɲäǤʤ⤷ޤ\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "̾ԤΥ桼IDϤƤ: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "PGP 2.xθϡ̾ԤǤ̿Ǥޤ\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "̾ԤˤϡθΤǤ̿Ǥޤ\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "ٹ: θܿͤˤäƼƤޤ!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "ٹ: 븰̾Ԥꤹȡ᤻ޤ!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "ˤθ̾Ԥꤷޤ? (y/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "̩ȤƤ\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "⡹1Ĥ򤷤Ƥ\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "ͭ¤ѹޤ\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "縰ͭ¤ѹޤ\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "v3ͭ¤ѹǤޤ\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "̩ؤб̾ޤ\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "桼ID򤭤äҤȤ򤷤Ƥ\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "桼id%sפv3ʽ̾ȤФޤ\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Ǥ˻ѤǤ (y/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Ǥ˻ѤǤ (y/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "%d֤Υ桼IDϤޤ\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "%d֤Ϥޤ\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "桼ID: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " %08lX%s%s%s˽̾Ƥޤ\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (ФԲ)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "ν̾%sǴڤǤ\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Ǥ˼Ǥ? (y/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "ν̾ˤ뼺ޤ? (y/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Υ桼ID˽̾ޤ:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (ФԲ)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " %08lX%s˼Ƥޤ\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "ν̾򼺸褦ȤƤޤ:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "˺ޤ? (y/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "̩ޤ\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "桼ID%sפϡ⤦Ƥޤ\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "ٹ: 桼ID̾%d̤Ǥ\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "%s򥵥%ldθ0x%08lX (uid %d) ΥեIDȤɽ\n" @@ -3984,107 +3991,107 @@ msgstr "" msgid "never " msgstr "̵ " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "ƥʽ̾ݥꥷ: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "̾ݥꥷ: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "ٹ: ̵ǡޤ\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "ƥʽ̾: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "̾: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "ͤˤɤޤ" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [ͭ: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "縰λ:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr "λ:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " 縰λ:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " λ:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ٹ: Ѿä2ĤΥե뤬¸ߤޤ\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%sѹΤʤǤ\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%sϿǤ\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "ΰη٤Ƥ\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "ء%sפ򸡺Ƥޤ\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%luĤθޤǸ (%luĤν̾)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%luĤθޤǸ (%luĤν̾)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: ؤǤޤ\n" @@ -4207,11 +4214,6 @@ msgstr " msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "%sפĤޤ: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4640,7 +4642,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "Ȥ˾㳲: Ȥ0x%lxֵ\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "Хå⡼ɤǤϥѥɤ礻Ǥޤ\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4717,23 +4720,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr "եIDɽǽ!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "ͳϻꤵƤޤ" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Ȥ꤫äƤޤ" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "ѥޤ" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Ϥ⤦ȤƤޤ" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "桼ID⤦ͭǤޤ" @@ -4804,7 +4807,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "ʤη? " @@ -4956,8 +4959,8 @@ msgid "skipped: public key already set\n" msgstr "å: ѤߤǤ\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "μ͡%sפĤޤ\n" #: g10/pkclist.c:948 @@ -4988,15 +4991,15 @@ msgstr "ʬΥ msgid "Please enter name of data file: " msgstr "ǡե̾: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "ɸϤɹ ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "̾줿ǡޤ\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "̾줿ǡ`%s'ޤ\n" @@ -5034,7 +5037,7 @@ msgid "NOTE: key has been revoked" msgstr ": ϼѤߤǤ" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet ˼Ԥޤ: %s\n" @@ -5044,65 +5047,65 @@ msgstr "build_packet msgid "key %s has no user IDs\n" msgstr "%08lX: 桼IDޤ\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr ":\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(ϡǥꥱȤʼǤ)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "ν̾ˤ뼺ޤ? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "ASCIIϤޤ\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet ˼Ԥޤ: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "%sѤμϡޤ\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "̩%sפĤޤ: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "бޤ: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "̩ȹ礷ޤ!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "ν̾ˤ뼺ޤ? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "̤Τݸ르ꥺǤ\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr ": θݸƤޤ!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5120,33 +5123,33 @@ msgstr "" "ǤդƤʤΥޥΰƥϡ\n" "Ǥ⸫˥ǡ򤪤Ȥޤ!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "ͳ򤷤Ƥ:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "󥻥" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(ǤϤä%dӤޤ)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "ͽϡԤǽλ:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "ͳ: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Ϥޤ)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Ǥ? " @@ -5299,60 +5302,53 @@ msgstr "%s msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤϡPGP 2.xθʬΥ̾ǤǤ\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "%sפؤνФ\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "󥢥르ꥺ %s (%d) ζͤΩޤ\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "̾:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "ե뤬ޤ: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤPGP 2.xθǥꥢ̾Ǥޤ\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%sŹ沽Ѥޤ\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "ݤǤȤե饰ˤꤵƤޤ\n" "ʪҤȤϤä˻Ȥޤ!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "%sפ򥹥å: ʣ\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "%sפ򥹥å: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "å: ̩ϴˤޤ\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "%sפ򥹥å: PGPElGamalǤ\n" "̾ѤˤϡǤϤޤ!\n" @@ -5981,6 +5977,20 @@ msgstr " msgid "(you may have used the wrong program for this task)\n" msgstr "(ŪˤϸäץѤΤǤ礦)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "ǰʤ顢Хå⡼ɤǤϤǤޤ\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "%sפĤޤ: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "%sפǤޤ: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "ե뤬ޤ: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " ̾ \"" diff --git a/po/nl.po b/po/nl.po index f859e6d0f..f0c5fd68d 100644 --- a/po/nl.po +++ b/po/nl.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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-05-10 19:23+0200\n" "Last-Translator: Elros Cyriatan \n" "Language-Team: Dutch \n" @@ -37,9 +37,10 @@ msgstr "geen entropie verzamelende module gevonden\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "kan `%s' niet openen: %s\n" @@ -72,8 +73,9 @@ msgstr "kan `%s' niet lezen: %s\n" msgid "note: random_seed file not updated\n" msgstr "let op: random_seed bestand niet bijgewerkt\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "kan `%s' niet aanmaken: %s\n" @@ -299,9 +301,11 @@ msgstr "geheime sleutel niet beschikbaar" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "sorry, dat kan niet in batch-modus\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "dat kan niet in batch-modus\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -475,7 +479,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Ongeldige keuze.\n" @@ -634,11 +638,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "dat kan niet in batch-modus\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Opdracht> " @@ -647,7 +647,17 @@ msgstr "Opdracht> " msgid "Admin-only command\n" msgstr "conflicterende opdrachten\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "conflicterende opdrachten\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "bezig met schrijven geheime sleutel naar `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Ongeldige opdracht (probeer \"hulp\")\n" @@ -674,8 +684,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "kan `%s' niet openen\n" @@ -684,13 +694,14 @@ msgstr "kan `%s' niet openen\n" msgid "--output doesn't work for this command\n" msgstr "--uitvoer werkt niet voor deze opdracht\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "sleutel `%s' niet gevonden: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "fout bij lezen sleutelblok: %s\n" @@ -700,7 +711,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(tenzij u de sleutel aangeeft met de vingerafdruk)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "dat kan niet in batch-modus zonder \"--yes\"\n" #: g10/delkey.c:139 @@ -732,7 +744,7 @@ msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "" "gebruik de optie \"--delete-secret-keys\" om deze eerst te verwijderen.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "fout bij maken wachtwoord: %s\n" @@ -781,7 +793,7 @@ msgstr "" "het afdwingen van symmetrische codering %s (%d) gaat tegen de voorkeuren van " "de ontvanger in\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -861,11 +873,6 @@ msgstr "kan %s \"%s\" niet uitvoeren: %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "kan %s \"%s\" niet uitvoeren: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "kan `%s' niet aanmaken: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1163,7 +1170,7 @@ msgstr "" msgid "Pubkey: " msgstr "Openbare sleutel: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Codering: " @@ -1171,7 +1178,7 @@ msgstr "Codering: " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compressie: " @@ -1291,7 +1298,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s is geen geldige tekenset\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "kon sleutelserver URI niet inlezen\n" @@ -2458,29 +2465,29 @@ msgstr "[herroeping]" msgid "[self-signature]" msgstr "[zelfondertekening]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 slechte ondertekening\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d slechte ondertekeningen\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 ondertekening niet gecontroleerd vanwege een ontbrekende sleutel\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d ondertekeningen niet gecontroleerd vanwege ontbrekende sleutels\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 ondertekening niet gecontroleerd vanwege een fout\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d ondertekeningen niet gecontroleerd vanwege fouten\n" @@ -2535,12 +2542,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Gebruikerscode \"%s\" is herroepen." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Weet u zeker dat u deze toch wilt ondertekenen? (j/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Kan niet ondertekenen.\n" @@ -2745,7 +2752,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Echt ondertekenen? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3098,240 +3105,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "foto ID weergeven" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "fout bij lezen geheim sleutelblok `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Geheime sleutel is beschikbaar.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "De geheime sleutel is nodig om dit te doen.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Gebruik alstublieft eerst de \"toggle\" opdracht.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Sleutel is herroepen." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Echt alle gebruikerscodes ondertekenen? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Tip: Selecteer de gebruikerscodes om te ondertekenen\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Deze opdracht is niet toegestaan in %s modus.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "U dient tenminste één gebruikerscode te selecteren.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "U kunt niet de laatste gebruikerscode verwijderen!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Echt alle geselecteerde gebruikerscodes verwijderen? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Echt deze gebruikerscode verwijderen? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Echt deze gebruikerscode verwijderen? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "U dient tenminste één sleutel te selecteren.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "U dient tenminste één sleutel te selecteren.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Wilt u echt de geselecteerde sleutels verwijderen? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Wilt u echt deze sleutel verwijderen? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Echt alle geselecteerde gebruikerscodes herroepen? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Echt deze gebruikerscode herroepen? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Wilt u echt de geselecteerde sleutels herroepen? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Wilt u echt deze sleutel herroepen? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "voorkeurenlijst instellen" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Echt de voorkeuren bijwerken voor de geselecteerde gebruikerscodes? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Echt de voorkeuren bijwerken? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Wijzigingen opslaan? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Afsluiten zonder op te slaan? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "bijwerken mislukt: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "bijwerken geheim mislukt: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Sleutel niet gewijzigd dus bijwerken niet nodig.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Samenvatting: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Mogelijkheden: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Deze sleutel is mogelijk herroepen door sleutel %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (gevoelig)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "kan %s niet aanmaken: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[herroepen] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [verloopt: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [verloopt: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " vertrouwen: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " vertrouwen: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Deze sleutel is uit gezet" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[herroepen] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Er zijn geen voorkeuren op een PGP 2.x stijl gebruikerscode.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3340,13 +3347,13 @@ msgstr "" "juist\n" "is tenzij u het programma opnieuw start.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3356,45 +3363,45 @@ msgstr "" "kan\n" " zorgen dat sommige versies van PGP deze sleutel verwerpen.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Weet u zeker dat u deze toch wilt toevoegen? (j/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "U kunt geen foto ID toevoegen aan een PGP2 stijl sleutel.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Deze goede ondertekening verwijderen? (j/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Deze ongeldige ondertekening verwijderen? (j/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Deze onbekende ondertekening verwijderen? (j/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Echt deze zelfondertekening verwijderen? (j/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d ondertekening verwijderd.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d ondertekeningen verwijderd.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Niets verwijderd.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3404,166 +3411,166 @@ msgstr "" " toevoegen kan zorgen dat sommige versies van PGP deze sleutel " "verwerpen.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "U kunt geen aangestelde herroeper toevoegen aan een PGP 2.x stijl sleutel.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Geef de gebruikerscode van de aangestelde herroeper: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "kan een PGP 2.x stijl sleutel niet aanwijzen als een aangestelde herroeper\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "u kunt geen sleutel aanwijzen als zijn eigen aangestelde herroeper\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "WAARSCHUWING: Deze sleutel is herroepen door zijn eigenaar!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "WAARSCHUWING: het aanwijzen van een sleutel als een aangestelde herroeper " "kan niet ongedaan gemaakt worden!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "" "Wilt u echt deze sleutel aanwijzen als een aangestelde herroeper? (j/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Verwijder alstublieft selecties van de geheime sleutels.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Selecteer alstublieft ten hoogste één secundaire sleutel.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "De verlooptijd voor een secundaire sleutel wordt gewijzigd.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "De verlooptijd voor de primaire sleutel wordt gewijzigd.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "U kunt de verlooptijd van een v3-sleutel niet wijzigen\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Geen geassocieerde ondertekening in geheime sleutelbos\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Selecteer alstublieft precies één gebruikerscode.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "v3-zelfondertekening op gebruikerscode \"%s\" wordt overgeslagen\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Weet u zeker dat u deze wilt gebruiken (j/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Weet u zeker dat u deze wilt gebruiken (j/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Geen gebruikerscode met index %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Geen secundaire sleutel met index %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "gebruikerscode: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " ondertekend door %08lX op %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (niet-uitvoerbaar)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Deze ondertekening is verlopen op %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Weet u zeker dat u deze nog steeds wilt herroepen? (j/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Een herroepingscertificaat maken voor deze ondertekening? (j/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "U heeft deze gebruikerscodes ondertekend:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (niet-uitvoerbaar)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " herroepen door %08lX op %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "U staat op het punt deze ondertekeningen te herroepen:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Echt de herroepingscertificaten maken? (j/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "geen geheime sleutel\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "gebruikerscode \"%s\" is al herroepen\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "WAARSCHUWING: een gebruikerscode ondertekening is van %d seconden in de " "toekomst\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4076,107 +4083,107 @@ msgstr "" msgid "never " msgstr "nooit" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kritisch ondertekenbeleid: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Ondertekenbeleid: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "WAARSCHUWING: ongeldige notatiegegevens gevonden\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kritische ondertekennotatie: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Ondertekennotatie: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "niet leesbaar voor mensen" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Sleutelbos" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [verloopt: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Vingerafdruk primaire sleutel:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Vingerafdruk deelsleutel:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Vingerafdruk primaire sleutel:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Vingerafdruk deelsleutel:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Vingerafdruk sleutel =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "bepantseren mislukt: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "WAARSCHUWING: 2 bestanden met vertrouwelijke informatie bestaan.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s is de ongewijzigde\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s is de nieuwe\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Repareer alstublieft dit mogelijke veiligheidsrisico\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "bezig met controleren sleutelbos `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu sleutels gecontroleerd (%lu ondertekeningen)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu sleutels gecontroleerd (%lu ondertekeningen)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: sleutelbos aangemaakt\n" @@ -4300,11 +4307,6 @@ msgstr "Sleutelaanmaak mislukt: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "sleutel `%s' niet gevonden: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4743,7 +4745,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "probleem met agent: agent geeft 0x%lx terug\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "kan niet vragen om wachtwoord in batch-modus\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4821,23 +4824,23 @@ msgstr "Is deze foto goed (j/N/q)? " msgid "unable to display photo ID!\n" msgstr "kan foto ID niet weergeven!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Geen reden opgegeven" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Sleutel is achterhaald" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Sleutel is in gevaar gebracht" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Sleutel wordt niet meer gebruikt" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Gebruikerscode is niet langer geldig" @@ -4908,7 +4911,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Uw beslissing? " @@ -5070,8 +5073,8 @@ msgid "skipped: public key already set\n" msgstr "overgeslagen: openbare sleutel reeds ingesteld\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "onbekende standaard ontvanger `%s'\n" #: g10/pkclist.c:948 @@ -5102,15 +5105,15 @@ msgstr "Losgekoppelde ondertekening.\n" msgid "Please enter name of data file: " msgstr "Geef bestandsnaam van gegevensbestand: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "bezig met lezen standaard invoer...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "geen ondertekende gegevens\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "kan ondertekende gegevens `%s' niet openen\n" @@ -5148,7 +5151,7 @@ msgid "NOTE: key has been revoked" msgstr "LET OP: sleutel is herroepen" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet mislukt: %s\n" @@ -5158,65 +5161,65 @@ msgstr "build_packet mislukt: %s\n" msgid "key %s has no user IDs\n" msgstr "sleutel %08lX: gebruikerscode niet gevonden\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Zal worden herroepen door:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Dit is een gevoelige herroepingssleutel)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Wilt u een herroepingscertificaat aanmaken voor deze sleutel? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "ASCII-bepantserde uitvoer afgedwongen.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet mislukt: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Herroepingscertificaat aangemaakt.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "geen herroepingssleutels gevonden voor `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "geheime sleutel `%s' niet gevonden: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "geen geassocieerde openbare sleutel: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "openbare sleutel komt niet overeen met geheime sleutel!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Wilt u een herroepingscertificaat aanmaken voor deze sleutel? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "onbekend beschermingsalgoritme\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "LET OP: deze sleutel wordt niet beschermd!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5235,33 +5238,33 @@ msgstr "" "systeem bewaart mogelijk de gegevens en maakt ze beschikbaar voor\n" "anderen!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Kies alstublieft een reden voor de herroeping:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Annuleren" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Waarschijnlijk wilt u hier %d kiezen)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Geef een optionele beschrijving; eindig met een lege regel:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Reden voor herroeping: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Geen beschrijving gegeven)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Is dit goed? " @@ -5439,63 +5442,56 @@ msgstr "" "u kunt alleen losgekoppeld ondertekenen met PGP 2.x stijl sleutels in in --" "pgp2 modus\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "bezig met schrijven naar `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "afdwingen van digest-algoritme %s (%d) overtreedt voorkeuren ontvanger\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "bezig met ondertekenen:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "kan bestand niet openen: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "u kunt alleen niet-gecodeerde ondertekeningen maken met PGP 2.x stijl " "sleutels in --pgp2 modus\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s codering zal worden gebruikt\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "sleutel is niet gemarkeerd als onveilig - kan deze niet gebruiken met de nep " "RNG!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "`%s' overgeslagen: dubbel\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "`%s' overgeslagen: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "overgeslagen: geheime sleutel reeds aanwezig\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "`%s' overgeslagen: dit is een met PGP aangemaakte ElGamal-sleutel die niet " "veilig is voor ondertekeningen!\n" @@ -6125,6 +6121,20 @@ msgstr "bewerking is niet mogelijk zonder geïnitialiseerd veilig geheugen\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(mogelijk heeft u het verkeerde programma gebruikt voor deze taak)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "sorry, dat kan niet in batch-modus\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "sleutel `%s' niet gevonden: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "kan `%s' niet aanmaken: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "kan bestand niet openen: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/pl.po b/po/pl.po index f90cef8da..9cc489320 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-23 15:54+0200\n" "Last-Translator: Janusz A. Urbanowicz \n" "Language-Team: Polish \n" @@ -45,9 +45,10 @@ msgstr "modu #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "nie mona otworzy ,,%s'': %s\n" @@ -80,8 +81,9 @@ msgstr "nie mo msgid "note: random_seed file not updated\n" msgstr "uwaga: plik random_seed nie jest uaktualniony\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "nie mona utworzy ,,%s'': %s\n" @@ -312,9 +314,11 @@ msgstr "brak klucza prywatnego" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "niestety, to nie dziaa w trybie wsadowym\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "nie dziaa w trybie wsadowym\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -490,7 +494,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Niewaciwy wybr.\n" @@ -649,11 +653,7 @@ msgstr "has msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "nie dziaa w trybie wsadowym\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Polecenie> " @@ -662,7 +662,17 @@ msgstr "Polecenie> " msgid "Admin-only command\n" msgstr "sprzeczne polecenia\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "sprzeczne polecenia\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "zapisuj klucz tajny w '%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Niepoprawna komenda (sprbuj \"help\")\n" @@ -690,8 +700,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Podaj identyfikator uytkownika (user ID): " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "nie mona otworzy ,,%s''\n" @@ -700,13 +710,14 @@ msgstr "nie mo msgid "--output doesn't work for this command\n" msgstr "opcja --output nie dziaa z tym poleceniem\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "klucz ,,%s'' nie zosta odnaleziony: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "bd odczytu bloku kluczy: %s\n" @@ -716,7 +727,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(chyba, e klucz zostaje wybrany przez podanie odcisku)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "bez opcji \"--yes\" nie dziaa w trybie wsadowym\n" #: g10/delkey.c:139 @@ -747,7 +759,7 @@ msgstr "dla klucza publicznego ,,%s'' istnieje klucz prywatny!\n" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "aby go usun nalezy najpierw uy opcji \"--delete-secret-key\".\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "bd podczas tworzenia hasa: %s\n" @@ -794,7 +806,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "wymuszone uycie szyfru %s (%d) kci si z ustawieniami adresata\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -868,11 +880,6 @@ msgstr "nie mo msgid "unable to execute shell `%s': %s\n" msgstr "nie mona wykona %s ,,%s'': %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "nie mona utworzy ,,%s'': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1167,7 +1174,7 @@ msgstr "" msgid "Pubkey: " msgstr "Asymetryczne: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Symetryczne: " @@ -1175,7 +1182,7 @@ msgstr "Symetryczne: " msgid "Hash: " msgstr "Skrtw: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Kompresji: " @@ -1308,7 +1315,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s nie jest poprawn nazw zestawu znakw\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "niezrozumay URI serwera kluczy\n" @@ -2444,29 +2451,29 @@ msgstr "[uniewa msgid "[self-signature]" msgstr "[podpis klucza nim samym]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 niepoprawny podpis\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d niepoprawnych podpisw\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 podpis nie zosta sprawdzony z powodu braku klucza\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d podpisw nie zostao sprawdzonych z powodu braku kluczy\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 podpis nie zosta sprawdzony z powodu bdu\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d podpisw nie sprawdzonych z powodu bdw\n" @@ -2521,12 +2528,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Identyfikator uytkownika ,,%s'' zosta uniewaniony." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Czy na pewno chcesz podpisa? (t/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Nie da si zoy podpisu.\n" @@ -2726,7 +2733,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Czy na pewno podpisa? (t/N) " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3080,241 +3087,241 @@ msgstr "foto" msgid "show photo ID" msgstr "okazanie identyfikatora - zdjcia" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "bd odczytu bloku klucza tajnego '%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Dostpny jest klucz tajny.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Do wykonania tej operacji potrzebny jest klucz tajny.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Najpierw trzeba uy polecenia \"prze\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Klucz uniewaniony." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Podpisa wszystkie identyfikatory uytkownika na tym kluczu? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Podpowied: wybierz identyfikatory uytkownika do podpisania.\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "To polecenie nie jest dostpne w trybie %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Musisz wybra co najmniej jeden identyfikator uytkownika.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Nie moesz usun ostatniego identyfikatora uytkownika!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Czy na pewno usun wszystkie wybrane identyfikatory uytkownika? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Czy na pewno usun ten identyfikator uytkownika? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Czy na pewno usun ten identyfikator uytkownika? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Musisz wybra co najmniej jeden klucz.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Musisz wybra co najmniej jeden klucz.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Czy na pewno chcesz usun wybrane klucze? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Czy na pewno chcesz usun ten klucz? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Czy na pewno uniewani wszystkie wybrane identyfikatory uytkownika? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Czy na pewno uniewani ten identyfikator uytkownika? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Czy na pewno chcesz uniewani wybrane klucze? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Czy na pewno chcesz uniewani ten klucz? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "ustawienie opcji klucza" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Czy na pewno zaktualizowa ustawienia klucza dla wybranych identyfikatorw? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Czy na pewno usaktualni ustawienia? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Zapisa zmiany? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Wyj bez zapisania zmian? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "zapis zmian nie powid si: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "zapis zmian na kluczu prywatnym nie powid si: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Klucz nie zosta zmieniony wic zapis zmian nie jest konieczny.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Skrt: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Ustawienia: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Klucz moe zosta uniewaniony przez klucz %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (poufne)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "nie mona utworzy %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[uniewaniony]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [wygasa :%s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [wygasa :%s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " zaufanie: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " zaufanie: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Ten klucz zosta wyczony z uytku" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[uniewaniony]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "data" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Klucze PGP 2.x nie zawieraj opisu ustawie.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3322,7 +3329,7 @@ msgstr "" "Pokazana warto wiarygodnoci klucza moe by niepoprawna,\n" "dopki program nie zostanie uruchomiony ponownie.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3331,7 +3338,7 @@ msgstr "" " jako gwny. Wykonanie tego polecenie moe wic spowodowa\n" " wywietlanie innego identyfikatora jako domylnego gwnego.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3340,45 +3347,45 @@ msgstr "" "OSTRZEENIE: To jest klucz PGP wersji 2. Dodanie zdjcia spowoduje, e\n" " niektre wersje przestan go rozumie.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Czy dalej chcesz je doda? (t/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Do klucza dla PGP 2.x nie mona doda zdjcia.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Usun ten poprawny podpis? (t/N/w) " -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Usun ten niepoprawny podpis? (t/N/w) " -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Usun ten nieznany podpis? (t/N/w) " -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Na pewno usun ten podpis klucza nim samym? (t/N) " -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d podpis usunity.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d podpisw usunitych.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nic nie zostao usunite.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3388,162 +3395,162 @@ msgstr "" " uniewaniajcego, spowoduje, e niektre wersje PGP przestan\n" " go rozumie.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Do klucza dla PGP 2.x nie mona wyznaczy klucza uniewaniajcego.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Podaj identyfikator klucza uniewaniajcego: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "klucza PGP 2.x nie mona wyznaczy jako uniewaniajcego\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "nie mona wyznaczu klucza do uniewaniania jego samego\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "OSTRZEENIE: Ten klucz zosta uniewaniony kluczem uniewaniajcym!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "OSTRZEENIE: nie mona cofn wyznaczenia klucza jako uniewaniajcego!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Czy na pewno chcesz wyznaczy ten klucz jako uniewaniajcy? (t/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Prosz usun znacznik wyboru z kluczy prywatnych.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Prosz wybra tylko jeden podklucz.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Zmiana daty wanoci podklucza.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Zmiana daty wanoci gwnego klucza.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Nie mona zmieni daty wanoci klucza w wersji 3.\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Brak odpowiadajcego podpisu w zbiorze kluczy prywatnych\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Prosz wybra dokadnie jeden identyfikator uytkownika.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "podpis w wersji 3 na identyfikatorze ,,%s'' zostaje pominity\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Czy na pewno chcesz tego uy? (t/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Czy na pewno chcesz tego uy? (t/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Brak identyfikatora uytkownika o numerze %d.\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Brak podklucza o numerze %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "Identyfikator uytkownika: " -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr "podpisany przez %08lX w %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (podpis nieeksportowalny) " -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Wano tego klucza wygasa %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Czy dalej chcesz go uniewani? (t/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Stworzy certyfikat uniewanienia tego podpisu? (t/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Te identyfikatory s podpisane przez Ciebie:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (podpis nieeksportowalny) " -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr "uniewaniony przez %08lX w %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Czy na pewno chcesz uniewani te podpisy:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Na pewno utworzy certyfikaty uniewanienia ? (t/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "brak klucza tajnego\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "identyfikator uytkownika ,,%s'' zosta ju uniewaniony\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "OSTRZEENIE: identyfikator uytkownika podpisany za %d sekund (w " "przyszoci)\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Zdjcie w formacie %s, rozmiar %ld bajtw, klucz 0x%08lX (id %d).\n" @@ -4057,107 +4064,107 @@ msgstr "" msgid "never " msgstr "nigdy " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Krytyczny regulamin podpisu: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Regulamin podpisu: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "OSTRZEENIE: niepoprawne dane w adnotacji\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Krytyczne adnotacje podpisu: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Adnotacje podpisu: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "nieczytelne dla czowieka" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Zbir kluczy" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [wygasa :%s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Odcisk klucza gwnego:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Odcisk podklucza:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Odcisk klucza gwnego:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Odcisk podklucza:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Odcisk klucza =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "opakowywanie ASCII nie powiodo si: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "OSTRZEENIE: Istniej dwa pliki z poufnymi informacjami.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s pozosta bez zmian\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s zosta utworzony\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Prosz usun to naruszenie zasad bezpieczestwa\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "sprawdzanie zbioru kluczy ,,%s''\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu kluczy (%lu podpisw)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu kluczy (%lu podpisw)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: zbir kluczy utworzony\n" @@ -4280,11 +4287,6 @@ msgstr "odbi msgid "\"%s\" not a key ID: skipping\n" msgstr "%s: nie jest poprawnym identyfikatorem klucza\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "klucz ,,%s'' nie zosta odnaleziony: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4716,7 +4718,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problem agenta: zwrci 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "pytanie o haso nie dziaa w trybie wsadowym\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4793,23 +4796,23 @@ msgstr "Czy zdj msgid "unable to display photo ID!\n" msgstr "nie mona wywietli zdjcia!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "nie podano przyczyny" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "klucz zosta zastpiony" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "klucz zosta skompromitowany" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "klucz nie jest ju uywany" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "identyfikator uytkownika przesta by poprawny" @@ -4880,7 +4883,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Twoja decyzja? " @@ -5036,8 +5039,8 @@ msgid "skipped: public key already set\n" msgstr "pominity: zosta ju wybrany w innej opcji\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "nieznany domylny adresat ,,%s''\n" #: g10/pkclist.c:948 @@ -5067,15 +5070,15 @@ msgstr "Podpis oddzielony od danych.\n" msgid "Please enter name of data file: " msgstr "Nazwa pliku danych: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "czytam strumie standardowego wejcia\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "brak podpisanych danych\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "nie mona otworzy podpisanego pliku ,,%s''\n" @@ -5113,7 +5116,7 @@ msgid "NOTE: key has been revoked" msgstr "UWAGA: klucz zosta uniewaniony" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "wywoanie funkcji build_packet nie powiodo si: %s\n" @@ -5123,65 +5126,65 @@ msgstr "wywo msgid "key %s has no user IDs\n" msgstr "klucz %08lX: brak identyfikatora uytkownika\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Zostanie uniewaniony przez:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(to jest czuy klucz uniewazniajcy)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Stworzy certyfikat uniewanienia tego klucza? (t/N) " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "wymuszono opakowanie ASCII wyniku.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "wywoanie funkcji make_keysig_packet nie powiodo si: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Certyfikat uniewanienia zosta utworzony.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "brak kluczy uniewaniajcych dla ,,%s''\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "klucz prywatny ,,%s'' nie zosta odnaleziony: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "brak odpowiadajcego klucza publicznego: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "klucz publiczny nie pasuje do klucza prywatngeo!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Stworzy certyfikat uniewanienia tego klucza? (t/N) " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "nieznany algorytm ochrony\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "UWAGA: Ten klucz nie jest chroniony!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5205,33 +5208,33 @@ msgstr "" "komputerw mog zachowa tre wydruku i udostpni j osobom " "nieupowanionym.\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Prosz wybra powd uniewanienia:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Anuluj" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Prawdopodobnie chcesz tu wybra %d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Wprowad opis (nieobowizkowy) i zakocz go pust lini:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Powd uniewanienia: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(nie podano)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Informacje poprawne? " @@ -5408,60 +5411,53 @@ msgstr "" "kluczami PGP 2 w trybie --pgp2 mona podpisywa tylko do oddzielonych " "podpisw\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "zapis do '%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "wymuszone uycie skrtu %s (%d) kci si z ustawieniami adresata\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "podpis:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "nie mona otworzy pliku: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "w trybie --pgp2 mona podpisywa tylko za pomoc kluczy z wersji 2.x\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "zostanie uyty szyfr %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "klucz nie jest oznaczony jako niepewny - nie mona go uy z atrap \n" "generatora liczb losowych!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "pominity ,,%s'': duplikat\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "pominity ,,%s'': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "pominity: klucz prywatny jest ju wpisany\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "pominity ,,%s'': wygenerowany przez PGP klucz dla algorytmu ElGamala,\n" "podpisy skadane tym kluczem nie zapewniaj bezpieczestwa!\n" @@ -6091,6 +6087,20 @@ msgstr "bez zabezpieczenia pami msgid "(you may have used the wrong program for this task)\n" msgstr "(prawdopodobnie uywany program jest niewaciwy dlatego zadania)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "niestety, to nie dziaa w trybie wsadowym\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "klucz ,,%s'' nie zosta odnaleziony: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "nie mona utworzy ,,%s'': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "nie mona otworzy pliku: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/pt.po b/po/pt.po index 4233edc68..ef4e2fe28 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2002-09-13 18:26+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -38,9 +38,10 @@ msgstr "nenhum m #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" @@ -73,8 +74,9 @@ msgstr "imposs msgid "note: random_seed file not updated\n" msgstr "nota: ficheiro random_seed no actualizado\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "impossvel criar `%s': %s\n" @@ -296,9 +298,10 @@ msgstr "chave secreta n msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 #, fuzzy -msgid "sorry, can't do this in batch mode\n" +msgid "can't do this in batch mode\n" msgstr "impossvel fazer isso em modo no-interativo\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -473,7 +476,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Opo invlida.\n" @@ -632,11 +635,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "impossvel fazer isso em modo no-interativo\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Comando> " @@ -645,7 +644,17 @@ msgstr "Comando> " msgid "Admin-only command\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "comandos em conflito\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "a escrever chave privada para `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Comando invlido (tente \"help\")\n" @@ -672,8 +681,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -682,13 +691,14 @@ msgstr "imposs msgid "--output doesn't work for this command\n" msgstr "--output no funciona para este comando\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "chave `%s' no encontrada: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "erro na leitura do bloco de chave: %s\n" @@ -698,7 +708,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(a no ser que escolha a chave pela sua impresso digital)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "impossvel fazer isso em modo no-interactivo sem utilizar \"--yes\"\n" #: g10/delkey.c:139 @@ -729,7 +740,7 @@ msgstr "h msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "utilize a opo \"--delete-secret-keys\" para a apagar primeiro.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "erro na criao da frase secreta: %s\n" @@ -776,7 +787,7 @@ msgid "" msgstr "" "ao forar a cifra simtrica %s (%d) viola as preferncias do destinatrio\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -850,11 +861,6 @@ msgstr "n msgid "unable to execute shell `%s': %s\n" msgstr "no foi possvel alterar o exec-path para %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "impossvel criar `%s': %s\n" - #: g10/exec.c:521 #, fuzzy, c-format msgid "system error while calling external program: %s\n" @@ -1153,7 +1159,7 @@ msgstr "" msgid "Pubkey: " msgstr "Chave pblica: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Cifra: " @@ -1161,7 +1167,7 @@ msgstr "Cifra: " msgid "Hash: " msgstr "Disperso: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compresso: " @@ -1282,7 +1288,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no consegui processar a URI do servidor de chaves\n" @@ -2423,29 +2429,29 @@ msgstr "[revoga msgid "[self-signature]" msgstr "[auto-assinatura]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 assinatura incorrecta\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d assinaturas incorrectas\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 assinatura no verificada por falta de chave\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d assinaturas no verificadas por falta de chaves\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 assinatura no verificada devido a um erro\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d assinaturas no verificadas devido a erros\n" @@ -2499,12 +2505,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Utilizador \"%s\" est revocado." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Voc tem certeza de que quer adicion-la de qualquer forma? (s/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " No foi possvel assinar.\n" @@ -2706,7 +2712,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Realmente assinar? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3059,241 +3065,241 @@ msgstr "showphoto" msgid "show photo ID" msgstr "mostrar identificador fotogrfico" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "erro na leitura do bloco de chave secreto `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Chave secreta disponvel.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "A chave secreta necessria para fazer isto.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Por favor utilize o comando \"toggle\" primeiro.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "A chave est revogada." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Realmente assinar todos os IDs de utilizador? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Sugesto: Selecione os IDs de utilizador para assinar\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Este comando no permitido no modo %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Voc precisa selecionar pelo menos um ID de utilizador.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Voc no pode remover o ltimo ID de utilizador!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Realmente remover todos os IDs de utilizador seleccionados? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Realmente remover este ID de utilizador? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Realmente remover este ID de utilizador? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Voc deve selecionar pelo menos uma chave.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Voc deve selecionar pelo menos uma chave.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Voc quer realmente remover as chaves selecionadas? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Voc quer realmente remover esta chave? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Realmente revocar todos os IDs de utilizador seleccionados? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Realmente revocar este ID de utilizador? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Voc quer realmente revogar as chaves selecionadas? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Voc quer realmente revogar esta chave? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "configurar lista de preferncias" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Realmente actualizar as preferncias para os utilizadores seleccionados?" -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Realmente actualizar as preferncias?" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Gravar alteraes? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Sair sem gravar? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "actualizao falhou: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Chave no alterada, nenhuma actualizao necessria.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "'Digest': " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Caractersticas: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Esta chave pode ser revogada pela chave %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensvel)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "impossvel criar %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "revkey" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "[expira: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "[expira: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " confiana: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " confiana: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Esta chave foi desactivada" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "revkey" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "No h preferncias no ID de utilizador tipo PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3301,13 +3307,13 @@ msgstr "" "No se esquea que a validade de chave mostrada no necessriamente a\n" "correcta a no ser que reinicie o programa.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3316,46 +3322,46 @@ msgstr "" "AVISO: Esta chave do tipo PGP2. Se adicionar um identificador fotogrfico\n" " algumas verso do PGP podem rejeit-la.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Tem a certeza de que quer adicion-la de qualquer forma? (s/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" "No pode adicionar um identificador fotogrfico a uma chave tipo PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Apagar esta assinatura vlida? (s/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Apagar esta assinatura invlida? (s/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Apagar esta assinatura desconhecida? (s/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Realmente remover esta auto-assinatura? (s/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d assinatura removida.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d assinaturas removidas.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nada removido.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3364,161 +3370,161 @@ msgstr "" "AVISO: Esta chave do tipo PGP 2.x. Se adicionar um revogador designado\n" " algumas verso do PGP podem rejeit-la.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "No pode adicionar um revogador designado a uma chave tipo PGP 2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Insira o ID de utilizador do revogador escolhido: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "no pode escolher uma chave do tipo PGP 2.x como revogadora\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "no pode escolher uma chave como revogadora de si mesmo\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AVISO: Esta chave foi revogada pelo seu dono!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 #, fuzzy msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "no pode escolher uma chave como revogadora de si mesmo\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "no pode escolher uma chave como revogadora de si mesmo\n" -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Por favor remova as seleces das chaves secretas.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Por favor seleccione no mximo uma chave secundria.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "A modificar a data de validade para uma chave secundria.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Modificar a data de validade para uma chave primria.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Voc no pode modificar a data de validade de uma chave v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Seleccione exactamente um identificador de utilizador.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "a ignorar auto-assinatura v3 no utilizar com o id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Voc tem certeza de que quer adicion-la de qualquer forma? (s/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Voc tem certeza de que quer adicion-la de qualquer forma? (s/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Nenhum ID de utilizador com ndice %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Nenhuma chave secundria com ndice %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID de utilizador: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " assinado por %08lX em %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (no-exportvel)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Tem a certeza de que quer revog-la de qualquer forma? (s/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Gerar um certificado de revogao para esta assinatura? (s/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Assinou estes identificadores de utilizadores:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (no-exportvel)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revogado por %08lX em %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Est prestes a revogar estas assinaturas:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Realmente criar os certificados de revogao? (s/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "nenhuma chave secreta\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "o utilizador com o id \"%s\" j est revocado\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "AVISO: a assintura do ID do utilizador tem data %d segundos no futuro\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4027,107 +4033,107 @@ msgstr "" msgid "never " msgstr "" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Politica de assinatura crtica: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Politica de assinatura: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "AVISO: dados de notao invlidos encontrados\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notao de assinatura crtica: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notao de assinatura: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "no legvel por humanos" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Porta-chaves" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "[expira: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Impresso da chave primria:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Impresso da subchave:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr "Impresso da chave primria:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Impresso da subchave:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Impresso da chave =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "criao de armadura falhou: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVISO: existem 2 ficheiros com informaes confidenciais.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s o no modificado\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s o novo\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Por favor conserte esta possvel falha de segurana\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "a verificar o porta chaves `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu chave verificadas (%lu assinaturas)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu chave verificadas (%lu assinaturas)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: porta-chaves criado\n" @@ -4250,11 +4256,6 @@ msgstr "A gera msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "chave `%s' no encontrada: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4691,7 +4692,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problema com o agente: o agente returnou 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "impossvel pedir senha em modo no-interactivo\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4765,23 +4767,23 @@ msgstr "Est msgid "unable to display photo ID!\n" msgstr "no foi possvel alterar o exec-path para %s\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Nenhum motivo especificado" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "A chave foi substituda" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "A chave foi comprometida" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "A chave j no utilizada" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "O identificador do utilizador j no vlido" @@ -4852,7 +4854,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Deciso? " @@ -5010,8 +5012,8 @@ msgid "skipped: public key already set\n" msgstr "ignorado: a chave pblica j est presente\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "destinatrio por omisso desconhecido `%s'\n" #: g10/pkclist.c:948 @@ -5040,15 +5042,15 @@ msgstr "Assinatura separada.\n" msgid "Please enter name of data file: " msgstr "Por favor digite o nome do ficheiro de dados: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "lendo do \"stdin\" ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "no h dados assinados\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "impossvel abrir dados assinados `%s'\n" @@ -5086,7 +5088,7 @@ msgid "NOTE: key has been revoked" msgstr "NOTA: a chave foi revogada" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, fuzzy, c-format msgid "build_packet failed: %s\n" msgstr "actualizao falhou: %s\n" @@ -5096,68 +5098,68 @@ msgstr "actualiza msgid "key %s has no user IDs\n" msgstr "chave %08lX: sem ID de utilizador\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Gerar um certificado de revogao para esta assinatura? (s/N)" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, fuzzy, c-format msgid "make_keysig_packet failed: %s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 #, fuzzy msgid "Revocation certificate created.\n" msgstr "chave %08lX: certificado de revogao \"%s\" adicionado\n" -#: g10/revoke.c:375 +#: g10/revoke.c:376 #, c-format -msgid "no revocation keys found for `%s'\n" +msgid "no revocation keys found for \"%s\"\n" msgstr "" -#: g10/revoke.c:429 +#: g10/revoke.c:432 #, fuzzy, c-format -msgid "secret key `%s' not found: %s\n" +msgid "secret key \"%s\" not found: %s\n" msgstr "chave `%s' no encontrada: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, fuzzy, c-format msgid "no corresponding public key: %s\n" msgstr "a escrever chave pblica para `%s'\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Gerar um certificado de revogao para esta assinatura? (s/N)" -#: g10/revoke.c:493 +#: g10/revoke.c:496 #, fuzzy msgid "unknown protection algorithm\n" msgstr "algoritmo de compresso desconhecido" -#: g10/revoke.c:497 +#: g10/revoke.c:500 #, fuzzy msgid "NOTE: This key is not protected!\n" msgstr "Esta chave no protegida.\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5168,37 +5170,37 @@ msgid "" "your machine might store the data and make it available to others!\n" msgstr "" -#: g10/revoke.c:589 +#: g10/revoke.c:592 #, fuzzy msgid "Please select the reason for the revocation:\n" msgstr "motivo da revocao: " -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "" -#: g10/revoke.c:642 +#: g10/revoke.c:645 #, fuzzy msgid "Enter an optional description; end it with an empty line:\n" msgstr "" "\n" "Insira o identificador do utilizador. Termine com uma linha vazia: " -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, fuzzy, c-format msgid "Reason for revocation: %s\n" msgstr "motivo da revocao: " -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Usar esta chave de qualquer modo? " @@ -5370,12 +5372,12 @@ msgstr "assinatura %s de: \"%s\"\n" msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "s pode assinar-desligar com chaves do tipo PGP 2.x no modo --pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "a escrever para `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5383,48 +5385,41 @@ msgstr "" "forar o algoritmo de 'digest' %s (%d) viola as preferncias do " "destinatrio\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "a assinar:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "impossvel abrir %s: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "s pode assinar vista com chaves do tipo PGP 2.x no modo --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "ser utilizada a cifragem %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "a chave no est marcada insegura - impossvel us-la com o RNG falso!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "ignorado `%s': duplicada\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "ignorado `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "ignorado: a chave secreta j est presente\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "ignorado `%s': esta uma chave ElGamal gerada pelo PGP que no segura " "para assinaturas!\n" @@ -6057,6 +6052,21 @@ msgstr "a opera msgid "(you may have used the wrong program for this task)\n" msgstr "(voc pode ter usado o programa errado para esta tarefa)\n" +#, fuzzy +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "impossvel fazer isso em modo no-interativo\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "chave `%s' no encontrada: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "impossvel criar `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "impossvel abrir %s: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " ou \"" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9c1c79a11..e13516561 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 1998-11-20 23:46:36-0200\n" "Last-Translator:\n" "Language-Team: ?\n" @@ -42,9 +42,10 @@ msgstr "" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" @@ -77,8 +78,9 @@ msgstr "imposs msgid "note: random_seed file not updated\n" msgstr "" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, fuzzy, c-format msgid "can't create `%s': %s\n" msgstr "impossvel criar %s: %s\n" @@ -301,9 +303,10 @@ msgstr "chave secreta n msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 #, fuzzy -msgid "sorry, can't do this in batch mode\n" +msgid "can't do this in batch mode\n" msgstr "impossvel fazer isso em modo no-interativo\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -479,7 +482,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Opo invlida.\n" @@ -639,11 +642,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "impossvel fazer isso em modo no-interativo\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Comando> " @@ -652,8 +651,18 @@ msgstr "Comando> " msgid "Admin-only command\n" msgstr "comandos conflitantes\n" +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "comandos conflitantes\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "escrevendo certificado privado para `%s'\n" + # help ou ajuda ??? -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Comando invlido (tente \"help\")\n" @@ -681,8 +690,8 @@ msgstr "" msgid "Enter PIN: " msgstr "Digite o identificador de usurio: " -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -691,13 +700,14 @@ msgstr "imposs msgid "--output doesn't work for this command\n" msgstr "" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 #, fuzzy, c-format -msgid "key `%s' not found: %s\n" +msgid "key \"%s\" not found: %s\n" msgstr "usurio `%s' no encontrado: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, fuzzy, c-format msgid "error reading keyblock: %s\n" msgstr "erro na leitura de `%s': %s\n" @@ -707,7 +717,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "impossvel fazer isso em modo no-interativo sem \"--yes\"\n" #: g10/delkey.c:139 @@ -739,7 +750,7 @@ msgstr "h msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "use a opo \"--delete-secret-key\" para delet-la antes.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "erro na criao da frase secreta: %s\n" @@ -783,7 +794,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "NOTA: algoritmo de criptografia %d no encontrado nas preferncias\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -856,11 +867,6 @@ msgstr "imposs msgid "unable to execute shell `%s': %s\n" msgstr "impossvel abrir %s: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "impossvel criar %s: %s\n" - #: g10/exec.c:521 #, fuzzy, c-format msgid "system error while calling external program: %s\n" @@ -1162,7 +1168,7 @@ msgstr "" msgid "Pubkey: " msgstr "" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "" @@ -1170,7 +1176,7 @@ msgstr "" msgid "Hash: " msgstr "" -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 #, fuzzy msgid "Compression: " msgstr "Comentrio: " @@ -1290,7 +1296,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossvel escrever para o chaveiro: %s\n" @@ -2384,29 +2390,29 @@ msgstr "[revoga msgid "[self-signature]" msgstr "[auto-assinatura]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 assinatura incorreta\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d assinaturas incorretas\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 assinatura no verificada por falta de chave\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d assinaturas no verificadas por falta de chaves\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 assinatura no verificada devido a um erro\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d assinaturas no verificadas devido a erros\n" @@ -2466,13 +2472,13 @@ msgid "User ID \"%s\" is revoked." msgstr "A chave protegida.\n" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 #, fuzzy msgid "Are you sure you still want to sign it? (y/N) " msgstr "Voc tem certeza de que quer este tamanho de chave? " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr "" @@ -2653,7 +2659,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Realmente assinar? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3023,463 +3029,463 @@ msgstr "" msgid "show photo ID" msgstr "" -#: g10/keyedit.c:1344 +#: g10/keyedit.c:1347 #, fuzzy, c-format -msgid "error reading secret keyblock `%s': %s\n" +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Chave secreta disponvel.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "A chave secreta necessria para fazer isto.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 #, fuzzy msgid "Key is revoked." msgstr "A chave protegida.\n" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Realmente assinar todos os IDs de usurio? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Sugesto: Selecione os IDs de usurio para assinar\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Voc precisa selecionar pelo menos um ID de usurio.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Voc no pode remover o ltimo ID de usurio!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Realmente remover todos os IDs de usurio selecionados? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Realmente remover este ID de usurio? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Realmente remover este ID de usurio? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Voc deve selecionar pelo menos uma chave.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Voc deve selecionar pelo menos uma chave.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Voc realmente quer remover as chaves selecionadas? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Voc realmente quer remover esta chave? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Realmente remover todos os IDs de usurio selecionados? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Realmente remover este ID de usurio? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Voc realmente quer revogar as chaves selecionadas? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Voc realmente quer revogar esta chave? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "lista preferncias" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Realmente remover todos os IDs de usurio selecionados? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Realmente gerar os certificados de revogao? (s/N)" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Salvar alteraes? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Sair sem salvar? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "atualizao falhou: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "atualizao da chave secreta falhou: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Chave no alterada, nenhuma atualizao necessria.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "" -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "" -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, fuzzy, c-format msgid "This key may be revoked by %s key " msgstr "AVISO: Esta chave foi revogada pelo seu dono!\n" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr "" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "impossvel criar %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "revkey" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "A chave expira em %s\n" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "A chave expira em %s\n" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr "trust" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr "trust" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Esta chave foi desativada" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "revkey" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" msgstr "" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" " of PGP to reject this key.\n" msgstr "" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 #, fuzzy msgid "Are you sure you still want to add it? (y/N) " msgstr "Voc tem certeza de que quer este tamanho de chave? " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Deletar esta assinatura vlida? (s/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Deletar esta assinatura invlida? (s/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Deletar esta assinatura desconhecida? (s/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Realmente remover esta auto-assinatura? (s/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d assinatura removida.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d assinaturas removidas.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nada removido.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" " some versions of PGP to reject this key.\n" msgstr "" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 #, fuzzy msgid "Enter the user ID of the designated revoker: " msgstr "Digite o tamanho da chave" -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AVISO: Esta chave foi revogada pelo seu dono!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Voc tem certeza de que quer este tamanho de chave? " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Por favor remova as selees das chaves secretas.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Por favor selecione no mximo uma chave secundria.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Modificando a data de validade para uma chave secundria.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Modificando a data de validade para uma chave primria.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Voc no pode modificar a data de validade de uma chave v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 #, fuzzy msgid "Please select exactly one user ID.\n" msgstr "Voc precisa selecionar pelo menos um ID de usurio.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "chave %08lX: auto-assinatura invlida\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Voc tem certeza de que quer este tamanho de chave? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Voc tem certeza de que quer este tamanho de chave? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Nenhum ID de usurio com ndice %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Nenhuma chave secundria com ndice %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID de usurio: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " assinado por %08lX em %s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr "" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, fuzzy, c-format msgid "This signature expired on %s.\n" msgstr "Esta chave no protegida.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 #, fuzzy msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Voc tem certeza de que quer este tamanho de chave? " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 #, fuzzy msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Gerar um certificado de revogao para esta assinatura? (s/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Voc assinou estes IDs de usurio:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr "assinar uma chave localmente" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revogado por %08lX em %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Voc est prestes a revogar estas assinaturas:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 #, fuzzy msgid "Really create the revocation certificates? (y/N) " msgstr "Realmente gerar os certificados de revogao? (s/N)" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "nenhuma chave secreta\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, fuzzy, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "A chave protegida.\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -3993,115 +3999,115 @@ msgstr "" msgid "never " msgstr "" -#: g10/keylist.c:186 +#: g10/keylist.c:201 #, fuzzy msgid "Critical signature policy: " msgstr "assinatura %s de: %s\n" -#: g10/keylist.c:188 +#: g10/keylist.c:203 #, fuzzy msgid "Signature policy: " msgstr "assinatura %s de: %s\n" -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "AVISO: dados de notao invlidos encontrados\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 #, fuzzy msgid "Critical signature notation: " msgstr "Notao: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 #, fuzzy msgid "Signature notation: " msgstr "Notao: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "A chave expira em %s\n" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 #, fuzzy msgid "Primary key fingerprint:" msgstr "listar as chaves e as impresses digitais" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 #, fuzzy msgid " Subkey fingerprint:" msgstr " Impresso digital:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 #, fuzzy msgid " Primary key fingerprint:" msgstr " Impresso digital:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 #, fuzzy msgid " Subkey fingerprint:" msgstr " Impresso digital:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Impresso digital:" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "criao de armadura falhou: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVISO: existem 2 arquivos com informaes confidenciais.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s o no modificado\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s o novo\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Por favor conserte este possvel furo de segurana\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "erro na escrita do chaveiro `%s': %s\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "listar as chaves e as assinaturas" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "listar as chaves e as assinaturas" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: chaveiro criado\n" @@ -4224,11 +4230,6 @@ msgstr "enumera msgid "\"%s\" not a key ID: skipping\n" msgstr "%s no um mapa de caracteres vlido\n" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "usurio `%s' no encontrado: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4669,7 +4670,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "impossvel pedir senha em modo no-interativo\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4743,25 +4745,25 @@ msgstr "Est msgid "unable to display photo ID!\n" msgstr "impossvel abrir %s: %s\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 #, fuzzy msgid "Key is superseded" msgstr "A chave protegida.\n" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 #, fuzzy msgid "Key has been compromised" msgstr "Esta chave foi desativada" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "" @@ -4834,7 +4836,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Sua deciso? " @@ -4991,8 +4993,8 @@ msgid "skipped: public key already set\n" msgstr "%s: ignorado: a chave pblica j est presente\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "destinatrio padro desconhecido `%s'\n" #: g10/pkclist.c:948 @@ -5021,16 +5023,16 @@ msgstr "Assinatura separada.\n" msgid "Please enter name of data file: " msgstr "Por favor digite o nome do arquivo de dados: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "lendo de \"stdin\" ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 #, fuzzy msgid "no signed data\n" msgstr "no dados assinados\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "impossvel abrir dados assinados `%s'\n" @@ -5069,7 +5071,7 @@ msgid "NOTE: key has been revoked" msgstr "chave %08lX: a chave foi revogada!\n" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, fuzzy, c-format msgid "build_packet failed: %s\n" msgstr "atualizao falhou: %s\n" @@ -5079,69 +5081,69 @@ msgstr "atualiza msgid "key %s has no user IDs\n" msgstr "chave %08lX: sem ID de usurio\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Gerar um certificado de revogao para esta assinatura? (s/N)" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, fuzzy, c-format msgid "make_keysig_packet failed: %s\n" msgstr "enumerao de blocos de chaves falhou: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 #, fuzzy msgid "Revocation certificate created.\n" msgstr "chave %08lX: certificado de revogao adicionado\n" -#: g10/revoke.c:375 +#: g10/revoke.c:376 #, c-format -msgid "no revocation keys found for `%s'\n" +msgid "no revocation keys found for \"%s\"\n" msgstr "" -#: g10/revoke.c:429 +#: g10/revoke.c:432 #, fuzzy, c-format -msgid "secret key `%s' not found: %s\n" +msgid "secret key \"%s\" not found: %s\n" msgstr "usurio `%s' no encontrado: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, fuzzy, c-format msgid "no corresponding public key: %s\n" msgstr "escrevendo certificado pblico para `%s'\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 #, fuzzy msgid "public key does not match secret key!\n" msgstr "lid %lu no tem chave\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Gerar um certificado de revogao para esta assinatura? (s/N)" -#: g10/revoke.c:493 +#: g10/revoke.c:496 #, fuzzy msgid "unknown protection algorithm\n" msgstr "algoritmo de compresso desconhecido" -#: g10/revoke.c:497 +#: g10/revoke.c:500 #, fuzzy msgid "NOTE: This key is not protected!\n" msgstr "Esta chave no protegida.\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5152,34 +5154,34 @@ msgid "" "your machine might store the data and make it available to others!\n" msgstr "" -#: g10/revoke.c:589 +#: g10/revoke.c:592 #, fuzzy msgid "Please select the reason for the revocation:\n" msgstr "rev- revogaes de chaves incorreta\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, fuzzy, c-format msgid "Reason for revocation: %s\n" msgstr "rev- revogaes de chaves incorreta\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Usa esta chave de qualquer modo? " @@ -5341,61 +5343,54 @@ msgstr "assinatura %s de: %s\n" msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "escrevendo para `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "NOTA: algoritmo de criptografia %d no encontrado nas preferncias\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "assinando:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "impossvel abrir arquivo: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, fuzzy, c-format msgid "%s encryption will be used\n" msgstr "descriptografia falhou: %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "a chave no est marcada como insegura - impossvel us-la com o pseudo " "RNG!\n" -#: g10/skclist.c:157 +#: g10/skclist.c:158 #, fuzzy, c-format -msgid "skipped `%s': duplicated\n" +msgid "skipped \"%s\": duplicated\n" msgstr "ignorado `%s': duplicado\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "ignorado `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 #, fuzzy msgid "skipped: secret key already present\n" msgstr "ignorado: a chave secreta j est presente\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "ignorado `%s': esta uma chave ElGamal gerada pelo PGP que no segura " "para assinaturas!\n" @@ -6033,6 +6028,22 @@ msgstr "a opera msgid "(you may have used the wrong program for this task)\n" msgstr "(voc pode ter usado o programa errado para esta tarefa)\n" +#, fuzzy +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "impossvel fazer isso em modo no-interativo\n" + +#, fuzzy +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "usurio `%s' no encontrado: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "impossvel criar %s: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "impossvel abrir arquivo: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " ou \"" diff --git a/po/ro.po b/po/ro.po index a27dfa95a..a3f98ccc1 100644 --- a/po/ro.po +++ b/po/ro.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-06-17 12:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -39,9 +39,10 @@ msgstr "nu a fost g #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "nu pot deschide `%s': %s\n" @@ -75,8 +76,9 @@ msgstr "nu pot citi `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "not: fiierul random_seed nu a fost actualizat\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "nu pot crea `%s': %s\n" @@ -303,9 +305,11 @@ msgstr "cheia secret msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "mi pare ru, nu pot face acest lucru n modul batch\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "nu pot face acest lucru n modul batch\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -479,7 +483,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Selecie invalid.\n" @@ -638,11 +642,7 @@ msgstr "parola" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "nu pot face acest lucru n modul batch\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Comand> " @@ -651,7 +651,17 @@ msgstr "Comand msgid "Admin-only command\n" msgstr "comenzi n conflict\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "comenzi n conflict\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "scriu cheia secret n `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Comand invalid (ncercai \"ajutor\")\n" @@ -678,8 +688,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "nu pot deschide `%s'\n" @@ -688,13 +698,14 @@ msgstr "nu pot deschide `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output nu merge pentru aceast comand\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "cheia `%s' nu a fost gsit: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "eroare la citire keyblock: %s\n" @@ -704,7 +715,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(dac nu specificai cheia prin amprent)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "nu se poate face acest lucru n mod batch fr \"--yes\"\n" #: g10/delkey.c:139 @@ -737,7 +749,7 @@ msgstr "" "folosii opiunea \"--delete-secret-keys\" pentru a o terge pe aceasta mai " "nti.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "eroare la crearea frazei-parol: %s\n" @@ -783,7 +795,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "fornd cifrul simetric %s (%d) violai preferinele destinatarului\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -859,11 +871,6 @@ msgstr "nu pot executa %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "nu pot executa %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "nu pot crea `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1157,7 +1164,7 @@ msgstr "" msgid "Pubkey: " msgstr "Pubkey: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Cifru: " @@ -1165,7 +1172,7 @@ msgstr "Cifru: " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Compresie: " @@ -1298,7 +1305,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s nu este un set de carectere valid\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nu am putut interpreta URI pentru serverul de chei\n" @@ -2445,29 +2452,29 @@ msgstr "[revocare]" msgid "[self-signature]" msgstr "[auto-semntur]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 semntur incorect\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d semnturi incorecte\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 semntur nu a fost verificat din cauza unei chei lips\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d semnturi nu au fost verificate din cauza unor chei lips\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 semntur nu a fost verificat din cauza unei erori\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d semnturi nu au fost verificate din cauza unor erori\n" @@ -2521,12 +2528,12 @@ msgid "User ID \"%s\" is revoked." msgstr "ID utilizator \"%s\" a fost revocat." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Suntei sigur() c dorii s tergei permanent \"%s\"? (d/N)" #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Nu pot semna.\n" @@ -2729,7 +2736,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Dorii cu adevrat s semnai?" -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3082,242 +3089,242 @@ msgstr "afispoza" msgid "show photo ID" msgstr "arat o poz ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "eroare la citire keyblock secret `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Cheia secret este disponibil.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Avei nevoie de cheia secret pentru a face aceasta.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "V rugm folosii mai nti comanda \"toggle\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Cheia este revocat." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Semnai ntr-adevr toate ID-urile utilizator? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Sugestie: Selectai ID-ul utilizator de semnat\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Aceast comand nu este permis n modul %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Trebuie mai nti s selectai cel puin un ID utilizator.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Nu putei terge ultimul ID utilizator!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "tergei ntr-adevr toate ID-urile utilizator selectate? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "tergei ntr-adevr acest ID utilizator? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "tergei ntr-adevr acest ID utilizator? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Trebuie s selectai cel puin o cheie.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Trebuie s selectai cel puin o cheie.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Dorii ntr-adevr s tergei cheile selectate? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Dorii ntr-adevr s tergei aceast cheie? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Dorii ntr-adevr s revocai toate ID-urile utilizator selectate? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Dorii ntr-adevr s revocai acest ID utilizator? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Dorii ntr-adevr s revocai cheile selectate? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Dorii ntr-adevr s revocai aceast cheie? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "seteaz lista de preferine" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Dorii ntr-adevr s actualizai preferinele pentru ID-urile utilizator " "selectate? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Dorii ntr-adevr s actualizai preferinele? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Salvai schimbrile? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Terminai fr a salva? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "actualizarea a euat: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "actualizarea secretului a euat: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Cheia nu a fost schimbat aa c nici o actualizare a fost necesar.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Rezumat: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Capabiliti: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Aceast cheie poate fi revocat de cheia %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (senzitiv)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "nu pot crea %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revocat] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [expir: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [expir: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " ncredere: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " ncredere: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Aceast cheie a fost deactivat" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revocat] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expira" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Nu exist nici o preferin pentru un ID utilizator stil PGP 2.x.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3325,7 +3332,7 @@ msgstr "" "V rugm observai c validitatea cheii artate nu este n mod necesar\n" "corect dac nu repornii programul.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3334,7 +3341,7 @@ msgstr "" " Aceast comand poate cauza ca un alt ID utilizator\n" " s devin ID-ul utilizator primar presupus.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3343,45 +3350,45 @@ msgstr "" "AVERTISMENT: Aceasta este o cheie stil PGP2. Adugarea unei poze ID poate\n" " cauza unele versiuni de PGP s resping aceast cheie.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Suntei nc sigur() c dorii s o adugai? (d/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Nu putei aduga o poz ID la o cheie stil PGP2.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "tergei aceast semntur bun? (d/N/t)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "tergei aceast semntur invalid? (d/N/t)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "tergei aceast semntur necunoscut? (d/N/t)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "tergei ntr-adevr aceast auto-semntur? (d/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Am ters %d semntur.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Am ters %d semnturi.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Nu am ters nimic.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3391,34 +3398,34 @@ msgstr "" "revocator desemnat poate face ca unele versiuni de PGP s resping " "cheia.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Nu putei aduga un revocator desemnat la o cheie stil PGP 2.x.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Introducei ID-ul utilizator al revocatorului desemnat: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "nu pot desemna o cheie stil PGP 2.x ca un revocator desemnat\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "nu putei desemna o cheie ca propriul su revocator desemnat\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "AVERTISMENT: Aceast cheie a fost revocat revocatorul desemnat!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "AVERTISMENT: desemnarea unei chei ca un revocator desemnat nu poate fi " "anulat!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " @@ -3426,129 +3433,129 @@ msgstr "" "Suntei sigur() c dorii s desemnai aceast cheie ca i revocator " "desemnat? (d/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "V rugm tergei seleciile din cheile secrete.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "V rugm selectai cel mult o cheie secundar.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Schimbarea timpului de expirare pentru o cheie secundar.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Schimbarea timpului de expirare pentru o cheie primar.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Nu putei schimba data de expirare a unei chei v3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Nici o semntur corespunztoare n inelul secret\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "V rugm selectai exact un ID utilizator.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "auto-semnturi v3 srite pentru ID-ul utilizator \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Suntei sigur() c dorii s o folosii (d/N)? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Suntei sigur() c dorii s o folosii (d/N)? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Nici un ID utilizator cu indicele %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Nici o cheie secundar cu indicele %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ID utilizator: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " semnat de %08lX la %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (non-exportabil)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Aceast semntur a expirat pe %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Suntei nc sigur() c dorii s o revocai? (d/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Creai un certificat de revocare pentru aceast semntur? (d/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Ai semnat aceste ID-uri utilizator:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (non-exportabil)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revocat de %08lX la %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Suntei pe cale s revocai aceste semnturi:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Dorii ntr-adevr s creai certificatele de revocare? (d/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "nici o cheie secret\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "ID-ul utilizator \"%s\" este deja revocat\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "AVERTISMENT: o semntur ID utilizator este datat %d secunde n viitor\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Afiez poza ID %s de dimensiune %ld pentru cheia 0x%08lX (uid %d)\n" @@ -4056,107 +4063,107 @@ msgstr "" msgid "never " msgstr "niciodat " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Politic de semnturi critic: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Politic de semnturi: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "AVERTISMENT: am gsit date de notare invalide\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Notare semntur critic: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Notare semntur: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "ilizibil" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Inel de chei" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [expir: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Amprent cheie primar:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Amprent subcheie:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Amprent cheie primar:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Amprent subcheie:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Amprent cheie =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "punerea armurii a euat: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "AVERTISMENT: exist 2 fiiere cu informaii confideniale.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s este cel neschimbat\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s este cel nou\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "V rugm reparai aceast deficien posibil de securitate\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "verific inelul de chei `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu chei verificate (%lu semnturi)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu chei verificate (%lu semnturi)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: inelul de chei creat\n" @@ -4280,11 +4287,6 @@ msgstr "recep msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "cheia `%s' nu a fost gsit: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4719,7 +4721,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problem cu agentul: agentul returneaz 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "nu pot cere parola n modul batch\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4798,23 +4801,23 @@ msgstr "Este aceast msgid "unable to display photo ID!\n" msgstr "nu pot afia poza ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Nici un motiv specificat" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Cheia este nlocuit" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Cheia a fost compromis" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Cheia nu mai este folosit" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "ID utilizator nu mai este valid" @@ -4885,7 +4888,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Decizia d-voastr? " @@ -5045,8 +5048,8 @@ msgid "skipped: public key already set\n" msgstr "srit: cheia public setat deja\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "destinatar implicit necunoscut `%s'\n" #: g10/pkclist.c:948 @@ -5076,15 +5079,15 @@ msgstr "Semn msgid "Please enter name of data file: " msgstr "V rugm introducei numele fiierului de date: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "citesc stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "nici o dat semnat\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "nu pot deschide date semnate `%s'\n" @@ -5122,7 +5125,7 @@ msgid "NOTE: key has been revoked" msgstr "NOT: cheia a fost revocat" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet a euat: %s\n" @@ -5132,65 +5135,65 @@ msgstr "build_packet a e msgid "key %s has no user IDs\n" msgstr "cheia %08lX: nici un ID utilizator\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Pentru a fi revocat de:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Aceasta este o cheie de revocare senzitiv)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Creai un certificat de revocare pentru aceast cheie? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Ieire n armur ASCII forat.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet a euat: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Certificat de revocare creat.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "nici o cheie de revocare gsit pentru `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "cheia secret `%s' nu a fost gsit: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "nici o cheie public corespunztoare: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "cheia public nu se potrivete cu cheia secret!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Creai un certificat de revocare pentru aceast cheie? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "algoritm de protecie necunoscut\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "NOT: Aceast cheie nu este protejat!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5208,33 +5211,33 @@ msgstr "" "caz c mediumul este deteriorat. Dar fii atent: sistemul de tiprire al\n" "mainii d-voastr ar putea pstra datele i s le fac accesibile altora!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "V rugm selectai motivul pentru revocare:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Renun" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Probabil dorii s selectai %d aici)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Introducei o descriere opional; terminai cu o linie goal:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Motiv pentru revocare: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Nici o descriere dat)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Este aceasta OK? " @@ -5405,59 +5408,52 @@ msgstr "%s semn msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "putei semna-dataat cu chei stil PGP 2.x numai n modul --pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "scriu n `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "forarea algoritmului rezumat %s (%d) violeaz preferinele destinatarului\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "semnare:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "nu pot deschide fiierul: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "putei semna-n-clar cu chei stil PGP 2.x n modul --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "va fi folosit cifrarea %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "cheia nu este marcat ca sigur - nu o pot folosi cu GNA falsificat!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "srit `%s': duplicat\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "srit `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "srit: cheia secret deja prezent\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "srit `%s': aceasta este o cheie ElGamal generat de PGP care nu e sigur " "pentru semnturi!\n" @@ -6086,6 +6082,20 @@ msgstr "" msgid "(you may have used the wrong program for this task)\n" msgstr "(ai folosit probabil un program nepotrivit pentru aceast sarcin)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "mi pare ru, nu pot face acest lucru n modul batch\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "cheia `%s' nu a fost gsit: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "nu pot crea `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "nu pot deschide fiierul: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " aka \"" diff --git a/po/ru.po b/po/ru.po index 25e076eee..07385d88b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 1.2.4\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-12-23 19:24+0100\n" "Last-Translator: Maxim Britov \n" "Language-Team: Russian \n" @@ -36,9 +36,10 @@ msgstr "не найден модуль накопления энтропии\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "не могу открыть `%s': %s\n" @@ -70,8 +71,9 @@ msgstr "не могу прочитать `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "замечание: файл random_seed не обновлен\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "не могу создать `%s': %s\n" @@ -297,9 +299,11 @@ msgstr "секретный ключ не найден" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "извините, но это невозможно выполнить в пакетном режиме\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "не могу делать это в пакетном режиме\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -473,7 +477,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Неправильный выбор.\n" @@ -632,11 +636,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "не могу делать это в пакетном режиме\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Команда> " @@ -645,7 +645,17 @@ msgstr "Команда> " msgid "Admin-only command\n" msgstr "несовместимые команды\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "несовместимые команды\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "сохранение секретного ключа в `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Недопустимая команда (список команд: \"help\")\n" @@ -672,8 +682,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "не могу открыть `%s'\n" @@ -682,13 +692,14 @@ msgstr "не могу открыть `%s'\n" msgid "--output doesn't work for this command\n" msgstr "--output не работает для данной команды\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "ключ `%s' не найден: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "ошибка чтения блока ключей: %s\n" @@ -698,7 +709,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(если только Вы не задали ключ отпечатком)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "не могу выполнять в пакетном режиме без \"--yes\"\n" #: g10/delkey.c:139 @@ -729,7 +741,7 @@ msgstr "имеется секретный ключ для открытого к msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "сначала используйте опцию \"--delete-secret-keys\".\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "ошибка при создании ключевой фразы (пароля): %s\n" @@ -773,7 +785,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "использование шифра %s (%d) нарушает предпочтения получателя\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -846,11 +858,6 @@ msgstr "не могу запустить %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "не могу запустить %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "не могу создать `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1147,7 +1154,7 @@ msgstr "" msgid "Pubkey: " msgstr "С открытым ключом: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Симметричные шифры: " @@ -1155,7 +1162,7 @@ msgstr "Симметричные шифры: " msgid "Hash: " msgstr "Хэш-функции: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Алгоритмы сжатия: " @@ -1275,7 +1282,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s недопустимая таблица символов\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "не могу проанализировать URI сервера ключей\n" @@ -2404,29 +2411,29 @@ msgstr "[отозван]" msgid "[self-signature]" msgstr "[самоподпись]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 плохая подпись\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d плохих подписей\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 подпись не проверена за отсутствием ключа\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d подписей не проверено за отсутствием ключей\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 подпись не проверена из-за ошибки\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d подписей не проверено из-за ошибок\n" @@ -2480,12 +2487,12 @@ msgid "User ID \"%s\" is revoked." msgstr "User ID \"%s\" отозван." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Вы уверены, что хотите это подписать? (y/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Не могу подписать.\n" @@ -2686,7 +2693,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Действительно подписать? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3039,240 +3046,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "показать фото ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "ошибка чтения секретного блока ключа `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Секретный ключ доступен.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Для данного действия нужен секретный ключ.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Сначала воспользуйтесь командой \"toggle\".\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Ключ отозван." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Вы действительно хотите подписать ВСЕ User ID? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Подсказка: Выберите User IDs для подписи\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Данная команда не допустима в режиме %s.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Вы должны выбрать хотя бы один User ID.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Вы не можете удалить последний User ID!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Вы действительно хотите удалить ВСЕ выбранные User IDs? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Вы действительно хотите удалить данный User ID? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Вы действительно хотите удалить данный User ID? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Вы должны выбрать хотя бы один ключ.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Вы должны выбрать хотя бы один ключ.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Вы действительно хотите удалить выбранные ключи? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Вы действительно хотите удалить данный ключ? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Действительно отозвать ВСЕ выбранные User ID? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Действительно отозвать данный User ID? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Вы действительно хотите отозвать выбранные ключи? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Вы действительно хотите отозвать данный ключ? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "установить предпочтения" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Действительно обновить предпочтения для выбранных User ID? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Действительно обновить предпочтения? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Сохранить изменения? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Выйти без сохранения? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "сбой при обновлении: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "сбой при обновлений секретного ключа: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "ключ не изменялся - обновление не нужно.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Хэш-функции: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Опции: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Данный ключ может быть отозван ключом %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (sensitive)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "не могу создать %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[отозван]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [годен до: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [годен до: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " доверие: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " доверие: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Данный ключ отключен" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[отозван]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Не может быть предпочтений в PGP 2.x-стиле User ID.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3280,7 +3287,7 @@ msgstr "" "Заметьте, что показанные степени достоверности могут быть неверными,\n" "пока Вы не перезапустите программу.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3288,7 +3295,7 @@ msgstr "" "ВНИМАНИЕ: нет User ID отмеченного как главный. Данная команда может\n" " использовать другой User ID в качестве главного.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3297,45 +3304,45 @@ msgstr "" "ВНИМАНИЕ: Это ключ PGP2. Добавление фото ID может в некоторых версиях\n" " PGP вызвать выбраковку ключа.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Вы уверены, что хотите добавить это? (y/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Вы можете не добавлять фото ID в ключ PGP2-типа.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Удалить данную действительную подпись? (y/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Удалить данную недействительную подпись? (y/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Удалить данную неизвестную подпись? (y/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Действительно удалить данную самоподпись? (y/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Удалена %d подпись.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Удалено %d подписи.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Ничего не удалено.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3344,159 +3351,159 @@ msgstr "" "ВНИМАНИЕ: Это ключ PGP 2.x. Добавление назначенного отзывающим ключа\n" " может в некоторых версиях PGP вызвать выбраковку ключа.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Вы не можете добавить назначенный отзывающим ключ в PGP 2.x ключ.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Укажите User ID ключа, назначенного отзывающим: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "нельзя назначить PGP 2.x ключ, как назначенный отзывающим\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "ключ не может быть назначен отзывающим сам себя\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "ВНИМАНИЕ: Данный ключ отозван отзывающим ключом!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "ВНИМАНИЕ: назначение ключа отзывающим не возможно будет отменить!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Вы уверены, что хотите назначить данный ключ отзывающим? (y/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Снимите выделение с секретного ключа.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Выделите не более одного вторичного ключа.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Смена срока действия вторичного ключа.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Смена срока действия главного ключа\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Вы не можете изменить срок действия v3 ключа\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Нет соответствующей подписи в связке секретных\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Выберите только один User ID.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "пропуск v3 самоподписи на User ID \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Вы действительно хотите использовать его? (y/N)" -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Вы действительно хотите использовать его? (y/N)" -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Нет User ID с индексом %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Нет вторичного ключа с индексом %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "User ID: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " подписан %08lX %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (не экспортируемая)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Срок подписи закончился %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Вы уверены, что хотите отозвать? (y/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Создать сертификат отзыва для данной подписи? (y/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Вы подписали данные User ID:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (не экспортируемая)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " отозван %08lX %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Вы отзываете следующие подписи:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Действительно создать сертификат отзыва? (y/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "нет секретного ключа\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "User ID \"%s\" уже отозван\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "ВНИМАНИЕ: User ID подпись датирована %d секундами в будущем\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Показ %s фото ID размера %ld для ключа 0x%08lX (uid %d)\n" @@ -4001,107 +4008,107 @@ msgstr "" msgid "never " msgstr "никогда " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Критические правила для подписи: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Правила для подписи: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "ВНИМАНИЕ: найдена недопустимая форма записи данных\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Критическое примечание к подписи: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Примечание к подписи" -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "нечитаемо для человека" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Таблица ключей" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [годен до: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr " Отпечаток главного ключа:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Отпечаток подключа:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Отпечаток главного ключа:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Отпечаток подключа:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Отпечаток ключа =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "ошибка преобразования в ASCII формат: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ВНИМАНИЕ: Существуют 2 файла с конфиденциальной информацией.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s осталось без изменений\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s новых\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Исправьте эту прореху безопасности\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "проверка таблицы ключей `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu ключей проверено (%lu подписей)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu ключей проверено (%lu подписей)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: таблица ключей создана\n" @@ -4224,11 +4231,6 @@ msgstr "неудача при получении с сервера ключей: msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "ключ `%s' не найден: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4658,7 +4660,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "проблема с агентом: агент вернул 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "не могу получить пароль в пакетном режиме\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4735,23 +4738,23 @@ msgstr "Данное фото правильное (y/N/q)? " msgid "unable to display photo ID!\n" msgstr "не могу отобразить Фото ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Без указания причины" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Ключ заменён другим" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Ключ был скомпрометирован" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Ключ больше не используется" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "User ID больше не действителен" @@ -4822,7 +4825,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Ваше решение (?-подробнее)? " @@ -4973,8 +4976,8 @@ msgid "skipped: public key already set\n" msgstr "пропущено: открытый ключ уже установлен\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "неизвестный получатель по умолчанию `%s'\n" #: g10/pkclist.c:948 @@ -5003,15 +5006,15 @@ msgstr "Отделенная подпись.\n" msgid "Please enter name of data file: " msgstr "Введите имя файла с данными: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "читаю stdin ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "нет подписанных данных\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "не могу открыть подписанные данные `%s'\n" @@ -5049,7 +5052,7 @@ msgid "NOTE: key has been revoked" msgstr "ЗАМЕТЬТЕ: ключ был отозван" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet failed: %s\n" @@ -5059,65 +5062,65 @@ msgstr "build_packet failed: %s\n" msgid "key %s has no user IDs\n" msgstr "ключ %08lX: не имеет User ID\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Будет отозван:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Это отзывающий ключ с sensitive)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Создать сертификат отзыва данного ключа? (y/n)" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Для вывода использован ASCII формат.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet failed: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Сертификат отзыва создан.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "ключи отзыва для `%s' не найдены\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "секретный ключ `%s' не найден: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "нет соотвествующего открытого ключа: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "открытый ключ не соотвествует секретному!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Создать сертификат отзыва данного ключа? (y/n)" -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "неизвестный алгоритм защиты\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "ЗАМЕЧАНИЕ: Данный ключ не защищен!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5136,33 +5139,33 @@ msgstr "" "носитель будет повреждён, но будьте осторожны: система печати\n" "Вашей машины может сохранить данные и сделать их доступными для других!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Выберите причину отзыва:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Отмена" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Возможно Вы хотите выбрать здесь %d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Введите необязательное пояснение; закончите пустой строкой:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Причина отзыва: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Пояснения отсутствуют)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Все правильно? " @@ -5325,59 +5328,52 @@ msgstr "%s подпись от: \"%s\"\n" msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "только отделенная подпись доступна с PGP 2.x ключом в режиме --pgp2\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "сохраняю в `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "использование хэш-функции %s (%d) нарушает предпочтения получателя\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "подписывание:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "не могу открыть файл: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "только прозрачная подпись доступна с PGP 2.x ключом в режиме --pgp2\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "будет использовано %s шифрование\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "ключ не помечен как ненадежный - не могу использовать его с ненадёжным RNG!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "пропущено `%s': дубликат\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "пропущено `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "пропущено: секретный ключ уже имеется\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "пропущено `%s': это созданный PGP - ElGamal ключ, не обеспечивающий\n" "безопасность подписи\n" @@ -6007,6 +6003,20 @@ msgstr "" "(возможно, Вы используете неподходящее программное обеспечение\n" "для данной задачи)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "извините, но это невозможно выполнить в пакетном режиме\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "ключ `%s' не найден: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "не могу создать `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "не могу открыть файл: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " aka \"" diff --git a/po/sk.po b/po/sk.po index 4388c7c4f..9791e12bc 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: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer \n" "Language-Team: Slovak \n" @@ -34,9 +34,10 @@ msgstr "nebol detekovan #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "nemem otvori `%s': %s\n" @@ -68,8 +69,9 @@ msgstr "nem msgid "note: random_seed file not updated\n" msgstr "poznmka: sbor random_seed nie je aktualizovan\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "nemem vytvori `%s': %s\n" @@ -293,8 +295,10 @@ msgstr "tajn msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" msgstr "nemono previes v dvkovom mde\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -469,7 +473,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Neplatn vber.\n" @@ -628,11 +632,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "nemono previes v dvkovom mde\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Prkaz> " @@ -641,7 +641,17 @@ msgstr "Pr msgid "Admin-only command\n" msgstr "konfliktn prkazy\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "konfliktn prkazy\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "zapisujem tajn k do `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Neplatn prkaz (skste \"help\")\n" @@ -668,8 +678,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "nemono otvori `%s'\n" @@ -678,13 +688,14 @@ msgstr "nemo msgid "--output doesn't work for this command\n" msgstr "--output pre tento prkaz nefunguje\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "k `%s' nebol njden: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "chyba pri tan bloku ka: %s\n" @@ -694,7 +705,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(pokia neurte k jeho fingerprintom)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "bez parametra \"--yes\" to nemono v dvkovom mde previes\n" #: g10/delkey.c:139 @@ -725,7 +737,7 @@ msgstr "existuje tajn msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "aby ste ho zmazali, pouite najprv prepna \"--delete-secret-key\".\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "chyba pri vytvran hesla: %s\n" @@ -770,7 +782,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "vyiadan symetrick ifra %s (%d) nevyhovuje predvobm prjemcu\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -847,11 +859,6 @@ msgstr "nemo msgid "unable to execute shell `%s': %s\n" msgstr "nemono spusti %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "nemem vytvori `%s': %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1152,7 +1159,7 @@ msgstr "" msgid "Pubkey: " msgstr "Verejn ke: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "ifry: " @@ -1160,7 +1167,7 @@ msgstr " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Kompresia: " @@ -1284,7 +1291,7 @@ msgstr "" msgid "`%s' is not a valid character set\n" msgstr "%s nie je platn znakov sada\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nemono poui URI servera kov - chyba analzy URI\n" @@ -2429,29 +2436,29 @@ msgstr "[revok msgid "[self-signature]" msgstr "[podpis ka nm samm]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 zl podpis\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d zlch podpisov\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 podpis neoveren, pretoe chba k\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d podpisov neoverench, pretoe chba k\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 podpis neoveren, pretoe vznikla chyba\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d podpisov neoverench, pretoe vznikli chyby\n" @@ -2506,12 +2513,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Uvatesk ID \"%s\" je revokovan." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Ste si ist, e stle chcete podpsa tento k? (a/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Nemono podpsa.\n" @@ -2714,7 +2721,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Skutone podpsa? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3067,240 +3074,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "ukza fotografick ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "chyba pri tan bloku tajnho ka `%s': %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Tajn k je dostupn.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Na vykonanie tejto opercie je potrebn tajn k.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Prosm, najskr pouite prkaz \"toggle\" (prepn).\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "K revokovan." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Skutone podpsa vetky id uvatea? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Npoveda: Vyberte id uvatea na podpsanie\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tento prkaz nie je v mdoch %s dovolen.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Muste vybra aspo jedno id uvatea.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Nemete zmaza posledn id uvatea!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Skutone odstrni vetky vybran id uvatea? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Skutone odstrni toto id uvatea? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Skutone odstrni toto id uvatea? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Muste vybra aspo jeden k.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Muste vybra aspo jeden k.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Skutone chcete zmaza vybran ke? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Skutone chcete zmaza tento k? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Skutone revokova vetky vybran id uvatea? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Skutone revokova toto id uvatea? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Skutone chcete revokova vybran ke? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Skutone chcete revokova tento k? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "nastavi zoznam predvolieb" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Skutone aktualizova predvoby pre vybran id uvatea? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Skutone aktualizova predvoby? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Uloi zmeny? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Ukoni bez uloenia? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "aktualizcia zlyhala: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "aktualizcia tajnho ka zlyhala: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "k nebol zmenen, take nie je potrebn ho aktualizova.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Digest: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Charakteristiky: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Tento k me by revokovan kom %s " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr "(citliv informcia)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%s: nemem vytvori: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[revokovan]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [platnos skon: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [platnos skon: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " dvera: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " dvera: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Tento k bol oznaen za neplatn (disabled)" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[revokovan]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Uvatesk ID vo formte PGP 2.x nem iadne predvoby\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3308,7 +3315,7 @@ msgstr "" "Prosm nezabdajte, e zobrazovan daje o platnosti kov nemusia\n" "by sprvne, pokia znovu nespustte program.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3316,7 +3323,7 @@ msgstr "" "VAROVANIE: iadne ID uvatea nebolo oznaen ako primrne. Tento prkaz\n" "spsob, e in ID uvatea sa bude povaova primrne.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3325,45 +3332,45 @@ msgstr "" "VAROVANIE: Toto je PGP2 k. Pridanie fotografickho ID me v niektorch\n" " verzich PGP vies k odmietnutiu tohto ka.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Ste si ist, e ho chcete stle prida? (a/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Nemali by ste pridva fotografick ID k PGP2 ku.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Zmaza tento dobr podpis? (a/N/u)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Zmaza tento neplatn podpis? (a/N/u)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Zmaza tento neznmy podpis? (a/N/u)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Skutone zmaza tento podpis podpsan sebou samm? (a/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Zmazan %d podpis.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Zmazanch %d podpisov.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Ni nebolo zmaznan.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3372,159 +3379,159 @@ msgstr "" "VAROVANIE: Toto je PGP2 k. Pridanie fotografickho ID me v niektorch\n" " verzich PGP vies k odmietnutiu tohoto ka.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Nemali by ste pridva fotografick ID k PGP2 ku.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Vlote identifiktor uvatea poverenho revokciou: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "k vo formte PGP 2.x nemono poveri revokciou\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "k nemono poveri revokciou nm samm\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "VAROVANIE: Tento k bol revokovan jeho urenm revoktorom/!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "VAROVANIE: oznaenie ka ako revokovac u neme by zruen!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Ste si ist, e chcete oznai tento k ako revokovac? (a/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Prosm, odstrte vber z tajnch kov.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Prosm, vyberte najviac jeden sekundrny k.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Menm dobu platnosti sekundrneho ka.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Menm dobu platnosti primrneho ka.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Nemete zmeni dobu platnosti ka verzie 3\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Prosm, vyberte prve jedno id uvatea.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "preskoen v3 podpis ka nm samm u uvateskho id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Ste si ist, e ho chcete poui? (a/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Ste si ist, e ho chcete poui? (a/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Neexistuje identifiktor uvatea s indexom %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Neexistuje sekundrny k s indexom %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "id uvatea: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " podpsan %08lX v %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (nexeportovaten)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Platnos podpisu vypr %s.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Ste si ist, e ho chcete stle revokova? (a/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Vytvori pre tento podpis revokan certifikt? (a/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Podpsali ste nasledujce identifiktory uvatea:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (nexeportovaten)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " revokovan %08lX v %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Chystte sa revokova tieto podpisy:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Skutone vytvori revokan certifikty? (a/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "neexistuje tajn k\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "uvatesk ID \"%s\" je u revokovan\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "VAROVANIE: podpis pouivatekho ID vznikol %d sekund v budcnosti\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4033,107 +4040,107 @@ msgstr "" msgid "never " msgstr "nikdy " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kritick podpisov politika: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Podpisov politika: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "VAROVANIE: njden neplatn formt zpisu dtumu\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kritick podpisov notcia: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Podpisov notcia: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "nie je v priamo itatenom formte" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "sbor kov (keyring)" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [platnos skon: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Primrny fingerprint ka:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Fingerprint podka:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Primrny fingerprint ka:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Fingerprint podka:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Fingerprint ka =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "kdovanie do ASCII formtu zlyhalo: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "VAROVANIE: Existuj dva sbory s tajnmi informciami.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s je bez zmeny\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s je nov\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Prosm, opravte tento mon bezpenostn problm\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "kontrolujem sbor kov (keyring) `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu kov skontrolovanch (%lu podpisov)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu kov skontrolovanch (%lu podpisov)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: sbor kov (keyring) vytvoren\n" @@ -4256,11 +4263,6 @@ msgstr "nepodarilo sa prija msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "k `%s' nebol njden: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4698,7 +4700,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problm s agentom: agent vracia 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "v dvkovom reime sa nemem pta na heslo\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4776,23 +4779,23 @@ msgstr "Je t msgid "unable to display photo ID!\n" msgstr "nemono nastavi exec-path na %s\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Dvod nebol pecifikovan" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "K je nahraden" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "K bol skompromitovan" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "K sa u nepouva" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Identifiktor uvatea u neplat" @@ -4863,7 +4866,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Vae rozhodnutie? " @@ -5019,8 +5022,8 @@ msgid "skipped: public key already set\n" msgstr "preskoen: verejn k je u nastaven\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "neznmy implicitn adrest `%s'\n" #: g10/pkclist.c:948 @@ -5049,15 +5052,15 @@ msgstr "Podpis oddelen msgid "Please enter name of data file: " msgstr "Prosm, vlote nzov dtovho sboru: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "tam tandardn vstup (stdin) ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "chbaj podpsan dta\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "nemem otvori podpsan dta '%s'\n" @@ -5095,7 +5098,7 @@ msgid "NOTE: key has been revoked" msgstr "POZNMKA: k bol revokovan" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet zlyhala: %s\n" @@ -5105,65 +5108,65 @@ msgstr "build_packet zlyhala: %s\n" msgid "key %s has no user IDs\n" msgstr "k %08lX: chyba identifiktor uvatea\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Bude revokovan:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Toto je citliv revokan k)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Vytvori pre tento podpis revokan certifikt? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "Vynten ASCII textov vstup.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet zlyhala: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Revokan certifikt bol vytvoren.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "iadne revokan ke pre `%s' nenjden\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "tajn k `%s' nebol njden: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "iadny zodpovedajci verejn k: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "verejn k neshlas s tajnm!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Vytvori pre tento podpis revokan certifikt? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "neznmy ochrann algoritmus\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "POZNMKA: Tento k nie je chrnen!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5181,33 +5184,33 @@ msgstr "" "Ale hroz nebezpeenstvo: Tlaov systm Vho potaa me uklada dta a\n" "sprstupni ich inm!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Prosm vberte dvod na revokciu:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Zrui" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Pravdepodobne ste chceli vybra %d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Ak chcete, napte popis; ukonite przdnym riadkom:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Dvod na revokciu: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(iadny popis)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Je to v poriadku? " @@ -5377,63 +5380,56 @@ msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "v mde --pgp2 mete vytvori len oddelen podpis ka vo formte PGP-2.x\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "zapisujem do '%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "" "vyiadan hashovac algoritmus %s (%d) nevyhovuje predvobm prjemcu\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "podpisujem:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "nemono otvori sbor: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "v mde --pgp2 mete vytvra itaten podpisy len s kmi formtu PGP-2." "x\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "bude pouit ifrovanie %s\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "k nie je oznaen ako nedostatone bezpen - nemem ho poui s " "falonm RNG!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "preskoen `%s': duplikovan\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "preskoen `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "preskoen: tajn k je u v databze\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "preskoen `%s': toto je vygenerovan PGP k poda algoritmu ElGamal,\n" "podpisy vytvoren tmto kom nie s bezpen!\n" @@ -6064,6 +6060,20 @@ msgstr "vykonanie oper msgid "(you may have used the wrong program for this task)\n" msgstr "(pravdepodobne ste na tto lohu pouili nesprvny program)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "nemono previes v dvkovom mde\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "k `%s' nebol njden: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "nemem vytvori `%s': %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "nemono otvori sbor: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " alias \"" diff --git a/po/sv.po b/po/sv.po index a852fb719..f9fce5c90 100644 --- a/po/sv.po +++ b/po/sv.po @@ -26,7 +26,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.1\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-09-20 22:12+0100\n" "Last-Translator: Per Tunedal \n" "Language-Team: Swedish \n" @@ -55,9 +55,10 @@ msgstr "ingen demon för entropisamling hittad\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "kan inte öppna \"%s\": %s\n" @@ -89,8 +90,9 @@ msgstr "kan inte läsa \"%s\": %s\n" msgid "note: random_seed file not updated\n" msgstr "notera: random_seed uppdaterades inte\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "kan inte skapa \"%s\": %s\n" @@ -319,8 +321,10 @@ msgstr "den hemliga nyckeln är inte tillgänglig" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" msgstr "kan inte göra detta i batch-läge\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 @@ -494,7 +498,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Felaktigt val.\n" @@ -656,11 +660,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "kan inte göra detta i batch-läge\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Kommando> " @@ -669,7 +669,17 @@ msgstr "Kommando> " msgid "Admin-only command\n" msgstr "motstridiga kommandon\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "motstridiga kommandon\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "skriver hemlig nyckel till \"%s\"\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Ogiltigt kommando (försök med \"help\")\n" @@ -697,8 +707,8 @@ msgid "Enter PIN: " msgstr "" # se förra kommentaren -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "kan inte öppna \"%s\"\n" @@ -707,13 +717,14 @@ msgstr "kan inte öppna \"%s\"\n" msgid "--output doesn't work for this command\n" msgstr "--output kan inte användas för detta kommando\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "hittade inte nyckeln `%s': %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "fel vid läsninga av nyckelblock: %s\n" @@ -723,7 +734,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(om du inte anger nyckeln med hjälp av fingeravtrycket)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "kan inte göra så i batch-läge utan flaggan \"--yes\"\n" #: g10/delkey.c:139 @@ -754,7 +766,7 @@ msgstr "det finns en hemlig nyckel tillhörande denna öppna nyckel!\"%s\"!\n" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "använd flaggan \"--delete-secret-keys\"för att ta bort den först.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "fel vid skapandet av lösenmening: %s\n" @@ -802,7 +814,7 @@ msgstr "" "att kräva symetrisk kryptering med %s (%d) strider mot mottagarnas " "inställningar\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -881,11 +893,6 @@ msgstr "Kunde inte köra %s \"%s\": %s\n" msgid "unable to execute shell `%s': %s\n" msgstr "Kunde inte köra %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "kan inte skapa \"%s\": %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1181,7 +1188,7 @@ msgstr "" msgid "Pubkey: " msgstr "öppen nyckel:" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Chiffer" @@ -1189,7 +1196,7 @@ msgstr "Chiffer" msgid "Hash: " msgstr "Kontrollsumma: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Komprimering:" @@ -1309,7 +1316,7 @@ msgstr "chiffertillägget \"%s\" laddades inte pga osäkra behörigheter\n" msgid "`%s' is not a valid character set\n" msgstr "%s är ingen giltig teckentabell\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "kunde inte tolka nyckelserver-URI\n" @@ -2492,29 +2499,29 @@ msgstr "[spärrad]" msgid "[self-signature]" msgstr "[egensignatur]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 felaktig signatur\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d felaktiga signaturer\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 signatur verifierades inte eftersom nyckeln saknades\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d signaturer verifierades inte eftersom nycklar saknades\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 signatur verifierades inte eftersom ett fel uppstod\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d signaturer verifierades inte eftersom fel uppstod\n" @@ -2569,12 +2576,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Användar-ID \"%s\" är spärrat." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Vill du verkligen fortfarande signera den? (j/N)" #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " Kan inte signera.\n" @@ -2782,7 +2789,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Vill du verkligen signera? " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3138,242 +3145,242 @@ msgstr "visa bild" msgid "show photo ID" msgstr "visa bild-ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "fel vid läsning av hemlig nyckel\"%s\": %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Den hemliga nyckeln finns tillgänglig.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Den hemliga nyckeln behövs för att göra detta.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Använd kommandot \"toggle\" först.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Nyckeln är spärrad." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Vill du verkligen signera alla användaridentiteter? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "Tips: Välj det användarid du vill signera\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Detta kommando är inte tillåtet när du är i %s-läge.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "Du måste välja åtminstone en användaridentitet.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Du kan inte ta bort den sista användaridentiteten!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Vill du verkligen ta bort alla valda användaridentiteter? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Vill du verkligen ta bort denna användaridentitet? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Vill du verkligen radera denna egensignatur? (j/N)" -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "Du måste välja åtminstone en nyckel.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "Du måste välja åtminstone en nyckel.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Vill du verkligen ta bort valda nycklar? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Vill du verkligen ta bort denna nyckel? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Vill du verkligen spärra alla valda användaridentiteter? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Vill du verkligen spärra denna användaridentitet? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Vill du verkligen spärra de valda nycklarna? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Vill du verkligen spärra denna nyckel? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "ange inställningslista" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Vill du verkligen ändra inställningarna för de valda användaridentiteterna? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Vill du verkligen ändra inställningarna?" -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Spara ändringarna? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Avsluta utan att spara? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "uppdateringen misslyckades: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "misslyckades med att uppdatera hemligheten: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Nyckeln är oförändrad så det behövs ingen uppdatering.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Sammandrag:" -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Funktioner:" -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Denna nyckel kan spärras av nyckeln %s" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (känsligt)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "kan inte skapa %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[spärrad]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "[går ut: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "[går ut: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, c-format msgid "usage: %s" msgstr "" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " tillit: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Denna nyckel har deaktiverats" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[spärrad]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "" "Du kan inte ange några inställningar för ett användar-ID av PGP 2.x-typ.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3381,7 +3388,7 @@ msgstr "" "Obs! Den visade nyckelgiltigheten kan vara felaktig\n" "om du inte startar om programmet.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3390,7 +3397,7 @@ msgstr "" "Detta kommando kan göra att ett annat användar-ID antas\n" "vara huvudidentitet.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3400,46 +3407,46 @@ msgstr "" "vissa versioner\n" " av PGP avvisa denna nyckel.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Vill du verkligen fortfarande lägga till den? (j/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Du kan inte lägga till ett bild-ID till en nyckel av PGP 2-typ.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Vill du radera denna korrekta signatur? (j/N/a)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Vill du radera denna ogiltiga signatur? (j/N/a)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Vill du radera denna okända signatur? (j/N/a)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Vill du verkligen radera denna egensignatur? (j/N)" # skulle lika gärna kunna heta 1 signatur va? -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Raderade %d signatur.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Raderade %d signaturer.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Ingenting raderat.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3448,33 +3455,33 @@ msgstr "" "VARNING: Detta är en PGP 2-nyckel. Om du anger en spärrnyckel kan denna " "nyckel inte användas i vissa versioner av PGP.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Du får inte ange en spärrnyckel för en PGP 2-nyckel.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "Ange användar-ID för spärrnyckeln:" -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "Det går inte att använda en PGP 2-nyckel som spärrnyckel\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "Du kan inte ange en nyckel som sin egen spärrnyckel\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "VARNING: Denna nyckel har spärrats av sin spärrnyckel!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "VARNING: det går aldrig att ändra om du utser en spärrnyckel!\n" # designated = angiven (utnämnd, utpekad, bestämd, utsedd, avsedd, angiven, designerad) -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " @@ -3482,133 +3489,133 @@ msgstr "" "Är du verkligen säker på att du vill utse denna nyckel till spärrnyckel? (j/" "N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Tag bort markeringar från de hemliga nycklarna.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Välj som högst en undernyckel.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Ändrar giltighetstid för en undernyckel.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Ändrar giltighetstid för huvudnyckeln.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Du kan inte ändra giltighetsdatum för en v3-nyckel\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Det finns ingen motsvarande signatur i den hemliga nyckelringen\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Du måste välja bara en användaridentitet.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "hoppar över v3 egensignatur på användar-id \"%s\"\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Vill du verkligen sp?rra denna nyckel? " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Vill du verkligen sp?rra denna nyckel? " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "Ingen användaridentitet med index %d\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "Ingen undernyckel med index %d\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "användaridentitet: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr "" "\"\n" "signerad med din nyckel %08lX %s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (icke exporterbar)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Denna signatur gick ut den %s.\n" # nyckel? signatur? -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Vill du verkligen spärra denna nyckel? (j/N)" -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "Vill du skapa ett spärrcertifikat för denna signatur? (j/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Du har signerat följande användaridentiteter:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (icke exporterbar)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " spärrad av %08lX %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Du står i begrepp att återkalla dessa signaturer:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Vill du verkligen skapa spärrcertifikatet? (y/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "ingen hemlig nyckel\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "Användar-ID \"%s\" är redan spärrad\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "" "VARNING: en signatur på ett användar-ID är daterad %d sekunder in i " "framtiden\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Visar %s foto-ID med storleken %ld för nyckeln 0x%08lX (uid %d)\n" @@ -4119,108 +4126,108 @@ msgstr "" msgid "never " msgstr "aldrig" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "FELAKTIG signatur fr?n \"" -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "Signatur-policy: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "VARNING: ogiltig notationsdata hittades\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "FELAKTIG signatur fr?n \"" -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "Signatur-notering:" -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "inte möjlig att läsa för människor" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Nyckelring" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "[går ut: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Huvudnyckelns fingeravtryck:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " Undernyckelns fingeravtryck:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr "Huvudnyckelns fingeravtryck:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Undernyckelns fingeravtryck:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr "Nyckelns fingeravtryck =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "misslyckades med att skapa skal: %s\n" # märkligt felmeddelande, kolla upp -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "VARNING: det finns 2 filer med konfidentiell information.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s är den oförändrade\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s är den nya\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Lös detta potentiella säkerhetsproblem\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "kontrollerar nyckelringen `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu nycklar och %lu signaturer har kontrollerats\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu nycklar och %lu signaturer har kontrollerats\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: nyckelring skapad\n" @@ -4342,11 +4349,6 @@ msgstr "Hämtning från nyckelservern misslyckades: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "hittade inte nyckeln `%s': %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4792,7 +4794,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "problem med GPG-Agent: programmet svarar 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "kan inte fråga efter lösenmening i batch-läge\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4869,25 +4872,25 @@ msgstr "Är detta foto korrekt (j/N/a)? " msgid "unable to display photo ID!\n" msgstr "kan inte visa foto-ID!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Ingen anledning har angivits" # tveksam översättning. funderar på "ersatt av något bättre" men det # känns inte heller bra -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Nyckeln är ersatt" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Nyckeln har tappat sin säkerhet" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Nyckeln används inte längre" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Användaridentiteten är inte längre giltig" @@ -4962,7 +4965,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Vad väljer du? " @@ -5120,8 +5123,8 @@ msgid "skipped: public key already set\n" msgstr "hoppade över: öppen nyckel redan angiven\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "den förvalda mottagaren \"%s\" är okänd\n" #: g10/pkclist.c:948 @@ -5150,16 +5153,16 @@ msgstr "Signatur i en separat fil.\n" msgid "Please enter name of data file: " msgstr "Ange namnet på datafilen: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "läser från standard in ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "ingen signerad data\n" # se förra kommentaren -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, fuzzy, c-format msgid "can't open signed data `%s'\n" msgstr "kan inte öppna \"%s\"\n" @@ -5198,7 +5201,7 @@ msgstr "OBS: nyckeln har spärrats" # Vad? #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet misslyckades: %s\n" @@ -5208,66 +5211,66 @@ msgstr "build_packet misslyckades: %s\n" msgid "key %s has no user IDs\n" msgstr "nyckel %08lX: ingen användaridentitet\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Att spärras av:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Detta är en känslig spärrnyckel)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Vill du skapa ett spärrcertifikat för denna nyckel?" -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "utdata med ett ascii-skal valt.\n" # Vad menas??? -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet misslyckades: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Spärrcertifikat skapat.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "hittade inga spärrnycklar till `%s'\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "den hemliga nyckeln `%s' hittades inte: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "ingen tillhörande öppen nyckel: %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "den öppna nyckel passar inte ihop med den hemliga nyckeln!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Vill du skapa ett spärrcertifikat för denna nyckel?" -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "okänd krypteringsalgoritm\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "OBS: Denna nyckel är oskyddad!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5285,33 +5288,33 @@ msgstr "" "media blir oläsligt. But have some caution: The print system of\n" "your machine might store the data and make it available to others!\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Välj anledning till att nyckeln spärras:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "Avbryt" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Troligen vill du välja %d här)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "Skriv en frivillig beskrivning; avsluta med en tom rad:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Anledning till spärren: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(Ingen beskrivning angiven)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Är detta OK?" @@ -5497,12 +5500,12 @@ msgstr "" "du kan bara skapa signaturer i en separat fil med nycklar av PGP 2.x-typ\n" " i --pgp2-läge\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "skriver till \"%s\"\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5510,55 +5513,46 @@ msgstr "" "att genomdriva komprimeringsalgoritm %s (%d) strider mot mottagarens inst?" "llningar\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "signerar:" -# Filnamn både med och utan fnuttar finns. lite ologiskt. Vill någon -# fixa en patch? -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "Kan inte öppna fil %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "du kan endast krypterar till RSA nycklar som ?r h?gst 2048 bitar l?nga i --" "pgp2-l?ge\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "krypteringen %s kommer att användas\n" # Slumptalsgenerator: Random Number Generator -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "" "nyckeln är inte markerad som osäker - det går inte att använda den med " "fejkad slumptalsgenerator!\n" # bubblerad? -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "hoppade över \"%s\": kopia\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "hoppade över `%s': %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "hoppade över: hemlig nyckel finns redan\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "hoppade över `%s': detta är en nyckel av ElGamal-typ genererad av PGP\n" "som inte är säker för signaturer!\n" @@ -6198,6 +6192,22 @@ msgstr "operationen är inte möjlig utan tillgång till säkert minne\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(du kan ha använt fel program för denna uppgift)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "kan inte göra detta i batch-läge\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "hittade inte nyckeln `%s': %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "kan inte skapa \"%s\": %s\n" + +# Filnamn både med och utan fnuttar finns. lite ologiskt. Vill någon +# fixa en patch? +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "Kan inte öppna fil %s\n" + #~ msgid "" #~ "WARNING: digest `%s' is not part of OpenPGP. Use at your own risk!\n" #~ msgstr "" diff --git a/po/tr.po b/po/tr.po index 2e6ade0cb..340f2c056 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-07-08 08:10+0300\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -37,9 +37,10 @@ msgstr "rasgele bayt elde etme modülü bulunamadı\n" #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "`%s' açılamıyor: %s\n" @@ -71,8 +72,9 @@ msgstr "\"%s\" okunamıyor: %s\n" msgid "note: random_seed file not updated\n" msgstr "bilgi: \"random_seed\" dosyası güncel değil\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "\"%s\" oluşturulamıyor: %s\n" @@ -297,9 +299,11 @@ msgstr "gizli anahtar kullanışsız" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "pardon, bu betik kipinde yapılamaz\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "bu önceden belirlenmiş işlemler kipinde (in batchmode) yapılamaz\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -475,7 +479,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Seçim geçersiz.\n" @@ -634,11 +638,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "bu önceden belirlenmiş işlemler kipinde (in batchmode) yapılamaz\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "Komut> " @@ -647,7 +647,17 @@ msgstr "Komut> " msgid "Admin-only command\n" msgstr "çelişen komutlar\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "çelişen komutlar\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "gizli anahtarı `%s'e yazıyor\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Komut geçersiz (\"yardım\" komutunu deneyin)\n" @@ -674,8 +684,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "`%s' açılamadı\n" @@ -684,13 +694,14 @@ msgstr "`%s' açılamadı\n" msgid "--output doesn't work for this command\n" msgstr "--output seçeneği bu komutla çalışmaz\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "anahtar `%s' yok: %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "anahtar bloğu okunurken hata: %s\n" @@ -700,7 +711,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(anahtarı parmak izi ile belirtmedikçe)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "önceden belirlenmiş işlemler kipinde \"--yes\" olmaksızın yapılamaz\n" #: g10/delkey.c:139 @@ -731,7 +743,7 @@ msgstr "genel anahtar \"%s\" için bir gizli anahtar var!\n" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "onu önce \"--delete-secret-keys\" ile silmelisiniz.\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "anahtar parolası oluşturulurken hata: %s\n" @@ -778,7 +790,7 @@ msgid "" msgstr "" "alıcının tercihleriyle çelişen %s (%d) simetrik şifre kullanımı zorlanıyor\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -854,11 +866,6 @@ msgstr " %s \"%s\" çalıştırılamıyor: %s\n" msgid "unable to execute shell `%s': %s\n" msgstr " %s \"%s\" çalıştırılamıyor: %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "\"%s\" oluşturulamıyor: %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1152,7 +1159,7 @@ msgstr "" msgid "Pubkey: " msgstr "GenAnah: " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "Şifre: " @@ -1160,7 +1167,7 @@ msgstr "Şifre: " msgid "Hash: " msgstr "Hash: " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "Sıkıştırma: " @@ -1279,7 +1286,7 @@ msgstr "şifre uzantısı \"%s\" güvensiz izinlerden dolayı yüklenmedi\n" msgid "`%s' is not a valid character set\n" msgstr "%s geçerli bir karakter seti değil\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "anahtar sunucusunun adresi çözümlenemedi\n" @@ -2409,29 +2416,29 @@ msgstr "[yürürlükten kaldırma]" msgid "[self-signature]" msgstr "[öz-imza]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 kötü imza\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d kötü imza\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr "1 imza kayıp bir anahtar yüzünden kontrol edilmedi\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "%d imza kayıp bir anahtar yüzünden kontrol edilmedi\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr "1 imza bir hata yüzünden kontrol edilmedi\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "%d imza hatalardan dolayı kontrol edilmedi\n" @@ -2485,12 +2492,12 @@ msgid "User ID \"%s\" is revoked." msgstr "Kullanıcı kimliği \"%s\" yürürlükten kaldırıldı." #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "Onu yine de imzalamak istiyor musunuz? (e/H) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " İmzalanamıyor.\n" @@ -2691,7 +2698,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Gerçekten imzalayacak mısınız? (e/H) " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3046,243 +3053,243 @@ msgstr "showphoto" msgid "show photo ID" msgstr "foto kimliğini gösterir" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "gizli anahtar bloğu `%s' okunurken hata oluştu: %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "Gizli anahtar mevcut.\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Bunu yapmak için gizli anahtar gerekli.\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "lütfen önce \"seçmece\" komutunu kullanın.\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Anahtar yürürlükten kaldırıldı." -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Tüm kullanıcı kimlikleri gerçekten imzalanacak mı? " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "İpucu: İmzalamak için bir kullanıcı kimliği seçiniz\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "%s kipindeyken bu komut kullanılamaz.\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "En az bir kullanıcı kimliği seçmelisiniz.\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "Son kullanıcı kimliğini silemezsiniz!\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Seçilen tüm kullanıcı kimlikleri gerçekten silinecek mi? " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Bu kullanıcı kimliği gerçekten silinecek mi? " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Bu kullanıcı kimliği gerçekten silinecek mi? " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "En az bir anahtar seçmelisiniz.\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "En az bir anahtar seçmelisiniz.\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "Seçilen anahtarları gerçekten silmek istiyor musunuz? " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "Bu anahtarı gerçekten silmek istiyor musunuz? " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Seçilen tüm kullanıcı kimlikleri gerçekten iptal edilecek mi? " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Bu kullanıcı kimliği gerçekten iptal edilecek mi? " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "Seçilen anahtarları gerçekten yürürlükten kaldırmak istiyor musunuz? " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "Bu anahtarı gerçekten yürürlükten kaldırmak istiyor musunuz? " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "tercih listesi oluşturmak için" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "" "Seçilen kullanıcı kimlik için tercihleri gerçekten güncellemek istiyor " "musunuz? " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Tercihleri gerçekten güncellemek istiyor musunuz? " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Değişiklikler kaydedilecek mi? " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Kaydetmeden çıkılsın mı? " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "güncelleme başarısız: %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "gizliyi güncelleme başarısız: %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Güncelleme gereği olmadığından anahtar değişmedi.\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "Özümlenen: " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "Özellikler: " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "" "Bu anahtar %s tarafından şu anahtarla yürürlükten kaldırılmış olabilir: " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (duyarlı)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "%s oluşturulamıyor: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[yürürlükten kaldırıldı] " -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr "[son kullanma tarihi: %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr "[son kullanma tarihi: %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " güvencesi: %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " güvencesi: %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "Bu anahtar iptal edilmişti" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[yürürlükten kaldırıldı] " -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "Bir PGP 2.x tarzı kullanıcı kimliğine uygun tercih yok.\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3290,7 +3297,7 @@ msgstr "" "Gösterilen anahtarın, uygulamayı yeniden başlatıncaya kadar, gerekli\n" "doğrulukta olmayacağını lütfen gözönüne alınız.\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3299,7 +3306,7 @@ msgstr "" " başka bir kullanıcı kimliğinin birincil varsayılmasına sebep " "olabilir.\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3308,45 +3315,45 @@ msgstr "" "UYARI: Bu PGP-2 tarzı bir anahtar. Bir foto kimliği eklenmesi bu anahtarın\n" " bazı PGP sürümleri tarafından reddedilmesi ile sonuçlanabilir.\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "Onu yine de eklemek istiyor musunuz? (e/H) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "PGP2 tarzı bir anahtara bir foto kimliği ekleyemeyebilirsiniz.\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "Bu doğru imza silinsin mi? (e/H/k)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "Bu geçersiz imza silinsin mi? (e/H/k)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "Bu bilinmeyen imza silinsin mi? (e/H/k)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Bu öz-imza gerçekten silinecek mi? (e/H)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "%d imza silindi.\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "%d imza silindi.\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "Hiçbir şey silinmedi.\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3356,41 +3363,41 @@ msgstr "" " eklenmesi bu anahtarın bazı PGP sürümleri tarafından reddedilmesi\n" " ile sonuçlanabilir.\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "" "PGP2 tarzı bir anahtara tasarlanmış bir yürürlükten kaldırıcı " "ekleyemeyebilirsiniz.\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "" "Tasarlanmış yürürlükten kaldırma anahtarının kullanıcı kimliğini giriniz: " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "" "bir PGP 2.x tarzı anahtar bir tasarlanmış yürürlükten kaldırma anahtarı " "olarak atanamaz\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "" "bir anahtarı kendisini yürürlükten kaldıracak anahtar olarak " "kullanamazsınız\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "UYARI: Bu anahtar sahibi tarafından yürürlükten kaldırılmıştı!\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "" "UYARI: yürürlükten kaldıran olarak tasarlanmış bir anahtar başka amaçla\n" " kullanılamaz!\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " @@ -3398,130 +3405,130 @@ msgstr "" "bir anahtarın, yürürlükten kaldıran anahtar olmasını istediğinizden emin " "misiniz? (e/H): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "Lütfen gizli anahtarlardan seçilenleri silin.\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Lütfen en fazla bir yardımcı anahtar seçin.\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "Bir yardımcı anahtar için son kullanma tarihi değiştiriliyor.\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "Asıl anahtar için son kullanma tarihi değiştiriliyor.\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "Bir v3 anahtarının son kullanma tarihini değiştiremezsiniz\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "Gizli anahtar demetinde uygun/benzer imza yok\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "Lütfen sadece ve sadece bir kullanıcı kimlik seçiniz.\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "kullanıcı kimliği \"%s\" için v3 öz-imzası atlanıyor\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "Onu kullanmak istediğinizden emin misiniz? (e/H) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "Onu kullanmak istediğinizden emin misiniz? (e/H) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "%d endeksine sahip kullanıcı kimliği yok\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "%d endeksine sahip yardımcı anahtar yok\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "Kullanıcı kimliği: \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " %08lX ile %s%s%s de imzalanmış\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (dışarda geçersiz)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "Bu anahtarın geçerliliği %s de bitti.\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "Onu yine de yürürlükten kaldırmak istiyor musunuz? (e/H) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "" "Bu imza için bir yürürlükten kaldırma sertifikası oluşturulsun mu? (e/H) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "Bu kullanıcı kimliklerini imzalamışsınız:\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (dışarda geçersiz)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " %08lX tarafından %s de yürürlükten kaldırılmış\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "Bu imzaları yürürlükten kaldırmak üzeresiniz:\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "" "Bu yürürlükten kaldırma sertifikalarını gerçekten oluşturacak mısınız? (e/H) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "gizli anahtar yok\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "kullanıcı kimliği \"%s\" zaten iptal edilmişti\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "UYARI: bir kullanıcı kimliği imzası %d saniye gelecekte oluşturuldu\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" @@ -4032,107 +4039,107 @@ msgstr "" msgid "never " msgstr "asla " -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "Kritik imza guvencesi: " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "imza guvencesi: " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "UYARI: geçersiz niteleme verisi bulundu\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "Kritik imza niteleyici: " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "imza niteleyici: " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "insan okuyabilir değil" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Anahtar Zinciri" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr "[son kullanma tarihi: %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Birincil anahtar parmak izi:" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr "Yardımcı anahtar parmak izi:" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr "Birincil anahtar parmak izi:" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr "Yardımcı anahtar parmak izi:" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Anahtar parmak izi =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "zırhlama başarısız: %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "UYARI: gizli bilgi içeren 2 dosya mevcut.\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s değişmeyenlerden\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s yenilerden\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Lütfen bu güvenlik çatlağını giderin\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "`%s' anahtar zinciri denetleniyor\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "%lu anahtar denetlendi (%lu imza)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "%lu anahtar denetlendi (%lu imza)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: anahtar zinciri oluşturuldu\n" @@ -4256,11 +4263,6 @@ msgstr "keyserver receive başarısızlığa uğradı: %s\n" msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "anahtar `%s' yok: %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4696,7 +4698,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "vekil ile sorun var: vekil 0x%lx ile sonuçlandı\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "önceden tanımlanmış işlemler kipinde (batchmode) parola sorgulanamaz\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4775,23 +4778,23 @@ msgstr "Bu foto doğru mu? (e/H/ç)? " msgid "unable to display photo ID!\n" msgstr "foto kimliği gösterilemiyor!\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "Belirtilmiş bir neden yok" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Anahtarın yerine başkası konulmuş ve iptal edilmiştir" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Anahtar tehlikede" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Anahtar artık kullanılmayacak" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "Kullanıcı kimliği artık geçersiz" @@ -4862,7 +4865,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "Kararınız? " @@ -5019,8 +5022,8 @@ msgid "skipped: public key already set\n" msgstr "atlandı: genel anahtar zaten belirtilmiş\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "öntanımlı alıcı `%s' bilinmiyor\n" #: g10/pkclist.c:948 @@ -5049,15 +5052,15 @@ msgstr "Bağımsız imza.\n" msgid "Please enter name of data file: " msgstr "Lütfen veri dosyasının ismini girin: " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "standart girdiden okuyor ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "imzalı veri yok\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "imzalı veri '%s' açılamadı\n" @@ -5095,7 +5098,7 @@ msgid "NOTE: key has been revoked" msgstr "BİLGİ: anahtar yürürlükten kaldırılmıştı" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet başarısız: %s\n" @@ -5105,65 +5108,65 @@ msgstr "build_packet başarısız: %s\n" msgid "key %s has no user IDs\n" msgstr "anahtar %08lX: kullanıcı kimliği yok\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "Yürürlükten kaldıran:\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(Bu bir duyarlı yürürlükten kaldırma anahtarı)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "Bu imza için bir yürürlükten kaldırma sertifikası oluşturulsun mu? " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "ASCII zırhlı çıktı istendi.\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet başarısız: %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "Yürürlükten kaldırma sertifikası üretildi.\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "`%s' için yürürlükten kaldırma anahtarı yok\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "gizli anahtar `%s' yok: %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "karşılığı olan genel anahtar yok: `%s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "genel anahtar gizli anahtarla uyuşmuyor!\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "Bu imza için bir yürürlükten kaldırma sertifikası oluşturulsun mu? " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "bilinmeyen sıkıştırma algoritması\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "BİLGİ: Bu anahtar korunmamış!\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5181,34 +5184,34 @@ msgstr "" "Sertifika kısa olacağından isterseniz, bir yazıcı çıktısı olarak alıp\n" "bir kasada da muhafaza edebilirsiniz.\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "Lütfen bir yürürlükten kaldırma sebebi seçiniz:\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "İptal" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(Burada %d seçtiğiniz varsayılıyor)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "" "İsteğe bağlı açıklamayı girebilirsiniz; Boş bir satır işlemi sonlandırır:\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "Yürürlükten kaldırma sebebi: %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "(açıklama verilmedi)\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "Bu tamam mı? " @@ -5380,12 +5383,12 @@ msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "--pgp2 kipinde sadece PGP 2.x tarzı anahtarlarla ayrık imza yapabilirsiniz\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "\"%s\"e yazıyor\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" @@ -5393,49 +5396,42 @@ msgstr "" "alıcının tercihleriyle çelişen %s (%d) özümleme algoritması kullanılmak " "isteniyor\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "imzalanıyor:" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "dosya açılamadı: %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "" "--pgp2 kipinde sadece PGP 2.x tarzı anahtarlarla açık imzalama " "yapabilirsiniz\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s şifrelemesi kullanılmayacak\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "anahtar güvenli olarak imlenmemiş - onu sahte RSÜ ile kullanmayın!\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "`%s' atlandı: tekrarlanmış\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "\"%s\" atlandı: %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "atlandı: gizli anahtar zaten var\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "" "`%s' atlandı:\n" "Bu, imzalar için güvenli olmayan PGP üretimi bir ElGamal anahtarı!\n" @@ -6066,6 +6062,20 @@ msgstr "güvenli bellek hazırlanmadan işlem yapmak mümkün değil\n" msgid "(you may have used the wrong program for this task)\n" msgstr "(bu görev için yanlış program kullanmış olabilirsiniz)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "pardon, bu betik kipinde yapılamaz\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "anahtar `%s' yok: %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "\"%s\" oluşturulamıyor: %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "dosya açılamadı: %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " den \"" diff --git a/po/zh_CN.po b/po/zh_CN.po index 134e7e418..74f778449 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2004-07-20 15:50+0200\n" "Last-Translator: Meng Jie \n" "Language-Team: Chinese (simplified) \n" @@ -36,9 +36,10 @@ msgstr " #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "޷򿪡%s %s\n" @@ -70,8 +71,9 @@ msgstr " msgid "note: random_seed file not updated\n" msgstr "ע⣺ļδ\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "޷%s%s\n" @@ -293,9 +295,11 @@ msgstr "˽Կ msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "Ǹģʽ޷ɴ˲\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "ò޷ģʽн\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -469,7 +473,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "Чѡ\n" @@ -628,11 +632,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "ò޷ģʽн\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "> " @@ -641,7 +641,17 @@ msgstr " msgid "Admin-only command\n" msgstr "ͻָ\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "ͻָ\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "ڽ˽Կд`%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "Чָ(ԡhelp)\n" @@ -668,8 +678,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "޷򿪡%s\n" @@ -678,13 +688,14 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "--output в\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "Ҳ%sԿ%s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "ȡԿʱ%s\n" @@ -694,7 +705,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(ָָԿ)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "ģʽУûС--yes޷ô\n" #: g10/delkey.c:139 @@ -725,7 +737,7 @@ msgstr " msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "ʹá--delete-secret-keysѡɾ\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "ʱ%s\n" @@ -769,7 +781,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "ǿʹõ %s (%d)ԳƼ㷨ռߵѡ\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -839,11 +851,6 @@ msgstr " msgid "unable to execute shell `%s': %s\n" msgstr "޷ִ%s%s%s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "޷%s%s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1138,7 +1145,7 @@ msgstr "" msgid "Pubkey: " msgstr "Կ" -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "ԳƼܣ" @@ -1146,7 +1153,7 @@ msgstr " msgid "Hash: " msgstr "ɢУ" -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "ѹ" @@ -1265,7 +1272,7 @@ msgstr " msgid "`%s' is not a valid character set\n" msgstr "%s һЧַ\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "޷Կ URI\n" @@ -2379,29 +2386,29 @@ msgstr "[ msgid "[self-signature]" msgstr "[ǩ]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 𻵵ǩ\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d 𻵵ǩ\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr " 1 ǩΪʧԿδ\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr " %d ǩΪʧԿδ\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr " 1 ǩΪijδ\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr " %d ǩΪijЩδ\n" @@ -2454,12 +2461,12 @@ msgid "User ID \"%s\" is revoked." msgstr "ûʶ%sѱ" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "ȻҪΪǩ(y/N)" #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " ޷ǩ֡\n" @@ -2657,7 +2664,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "Ҫǩ " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3010,242 +3017,242 @@ msgstr "showphoto" msgid "show photo ID" msgstr "ʾƬʶ" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "ȡԿ顮%sʱ%s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "˽Կá\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "Ҫ˽Կô\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "ʹátoggleָ\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "Կѱ" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "Ϊеûʶǩ " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "ʾѡҪǩֵûʶ\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr " %s ģʽвʹָ\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "ٵѡһûʶ\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "ɾһûʶ\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "Ҫɾбѡûʶ " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "Ҫɾûʶ " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "Ҫɾûʶ " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "ѡһԿ\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "ѡһԿ\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "ҪɾѡԿ " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "ҪɾԿ " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "Ҫбѡûʶ " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "Ҫûʶ " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "ҪЩѡԿ " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "ҪԿ " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "趨ѡ" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "Ҫ±ѡûʶѡ " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "Ҫѡ " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "Ҫ䶯 " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "Ҫ뿪 " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "ʧܣ%s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "˽Կʧܣ%s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "Կûб䶯ԲҪ¡\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "ɢУ" -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "ص㣺" -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "Կɱ %s Կ" -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " (е)" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "޷ %s%s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[ѵ]" # of subkey -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [Ч%s]" # of subkey -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [Ч%s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " ζȣ %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " ζȣ %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "ԿѾ" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[ѵ]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "PGP 2.x ʽûʶûѡ\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3253,7 +3260,7 @@ msgstr "" "ע⣬֮ǰ\n" "ʾԿЧδȷ\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" @@ -3261,7 +3268,7 @@ msgstr "" "棺ûһûʶΪѡûʶܼٶһͬ\n" " ûʶѡûʶ\n" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3270,45 +3277,45 @@ msgstr "" "棺һ PGP2 ʽԿ\n" " ƬʶܻᵼijЩ汾 PGP ʶԿ\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "ȷȻҪ(y/N)" -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "԰Ƭʶӵ PGP2 ʽԿ\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "ɾõǩ(y/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "ɾЧǩ(y/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "ɾδ֪ǩ(y/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "Ҫɾǩ(y/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "Ѿɾ %d ǩ֡\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "Ѿɾ %d ǩ֡\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "ûжɾ\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3317,162 +3324,162 @@ msgstr "" "棺һ PGP2 ʽԿ\n" " ָ߿ܻᵼijЩ汾 PGP ޷ʶԿ\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "Ϊ PGP 2.x ʽԿָߡ\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "ָߵûʶ" -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "޷ PGP 2.x ʽԿΪָ\n" # This actually causes no harm (after all, a key that # designates itself as a revoker is the same as a # regular key), but it's easy enough to check. -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "ܽijԿΪԼָ\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "棺ԿѾָߵˣ\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "棺ijԿָΪָߵIJ޷\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "ȷҪԿΪָ(y/N)" -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "˽Կɾѡ\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "ѡһԿ\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "ڱԿʹޡ\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "ڱԿʹޡ\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "ܱv3Կʹ\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "˽Կûһµǩ\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "뾫ȷѡһûʶ\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "ûʶ%s v3 ǩ\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "ȷҪ(y/N)" -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "ȷҪ(y/N)" -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr "ûΪ %d ûʶ\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr "ûΪ %d Կ\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ûʶ" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " %08lX %s%s%s ǩ\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (ɵ)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "ǩ %s ڡ\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "ȷȻҪ(y/N)" -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "ҪΪǩһݵ֤(y/N)" -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "ѾΪЩûʶǩ֣\n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (ɵ)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " %08lX %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "ڵЩǩ֣\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "Ҫɵ֤(y/N)" -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "û˽Կ\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "ûʶ%sѾ\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "棺һûʶǩֵڱΪ %d δ\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "ʾ %s Ƭʶ(СΪ %ldԿ 0x%08lXûʶ %d)\n" @@ -3969,109 +3976,109 @@ msgstr "" msgid "never " msgstr "" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "ؼǩֲԣ" -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "ǩֲԣ" -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "棺ҵЧı\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "ؼǩֱǣ" -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "ǩֱǣ" -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "ܶ" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "Կ׻" # of subkey -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [Ч%s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "Կָƣ" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr "Կָƣ" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " Կָƣ" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " Կָƣ" # use tty -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " Կָ =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr " ASCII װʧܣ%s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "棺ļлìܵϢ\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s ûиıһ\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s µһ\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "޲ܵİȫ©\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "ڼԿ׻%s\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "Ѽ %lu Կ(%lu ǩ)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "Ѽ %lu Կ(%lu ǩ)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%sԿ׻ѽ\n" @@ -4194,11 +4201,6 @@ msgstr " msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "Ҳ%sԿ%s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4625,7 +4627,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "⣺򷵻 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "ģʽ޷ѯ\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4702,23 +4705,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr "޷ʾƬʶ\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "δָԭ" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "Կ滻" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "Կй©" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "Կʹ" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "ûʶЧ" @@ -4790,7 +4793,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "ľʲô" @@ -4939,8 +4942,8 @@ msgid "skipped: public key already set\n" msgstr "Կѱ趨\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "δ֪Ĭռߡ%s\n" #: g10/pkclist.c:948 @@ -4969,15 +4972,15 @@ msgstr " msgid "Please enter name of data file: " msgstr "ļƣ " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "ڴӱ׼ȡ ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "ǩֵ\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "޷ǩֵݡ%s\n" @@ -5015,7 +5018,7 @@ msgid "NOTE: key has been revoked" msgstr "ע⣺Կѱ" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet ʧܣ%s\n" @@ -5025,65 +5028,65 @@ msgstr "build_packet ʧ msgid "key %s has no user IDs\n" msgstr "Կ %08lXûûʶ\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "ߣ\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "(һеĵԿ)\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "ҪΪԿһݵ֤ " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "ǿʹ ASCII װ\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet ʧܣ %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "ѽ֤顣\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "ûҵ%sõĵԿ\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "Ҳ%s˽Կ%s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "ûӦĹԿ%s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "Կ˽ԿǺϣ\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "ҪΪԿһݵ֤ " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "δ֪ı㷨\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "ע⣺Կûб\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5102,33 +5105,33 @@ msgstr "" "ǧСģĻϵĴӡϵͳܻڴӡ\n" "аЩʱijҲܹõĵط\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "ѡԭ\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "ȡ" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "(ҲҪѡ%d)\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "(ѡ)Կհн\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "ԭ%s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "()\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr " " @@ -5281,58 +5284,51 @@ msgstr "%sǩ msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr " --pgp2 ģʽֻܹʹ PGP 2.x ʽԿǩ\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "д롮%s\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "ǿʹõ %s (%d)ɢ㷨ռߵѡ\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "ǩ֣" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "޷ļ%s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr " --pgp2 ģʽֻܹʹ PGP 2.x ʽԿǩ\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s ܽ\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "ԿδʾΪȫٵͬʹã\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "%sظ\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "%s%s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "˽ԿѴ\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "%sһ PGP ɵ ElGamal Կǩֲȫ\n" #: g10/tdbdump.c:59 g10/trustdb.c:365 @@ -5958,6 +5954,20 @@ msgstr " msgid "(you may have used the wrong program for this task)\n" msgstr "(ʹ˴ijɴ)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "Ǹģʽ޷ɴ˲\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "Ҳ%sԿ%s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "޷%s%s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "޷ļ%s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " ༴ \"" diff --git a/po/zh_TW.po b/po/zh_TW.po index a85bf287d..5deedbb0f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 2004-10-26 18:05+0200\n" +"POT-Creation-Date: 2004-10-28 10:59+0200\n" "PO-Revision-Date: 2003-05-13 15:48+0800\n" "Last-Translator: Jedi \n" "Language-Team: Chinese (traditional) \n" @@ -38,9 +38,10 @@ msgstr " #: cipher/random.c:387 g10/card-util.c:594 g10/dearmor.c:60 g10/dearmor.c:109 #: g10/encode.c:181 g10/encode.c:488 g10/g10.c:3194 g10/import.c:175 -#: g10/keygen.c:2236 g10/openfile.c:180 g10/openfile.c:333 g10/sign.c:761 -#: g10/sign.c:1020 g10/sign.c:1165 g10/tdbdump.c:140 g10/tdbdump.c:148 -#: g10/tdbio.c:539 g10/tdbio.c:600 +#: g10/keygen.c:2236 g10/keyring.c:1524 g10/openfile.c:180 g10/openfile.c:333 +#: g10/plaintext.c:468 g10/sign.c:761 g10/sign.c:912 g10/sign.c:1020 +#: g10/sign.c:1164 g10/tdbdump.c:140 g10/tdbdump.c:148 g10/tdbio.c:539 +#: g10/tdbio.c:600 #, c-format msgid "can't open `%s': %s\n" msgstr "Lk} `%s' G %s\n" @@ -72,8 +73,9 @@ msgstr " msgid "note: random_seed file not updated\n" msgstr "Ъ`NG random_seed ɮץQs\n" -#: cipher/random.c:473 g10/keygen.c:2704 g10/keygen.c:2734 g10/keyring.c:1496 -#: g10/openfile.c:257 g10/openfile.c:348 g10/tdbio.c:535 +#: cipher/random.c:473 g10/exec.c:489 g10/keygen.c:2704 g10/keygen.c:2734 +#: g10/keyring.c:1200 g10/keyring.c:1500 g10/openfile.c:257 g10/openfile.c:348 +#: g10/sign.c:778 g10/sign.c:1035 g10/tdbio.c:535 #, c-format msgid "can't create `%s': %s\n" msgstr "Lkإ `%s' G %s\n" @@ -295,9 +297,11 @@ msgstr " msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:70 g10/keygen.c:2420 g10/revoke.c:215 g10/revoke.c:415 -msgid "sorry, can't do this in batch mode\n" -msgstr "pALkb妸Ҧo˰\n" +#: g10/card-util.c:70 g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1314 +#: g10/keygen.c:2420 g10/revoke.c:216 g10/revoke.c:417 +#, fuzzy +msgid "can't do this in batch mode\n" +msgstr "Lkb妸Ҧ˰\n" #: g10/card-util.c:94 g10/card-util.c:977 g10/card-util.c:1059 #: g10/keyedit.c:412 g10/keyedit.c:433 g10/keyedit.c:447 g10/keygen.c:1298 @@ -471,7 +475,7 @@ msgid " (3) Authentication key\n" msgstr "" #: g10/card-util.c:988 g10/card-util.c:1070 g10/keyedit.c:907 -#: g10/keygen.c:1395 g10/revoke.c:639 +#: g10/keygen.c:1395 g10/revoke.c:642 msgid "Invalid selection.\n" msgstr "LĪܡC\n" @@ -630,11 +634,7 @@ msgstr "passwd" msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1198 g10/delkey.c:120 g10/keyedit.c:1313 -msgid "can't do that in batchmode\n" -msgstr "Lkb妸Ҧ˰\n" - -#: g10/card-util.c:1246 g10/keyedit.c:1393 +#: g10/card-util.c:1246 g10/keyedit.c:1397 msgid "Command> " msgstr "O> " @@ -643,7 +643,17 @@ msgstr " msgid "Admin-only command\n" msgstr "O٬\n" -#: g10/card-util.c:1356 g10/keyedit.c:1860 +#: g10/card-util.c:1297 +#, fuzzy +msgid "Admin commands are allowed\n" +msgstr "O٬\n" + +#: g10/card-util.c:1299 +#, fuzzy +msgid "Admin commands are not allowed\n" +msgstr "bNp_g `%s'\n" + +#: g10/card-util.c:1360 g10/keyedit.c:1864 msgid "Invalid command (try \"help\")\n" msgstr "LĪO (ոլ \"help\")\n" @@ -670,8 +680,8 @@ msgstr "" msgid "Enter PIN: " msgstr "" -#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/verify.c:101 -#: g10/verify.c:154 +#: g10/decrypt.c:68 g10/decrypt.c:157 g10/g10.c:3544 g10/keyring.c:376 +#: g10/keyring.c:662 g10/verify.c:101 g10/verify.c:154 #, c-format msgid "can't open `%s'\n" msgstr "Lk} `%s'\n" @@ -680,13 +690,14 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "--output boөROS@\n" -#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2917 g10/revoke.c:225 -#, c-format -msgid "key `%s' not found: %s\n" +#: g10/delkey.c:74 g10/export.c:162 g10/keyedit.c:2921 g10/keyserver.c:1414 +#: g10/revoke.c:226 +#, fuzzy, c-format +msgid "key \"%s\" not found: %s\n" msgstr "䤣 `%s' _G %s\n" -#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:231 -#: g10/revoke.c:436 +#: g10/delkey.c:82 g10/export.c:192 g10/keyserver.c:1428 g10/revoke.c:232 +#: g10/revoke.c:439 #, c-format msgid "error reading keyblock: %s\n" msgstr "Ū_϶ɵoͿ~G %s\n" @@ -696,7 +707,8 @@ msgid "(unless you specify the key by fingerprint)\n" msgstr "(DpΫwF_)\n" #: g10/delkey.c:127 -msgid "can't do that in batchmode without \"--yes\"\n" +#, fuzzy +msgid "can't do this in batch mode without \"--yes\"\n" msgstr "b妸ҦAS \"--yes\" NSko\n" #: g10/delkey.c:139 @@ -727,7 +739,7 @@ msgstr " msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "ХH \"--delete-secret-keys\" ﶵӧRC\n" -#: g10/encode.c:210 g10/sign.c:1185 +#: g10/encode.c:210 g10/sign.c:1184 #, c-format msgid "error creating passphrase: %s\n" msgstr "إ߱KXꪺɭԵoͿ~G %s\n" @@ -771,7 +783,7 @@ msgid "" "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "jϥ %s (%d) ٦sKk|HϦ̰n]w\n" -#: g10/encode.c:648 g10/sign.c:877 +#: g10/encode.c:648 g10/sign.c:876 #, fuzzy, c-format msgid "" "WARNING: forcing compression algorithm %s (%d) violates recipient " @@ -841,11 +853,6 @@ msgstr " msgid "unable to execute shell `%s': %s\n" msgstr "Lk %s \"%s\": %s\n" -#: g10/exec.c:489 g10/sign.c:778 g10/sign.c:1035 -#, fuzzy, c-format -msgid "can't create file `%s': %s\n" -msgstr "Lkإ `%s' G %s\n" - #: g10/exec.c:521 #, c-format msgid "system error while calling external program: %s\n" @@ -1139,7 +1146,7 @@ msgstr "" msgid "Pubkey: " msgstr "_G " -#: g10/g10.c:766 g10/keyedit.c:1897 +#: g10/g10.c:766 g10/keyedit.c:1901 msgid "Cipher: " msgstr "sKkG " @@ -1147,7 +1154,7 @@ msgstr " msgid "Hash: " msgstr "G " -#: g10/g10.c:778 g10/keyedit.c:1943 +#: g10/g10.c:778 g10/keyedit.c:1947 msgid "Compression: " msgstr "YG " @@ -1266,7 +1273,7 @@ msgstr " msgid "`%s' is not a valid character set\n" msgstr "%s O@ӦĪr\n" -#: g10/g10.c:2279 g10/keyedit.c:3433 +#: g10/g10.c:2279 g10/keyedit.c:3437 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "LkR_A URI\n" @@ -2378,29 +2385,29 @@ msgstr "[ msgid "[self-signature]" msgstr "[ۧñ]" -#: g10/keyedit.c:332 g10/keylist.c:326 +#: g10/keyedit.c:332 g10/keylist.c:342 msgid "1 bad signature\n" msgstr "1 ӷlañ\n" -#: g10/keyedit.c:334 g10/keylist.c:328 +#: g10/keyedit.c:334 g10/keylist.c:344 #, c-format msgid "%d bad signatures\n" msgstr "%d ӷlañ\n" -#: g10/keyedit.c:336 g10/keylist.c:330 +#: g10/keyedit.c:336 g10/keylist.c:346 msgid "1 signature not checked due to a missing key\n" msgstr " 1 ñ]򥢪_ӥQˬd\n" -#: g10/keyedit.c:338 g10/keylist.c:332 +#: g10/keyedit.c:338 g10/keylist.c:348 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr " %d ñ]򥢪_ӥQˬd\n" -#: g10/keyedit.c:340 g10/keylist.c:334 +#: g10/keyedit.c:340 g10/keylist.c:350 msgid "1 signature not checked due to an error\n" msgstr " 1 ñ]Yӿ~ӥQˬd\n" -#: g10/keyedit.c:342 g10/keylist.c:336 +#: g10/keyedit.c:342 g10/keylist.c:352 #, c-format msgid "%d signatures not checked due to errors\n" msgstr " %d ñ]Yǿ~ӥQˬd\n" @@ -2453,12 +2460,12 @@ msgid "User ID \"%s\" is revoked." msgstr "ϥΪ ID \"%s\" wgQMPFC" #: g10/keyedit.c:593 g10/keyedit.c:619 g10/keyedit.c:644 g10/keyedit.c:799 -#: g10/keyedit.c:857 g10/keyedit.c:1482 +#: g10/keyedit.c:857 g10/keyedit.c:1486 msgid "Are you sure you still want to sign it? (y/N) " msgstr "pMQnñpܡH (y/N) " #: g10/keyedit.c:605 g10/keyedit.c:631 g10/keyedit.c:656 g10/keyedit.c:805 -#: g10/keyedit.c:1488 +#: g10/keyedit.c:1492 msgid " Unable to sign.\n" msgstr " LkñpC\n" @@ -2656,7 +2663,7 @@ msgstr "" msgid "Really sign? (y/N) " msgstr "unñpܡH " -#: g10/keyedit.c:1028 g10/keyedit.c:3881 g10/keyedit.c:3972 g10/keyedit.c:4045 +#: g10/keyedit.c:1028 g10/keyedit.c:3885 g10/keyedit.c:3976 g10/keyedit.c:4049 #: g10/sign.c:369 #, c-format msgid "signing failed: %s\n" @@ -3009,240 +3016,240 @@ msgstr "showphoto" msgid "show photo ID" msgstr "ܷӤ ID" -#: g10/keyedit.c:1344 -#, c-format -msgid "error reading secret keyblock `%s': %s\n" +#: g10/keyedit.c:1347 +#, fuzzy, c-format +msgid "error reading secret keyblock \"%s\": %s\n" msgstr "Ū_϶ `%s' ɵoͿ~G %s\n" -#: g10/keyedit.c:1361 +#: g10/keyedit.c:1365 msgid "Secret key is available.\n" msgstr "p_iΡC\n" -#: g10/keyedit.c:1423 +#: g10/keyedit.c:1427 msgid "Need the secret key to do this.\n" msgstr "np_ׯo򰵡C\n" -#: g10/keyedit.c:1428 +#: g10/keyedit.c:1432 msgid "Please use the command \"toggle\" first.\n" msgstr "Хϥ \"toggle\" OC\n" -#: g10/keyedit.c:1476 +#: g10/keyedit.c:1480 msgid "Key is revoked." msgstr "_wgQMPFC" -#: g10/keyedit.c:1496 +#: g10/keyedit.c:1500 #, fuzzy msgid "Really sign all user IDs? (y/N) " msgstr "unñpҦϥΪ ID ܡH " -#: g10/keyedit.c:1498 +#: g10/keyedit.c:1502 msgid "Hint: Select the user IDs to sign\n" msgstr "ܡGܭnñpϥΪ ID\n" -#: g10/keyedit.c:1523 +#: g10/keyedit.c:1527 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "b %s Ҧ\ϥγoӫOC\n" -#: g10/keyedit.c:1545 g10/keyedit.c:1565 g10/keyedit.c:1668 +#: g10/keyedit.c:1549 g10/keyedit.c:1569 g10/keyedit.c:1672 msgid "You must select at least one user ID.\n" msgstr "pܤֱoܤ@ӨϥΪ ID C\n" -#: g10/keyedit.c:1547 +#: g10/keyedit.c:1551 msgid "You can't delete the last user ID!\n" msgstr "pR̫@ӨϥΪ ID I\n" -#: g10/keyedit.c:1549 +#: g10/keyedit.c:1553 #, fuzzy msgid "Really remove all selected user IDs? (y/N) " msgstr "unҦQܪϥΪ ID ܡH " -#: g10/keyedit.c:1550 +#: g10/keyedit.c:1554 #, fuzzy msgid "Really remove this user ID? (y/N) " msgstr "unoӨϥΪ ID ܡH " -#: g10/keyedit.c:1600 +#: g10/keyedit.c:1604 #, fuzzy msgid "Really move the primary key? (y/N) " msgstr "unoӨϥΪ ID ܡH " -#: g10/keyedit.c:1612 +#: g10/keyedit.c:1616 #, fuzzy msgid "You must select exactly one key.\n" msgstr "pܤ֥ܤ@_C\n" -#: g10/keyedit.c:1632 g10/keyedit.c:1687 +#: g10/keyedit.c:1636 g10/keyedit.c:1691 msgid "You must select at least one key.\n" msgstr "pܤ֥ܤ@_C\n" -#: g10/keyedit.c:1635 +#: g10/keyedit.c:1639 #, fuzzy msgid "Do you really want to delete the selected keys? (y/N) " msgstr "puQnRQܪ_ܡH " -#: g10/keyedit.c:1636 +#: g10/keyedit.c:1640 #, fuzzy msgid "Do you really want to delete this key? (y/N) " msgstr "punRo_ܡH " -#: g10/keyedit.c:1671 +#: g10/keyedit.c:1675 #, fuzzy msgid "Really revoke all selected user IDs? (y/N) " msgstr "unMPҦQܪϥΪ ID ܡH " -#: g10/keyedit.c:1672 +#: g10/keyedit.c:1676 #, fuzzy msgid "Really revoke this user ID? (y/N) " msgstr "unMPoӨϥΪ ID ܡH " -#: g10/keyedit.c:1691 +#: g10/keyedit.c:1695 #, fuzzy msgid "Do you really want to revoke the selected keys? (y/N) " msgstr "puQnMPodzQܪ_ܡH " -#: g10/keyedit.c:1692 +#: g10/keyedit.c:1696 #, fuzzy msgid "Do you really want to revoke this key? (y/N) " msgstr "puQnMPo_ܡH " -#: g10/keyedit.c:1731 +#: g10/keyedit.c:1735 msgid "" "Owner trust may not be set while using an user provided trust database\n" msgstr "" -#: g10/keyedit.c:1763 +#: g10/keyedit.c:1767 #, fuzzy msgid "Set preference list to:\n" msgstr "]wnM" -#: g10/keyedit.c:1769 +#: g10/keyedit.c:1773 #, fuzzy msgid "Really update the preferences for the selected user IDs? (y/N) " msgstr "unsQܨϥΪ ID nܡH " -#: g10/keyedit.c:1771 +#: g10/keyedit.c:1775 #, fuzzy msgid "Really update the preferences? (y/N) " msgstr "unsnܡH " -#: g10/keyedit.c:1821 +#: g10/keyedit.c:1825 #, fuzzy msgid "Save changes? (y/N) " msgstr "nxsܧܡH " -#: g10/keyedit.c:1824 +#: g10/keyedit.c:1828 #, fuzzy msgid "Quit without saving? (y/N) " msgstr "nxs}ܡH " -#: g10/keyedit.c:1834 +#: g10/keyedit.c:1838 #, c-format msgid "update failed: %s\n" msgstr "sѡG %s\n" -#: g10/keyedit.c:1841 +#: g10/keyedit.c:1845 #, c-format msgid "update secret failed: %s\n" msgstr "sp_ѡG %s\n" -#: g10/keyedit.c:1848 +#: g10/keyedit.c:1852 msgid "Key not changed so no update needed.\n" msgstr "_SܧҥHݭnsC\n" -#: g10/keyedit.c:1920 +#: g10/keyedit.c:1924 msgid "Digest: " msgstr "KnG " -#: g10/keyedit.c:1972 +#: g10/keyedit.c:1976 msgid "Features: " msgstr "SIG " -#: g10/keyedit.c:1983 +#: g10/keyedit.c:1987 msgid "Keyserver no-modify" msgstr "" -#: g10/keyedit.c:1998 g10/keylist.c:229 +#: g10/keyedit.c:2002 g10/keylist.c:244 msgid "Preferred keyserver: " msgstr "" -#: g10/keyedit.c:2239 +#: g10/keyedit.c:2243 #, c-format msgid "This key may be revoked by %s key " msgstr "o_iQ %s _MPF " -#: g10/keyedit.c:2243 +#: g10/keyedit.c:2247 msgid " (sensitive)" msgstr " ]K^" -#: g10/keyedit.c:2257 g10/keyedit.c:2313 g10/keyedit.c:2434 g10/keyedit.c:2449 +#: g10/keyedit.c:2261 g10/keyedit.c:2317 g10/keyedit.c:2438 g10/keyedit.c:2453 #: g10/keyserver.c:366 #, fuzzy, c-format msgid "created: %s" msgstr "Lkإ %s: %s\n" -#: g10/keyedit.c:2260 g10/keylist.c:707 g10/keylist.c:807 g10/mainproc.c:929 +#: g10/keyedit.c:2264 g10/keylist.c:723 g10/keylist.c:823 g10/mainproc.c:929 #, fuzzy, c-format msgid "revoked: %s" msgstr "[wMP]" -#: g10/keyedit.c:2262 g10/keylist.c:678 g10/keylist.c:813 +#: g10/keyedit.c:2266 g10/keylist.c:694 g10/keylist.c:829 #, fuzzy, c-format msgid "expired: %s" msgstr " [ĴG %s]" -#: g10/keyedit.c:2264 g10/keyedit.c:2315 g10/keyedit.c:2436 g10/keyedit.c:2451 -#: g10/keylist.c:684 g10/keylist.c:719 g10/keylist.c:819 g10/keylist.c:840 +#: g10/keyedit.c:2268 g10/keyedit.c:2319 g10/keyedit.c:2440 g10/keyedit.c:2455 +#: g10/keylist.c:700 g10/keylist.c:735 g10/keylist.c:835 g10/keylist.c:856 #: g10/keyserver.c:372 g10/mainproc.c:935 #, fuzzy, c-format msgid "expires: %s" msgstr " [ĴG %s]" -#: g10/keyedit.c:2266 +#: g10/keyedit.c:2270 #, fuzzy, c-format msgid "usage: %s" msgstr " HG %c/%c" -#: g10/keyedit.c:2281 +#: g10/keyedit.c:2285 #, fuzzy, c-format msgid "trust: %s" msgstr " HG %c/%c" -#: g10/keyedit.c:2285 +#: g10/keyedit.c:2289 #, c-format msgid "validity: %s" msgstr "" -#: g10/keyedit.c:2292 +#: g10/keyedit.c:2296 msgid "This key has been disabled" msgstr "o_wgQTΤF" -#: g10/keyedit.c:2320 +#: g10/keyedit.c:2324 msgid "card-no: " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2357 g10/keyedit.c:2359 +#: g10/keyedit.c:2359 g10/keyedit.c:2361 g10/keyedit.c:2363 #, c-format msgid "[%8.8s] " msgstr "" -#: g10/keyedit.c:2355 g10/keyedit.c:2468 g10/keylist.c:766 g10/keyserver.c:376 +#: g10/keyedit.c:2359 g10/keyedit.c:2472 g10/keylist.c:782 g10/keyserver.c:376 #: g10/mainproc.c:1575 g10/trustdb.c:1133 #, fuzzy msgid "revoked" msgstr "[wMP]" -#: g10/keyedit.c:2357 g10/keyedit.c:2470 g10/keylist.c:768 g10/keyserver.c:380 +#: g10/keyedit.c:2361 g10/keyedit.c:2474 g10/keylist.c:784 g10/keyserver.c:380 #: g10/mainproc.c:1577 g10/trustdb.c:500 #, fuzzy msgid "expired" msgstr "expire" -#: g10/keyedit.c:2396 +#: g10/keyedit.c:2400 msgid "There are no preferences on a PGP 2.x-style user ID.\n" msgstr "PGP 2.x AϥΪ ID SnC\n" -#: g10/keyedit.c:2404 +#: g10/keyedit.c:2408 msgid "" "Please note that the shown key validity is not necessarily correct\n" "unless you restart the program.\n" @@ -3250,13 +3257,13 @@ msgstr "" "Ъ`NܥXӪ_ĩʤݭn󥿡A\n" "Dps{C\n" -#: g10/keyedit.c:2535 +#: g10/keyedit.c:2539 msgid "" "WARNING: no user ID has been marked as primary. This command may\n" " cause a different user ID to become the assumed primary.\n" msgstr "" -#: g10/keyedit.c:2595 +#: g10/keyedit.c:2599 msgid "" "WARNING: This is a PGP2-style key. Adding a photo ID may cause some " "versions\n" @@ -3265,45 +3272,45 @@ msgstr "" "ĵiGoO@ PGP2 A_C\n" " W[Ӥ ID i|ɭPYǪ PGP ^o_C\n" -#: g10/keyedit.c:2600 g10/keyedit.c:2878 +#: g10/keyedit.c:2604 g10/keyedit.c:2882 msgid "Are you sure you still want to add it? (y/N) " msgstr "pTwMQnW[ܡH (y/N) " -#: g10/keyedit.c:2606 +#: g10/keyedit.c:2610 msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "piHӤ ID W[ PGP2 A_̡C\n" -#: g10/keyedit.c:2746 +#: g10/keyedit.c:2750 msgid "Delete this good signature? (y/N/q)" msgstr "RoӧnñܡH (y/N/q)" -#: g10/keyedit.c:2756 +#: g10/keyedit.c:2760 msgid "Delete this invalid signature? (y/N/q)" msgstr "RoӵLĪñܡH (y/N/q)" -#: g10/keyedit.c:2760 +#: g10/keyedit.c:2764 msgid "Delete this unknown signature? (y/N/q)" msgstr "RoӥñܡH (y/N/q)" -#: g10/keyedit.c:2766 +#: g10/keyedit.c:2770 msgid "Really delete this self-signature? (y/N)" msgstr "unRoӦۧñܡH (y/N)" -#: g10/keyedit.c:2780 +#: g10/keyedit.c:2784 #, c-format msgid "Deleted %d signature.\n" msgstr "wgRF %d ñC\n" -#: g10/keyedit.c:2781 +#: g10/keyedit.c:2785 #, c-format msgid "Deleted %d signatures.\n" msgstr "wgRF %d ñC\n" -#: g10/keyedit.c:2784 +#: g10/keyedit.c:2788 msgid "Nothing deleted.\n" msgstr "SFQRC\n" -#: g10/keyedit.c:2873 +#: g10/keyedit.c:2877 msgid "" "WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " "cause\n" @@ -3312,159 +3319,159 @@ msgstr "" "ĵiGoO@ PGP2 A_C\n" " W[wMP̥i|ɭPYǪ PGP ^o_C\n" -#: g10/keyedit.c:2884 +#: g10/keyedit.c:2888 msgid "You may not add a designated revoker to a PGP 2.x-style key.\n" msgstr "piHwMP̼W[ PGP2 A_̡C\n" -#: g10/keyedit.c:2904 +#: g10/keyedit.c:2908 msgid "Enter the user ID of the designated revoker: " msgstr "JwMP̪ϥΪ ID G " -#: g10/keyedit.c:2927 +#: g10/keyedit.c:2931 msgid "cannot appoint a PGP 2.x style key as a designated revoker\n" msgstr "LkN PGP 2.x A_wMP\n" -#: g10/keyedit.c:2942 +#: g10/keyedit.c:2946 msgid "you cannot appoint a key as its own designated revoker\n" msgstr "pY_ۤvwMP\n" -#: g10/keyedit.c:2964 +#: g10/keyedit.c:2968 #, fuzzy msgid "this key has already been designated as a revoker\n" msgstr "ĵiGo_wgQHMPFI\n" -#: g10/keyedit.c:2983 +#: g10/keyedit.c:2987 msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "ĵiG@Y_wMP̫ANLkϮFI\n" -#: g10/keyedit.c:2989 +#: g10/keyedit.c:2993 #, fuzzy msgid "" "Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "pTwno_wMP̶ܡH (y/N): " -#: g10/keyedit.c:3050 +#: g10/keyedit.c:3054 msgid "Please remove selections from the secret keys.\n" msgstr "бqp_ܡC\n" -#: g10/keyedit.c:3056 +#: g10/keyedit.c:3060 msgid "Please select at most one secondary key.\n" msgstr "Цܦhܤ@⦸_C\n" -#: g10/keyedit.c:3060 +#: g10/keyedit.c:3064 msgid "Changing expiration time for a secondary key.\n" msgstr "bܧY⦸_ϥδC\n" -#: g10/keyedit.c:3063 +#: g10/keyedit.c:3067 msgid "Changing expiration time for the primary key.\n" msgstr "bܧD_ϥδC\n" -#: g10/keyedit.c:3109 +#: g10/keyedit.c:3113 msgid "You can't change the expiration date of a v3 key\n" msgstr "pܧ v3 _ϥδ\n" -#: g10/keyedit.c:3125 +#: g10/keyedit.c:3129 msgid "No corresponding signature in secret ring\n" msgstr "bp_̨S@Pñ\n" -#: g10/keyedit.c:3205 +#: g10/keyedit.c:3209 msgid "Please select exactly one user ID.\n" msgstr "кTaܤ@ӨϥΪ ID C\n" -#: g10/keyedit.c:3244 g10/keyedit.c:3354 g10/keyedit.c:3473 +#: g10/keyedit.c:3248 g10/keyedit.c:3358 g10/keyedit.c:3477 #, fuzzy, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "bϥΪ ID \"%s\" L v3 ۧñ\n" -#: g10/keyedit.c:3415 +#: g10/keyedit.c:3419 msgid "Enter your preferred keyserver URL: " msgstr "" -#: g10/keyedit.c:3494 +#: g10/keyedit.c:3498 #, fuzzy msgid "Are you sure you want to replace it? (y/N) " msgstr "pTwnΥܡH (y/N) " -#: g10/keyedit.c:3495 +#: g10/keyedit.c:3499 #, fuzzy msgid "Are you sure you want to delete it? (y/N) " msgstr "pTwnΥܡH (y/N) " -#: g10/keyedit.c:3557 +#: g10/keyedit.c:3561 #, c-format msgid "No user ID with index %d\n" msgstr " %d SϥΪ ID\n" -#: g10/keyedit.c:3603 +#: g10/keyedit.c:3607 #, c-format msgid "No secondary key with index %d\n" msgstr " %d S_\n" -#: g10/keyedit.c:3720 +#: g10/keyedit.c:3724 #, fuzzy, c-format msgid "user ID: \"%s\"\n" msgstr "ϥΪ IDG \"" -#: g10/keyedit.c:3723 g10/keyedit.c:3787 g10/keyedit.c:3830 +#: g10/keyedit.c:3727 g10/keyedit.c:3791 g10/keyedit.c:3834 #, fuzzy, c-format msgid "signed by your key %s on %s%s%s\n" msgstr " %08lX ñp %s%s%s\n" -#: g10/keyedit.c:3725 g10/keyedit.c:3789 g10/keyedit.c:3832 +#: g10/keyedit.c:3729 g10/keyedit.c:3793 g10/keyedit.c:3836 msgid " (non-exportable)" msgstr " (iץX)" -#: g10/keyedit.c:3729 +#: g10/keyedit.c:3733 #, c-format msgid "This signature expired on %s.\n" msgstr "oñpwgb %s LFC\n" -#: g10/keyedit.c:3733 +#: g10/keyedit.c:3737 msgid "Are you sure you still want to revoke it? (y/N) " msgstr "pTwpMQnMPܡH (y/N) " -#: g10/keyedit.c:3737 +#: g10/keyedit.c:3741 msgid "Create a revocation certificate for this signature? (y/N) " msgstr "noñإߤ@MPҶܡH (y/N) " -#: g10/keyedit.c:3764 +#: g10/keyedit.c:3768 #, fuzzy, c-format msgid "You have signed these user IDs on key %s:\n" msgstr "pwgñpFoǨϥΪ IDG \n" -#: g10/keyedit.c:3790 +#: g10/keyedit.c:3794 #, fuzzy msgid " (non-revocable)" msgstr " (iץX)" -#: g10/keyedit.c:3797 +#: g10/keyedit.c:3801 #, fuzzy, c-format msgid "revoked by your key %s on %s\n" msgstr " %08lX MP %s\n" -#: g10/keyedit.c:3819 +#: g10/keyedit.c:3823 msgid "You are about to revoke these signatures:\n" msgstr "pbMPoñG\n" -#: g10/keyedit.c:3839 +#: g10/keyedit.c:3843 msgid "Really create the revocation certificates? (y/N) " msgstr "unإߺMPҶܡH (y/N) " -#: g10/keyedit.c:3869 +#: g10/keyedit.c:3873 msgid "no secret key\n" msgstr "Sp_\n" -#: g10/keyedit.c:3939 +#: g10/keyedit.c:3943 #, c-format msgid "user ID \"%s\" is already revoked\n" msgstr "ϥΪ ID \"%s\" wgQMPFC\n" -#: g10/keyedit.c:3956 +#: g10/keyedit.c:3960 #, c-format msgid "WARNING: a user ID signature is dated %d seconds in the future\n" msgstr "ĵiG@ϥΪ ID ñаO %d ᪺\n" -#: g10/keyedit.c:4125 +#: g10/keyedit.c:4129 #, fuzzy, c-format msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "b %s ؤo %ld _ 0x%08lX (uid %d) Ӥ ID\n" @@ -3961,107 +3968,107 @@ msgstr "" msgid "never " msgstr "ûL" -#: g10/keylist.c:186 +#: g10/keylist.c:201 msgid "Critical signature policy: " msgstr "ñhG " -#: g10/keylist.c:188 +#: g10/keylist.c:203 msgid "Signature policy: " msgstr "ñhG " -#: g10/keylist.c:227 +#: g10/keylist.c:242 msgid "Critical preferred keyserver: " msgstr "" -#: g10/keylist.c:275 g10/keylist.c:319 +#: g10/keylist.c:291 g10/keylist.c:335 msgid "WARNING: invalid notation data found\n" msgstr "ĵiGLĪаO\n" -#: g10/keylist.c:293 +#: g10/keylist.c:309 msgid "Critical signature notation: " msgstr "ñаOG " -#: g10/keylist.c:295 +#: g10/keylist.c:311 msgid "Signature notation: " msgstr "ñаOG " -#: g10/keylist.c:306 +#: g10/keylist.c:322 msgid "not human readable" msgstr "OHŪo" -#: g10/keylist.c:407 +#: g10/keylist.c:423 msgid "Keyring" msgstr "_Ͱ" -#: g10/keylist.c:713 +#: g10/keylist.c:729 #, fuzzy, c-format msgid "expired: %s)" msgstr " [ĴG %s]" -#: g10/keylist.c:1415 +#: g10/keylist.c:1431 msgid "Primary key fingerprint:" msgstr "D_G" -#: g10/keylist.c:1417 +#: g10/keylist.c:1433 msgid " Subkey fingerprint:" msgstr " l_G" -#: g10/keylist.c:1424 +#: g10/keylist.c:1440 msgid " Primary key fingerprint:" msgstr " D_G" -#: g10/keylist.c:1426 +#: g10/keylist.c:1442 msgid " Subkey fingerprint:" msgstr " l_G" -#: g10/keylist.c:1430 g10/keylist.c:1434 +#: g10/keylist.c:1446 g10/keylist.c:1450 #, fuzzy msgid " Key fingerprint =" msgstr " _ =" -#: g10/keylist.c:1501 +#: g10/keylist.c:1517 msgid " Card serial no. =" msgstr "" -#: g10/keyring.c:1242 +#: g10/keyring.c:1245 #, fuzzy, c-format msgid "renaming `%s' to `%s' failed: %s\n" msgstr "iʸ˥ѡG %s\n" -#: g10/keyring.c:1248 +#: g10/keyring.c:1251 msgid "WARNING: 2 files with confidential information exists.\n" msgstr "ĵiG2 ɮצsbۥ٬ުTC\n" -#: g10/keyring.c:1250 +#: g10/keyring.c:1253 #, c-format msgid "%s is the unchanged one\n" msgstr "%s OSܪ@\n" -#: g10/keyring.c:1251 +#: g10/keyring.c:1254 #, c-format msgid "%s is the new one\n" msgstr "%s Os@\n" -#: g10/keyring.c:1252 +#: g10/keyring.c:1255 msgid "Please fix this possible security flaw\n" msgstr "Э׸ɳoӥi઺wʵ_\n" -#: g10/keyring.c:1372 +#: g10/keyring.c:1375 #, fuzzy, c-format msgid "caching keyring `%s'\n" msgstr "bˬd_Ͱ `%s'\n" -#: g10/keyring.c:1418 +#: g10/keyring.c:1421 #, fuzzy, c-format msgid "%lu keys cached so far (%lu signatures)\n" msgstr "ثeˬdF %lu _ ( %lu ñ)\n" -#: g10/keyring.c:1430 +#: g10/keyring.c:1433 #, fuzzy, c-format msgid "%lu keys cached (%lu signatures)\n" msgstr "ثeˬdF %lu _ ( %lu ñ)\n" -#: g10/keyring.c:1501 +#: g10/keyring.c:1504 #, c-format msgid "%s: keyring created\n" msgstr "%s: _Ͱwإ\n" @@ -4184,11 +4191,6 @@ msgstr " msgid "\"%s\" not a key ID: skipping\n" msgstr "" -#: g10/keyserver.c:1414 -#, fuzzy, c-format -msgid "key \"%s\" not found: %s\n" -msgstr "䤣 `%s' _G %s\n" - #: g10/keyserver.c:1578 #, fuzzy, c-format msgid "WARNING: unable to refresh key %s via %s: %s\n" @@ -4618,7 +4620,8 @@ msgid "problem with the agent: agent returns 0x%lx\n" msgstr "Nz{DGNz{Ǧ^ 0x%lx\n" #: g10/passphrase.c:1053 g10/passphrase.c:1211 -msgid "can't query password in batchmode\n" +#, fuzzy +msgid "can't query password in batch mode\n" msgstr "b妸ҦLk߰ݱKX\n" #: g10/passphrase.c:1058 g10/passphrase.c:1216 @@ -4695,23 +4698,23 @@ msgstr " msgid "unable to display photo ID!\n" msgstr "LkܷӤ ID I\n" -#: g10/pkclist.c:61 g10/revoke.c:577 +#: g10/pkclist.c:61 g10/revoke.c:580 msgid "No reason specified" msgstr "w]" -#: g10/pkclist.c:63 g10/revoke.c:579 +#: g10/pkclist.c:63 g10/revoke.c:582 msgid "Key is superseded" msgstr "_QNF" -#: g10/pkclist.c:65 g10/revoke.c:578 +#: g10/pkclist.c:65 g10/revoke.c:581 msgid "Key has been compromised" msgstr "_wgQ|F" -#: g10/pkclist.c:67 g10/revoke.c:580 +#: g10/pkclist.c:67 g10/revoke.c:583 msgid "Key is no longer used" msgstr "_AQϥΤF" -#: g10/pkclist.c:69 g10/revoke.c:581 +#: g10/pkclist.c:69 g10/revoke.c:584 msgid "User ID is no longer valid" msgstr "ϥΪ ID AĤF" @@ -4782,7 +4785,7 @@ msgid "" "\n" msgstr "" -#: g10/pkclist.c:298 g10/revoke.c:606 +#: g10/pkclist.c:298 g10/revoke.c:609 msgid "Your decision? " msgstr "pMwOƻH " @@ -4933,8 +4936,8 @@ msgid "skipped: public key already set\n" msgstr "wLG_wgQ]LF\n" #: g10/pkclist.c:903 -#, c-format -msgid "unknown default recipient `%s'\n" +#, fuzzy, c-format +msgid "unknown default recipient \"%s\"\n" msgstr "w] `%s'\n" #: g10/pkclist.c:948 @@ -4963,15 +4966,15 @@ msgstr " msgid "Please enter name of data file: " msgstr "пJɪW١G " -#: g10/plaintext.c:476 +#: g10/plaintext.c:477 msgid "reading stdin ...\n" msgstr "bqзǿJŪ ...\n" -#: g10/plaintext.c:510 +#: g10/plaintext.c:511 msgid "no signed data\n" msgstr "SQñpL\n" -#: g10/plaintext.c:524 +#: g10/plaintext.c:525 #, c-format msgid "can't open signed data `%s'\n" msgstr "Lk}ҳQñpL `%s'\n" @@ -5009,7 +5012,7 @@ msgid "NOTE: key has been revoked" msgstr "Ъ`NG_wgQMPF" #: g10/revoke.c:103 g10/revoke.c:117 g10/revoke.c:129 g10/revoke.c:175 -#: g10/revoke.c:187 g10/revoke.c:542 +#: g10/revoke.c:187 g10/revoke.c:545 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet ѡG %s\n" @@ -5019,65 +5022,65 @@ msgstr "build_packet msgid "key %s has no user IDs\n" msgstr "_ %08lX: SϥΪ ID\n" -#: g10/revoke.c:271 +#: g10/revoke.c:272 msgid "To be revoked by:\n" msgstr "NQMPG\n" -#: g10/revoke.c:275 +#: g10/revoke.c:276 msgid "(This is a sensitive revocation key)\n" msgstr "]oOKMP_^\n" -#: g10/revoke.c:279 +#: g10/revoke.c:280 #, fuzzy msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "no_إߤ@MPҶܡH " -#: g10/revoke.c:292 g10/revoke.c:508 +#: g10/revoke.c:293 g10/revoke.c:511 msgid "ASCII armored output forced.\n" msgstr "wjϥ ASCII ʸ˹LXC\n" -#: g10/revoke.c:306 g10/revoke.c:522 +#: g10/revoke.c:307 g10/revoke.c:525 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet ѡG %s\n" -#: g10/revoke.c:369 +#: g10/revoke.c:370 msgid "Revocation certificate created.\n" msgstr "wإߺMPҡC\n" -#: g10/revoke.c:375 -#, c-format -msgid "no revocation keys found for `%s'\n" +#: g10/revoke.c:376 +#, fuzzy, c-format +msgid "no revocation keys found for \"%s\"\n" msgstr "S `%s' ΪMP_\n" -#: g10/revoke.c:429 -#, c-format -msgid "secret key `%s' not found: %s\n" +#: g10/revoke.c:432 +#, fuzzy, c-format +msgid "secret key \"%s\" not found: %s\n" msgstr "䤣 `%s' p_G %s\n" -#: g10/revoke.c:458 +#: g10/revoke.c:461 #, c-format msgid "no corresponding public key: %s\n" msgstr "S۹_G %s\n" -#: g10/revoke.c:469 +#: g10/revoke.c:472 msgid "public key does not match secret key!\n" msgstr "_Pp_äkXI\n" -#: g10/revoke.c:476 +#: g10/revoke.c:479 #, fuzzy msgid "Create a revocation certificate for this key? (y/N) " msgstr "no_إߤ@MPҶܡH " -#: g10/revoke.c:493 +#: g10/revoke.c:496 msgid "unknown protection algorithm\n" msgstr "O@tk\n" -#: g10/revoke.c:497 +#: g10/revoke.c:500 msgid "NOTE: This key is not protected!\n" msgstr "`NGo_SQO@I\n" -#: g10/revoke.c:548 +#: g10/revoke.c:551 msgid "" "Revocation certificate created.\n" "\n" @@ -5096,33 +5099,33 @@ msgstr "" "OdUpߡGpWCLtΥi|bCLL\n" "{oǸƼȦsbYӨLH]ݱo쪺aI\n" -#: g10/revoke.c:589 +#: g10/revoke.c:592 msgid "Please select the reason for the revocation:\n" msgstr "пܺMP]G\n" -#: g10/revoke.c:599 +#: g10/revoke.c:602 msgid "Cancel" msgstr "" -#: g10/revoke.c:601 +#: g10/revoke.c:604 #, c-format msgid "(Probably you want to select %d here)\n" msgstr "]]\p|Qnbo̿ %d ^\n" -#: g10/revoke.c:642 +#: g10/revoke.c:645 msgid "Enter an optional description; end it with an empty line:\n" msgstr "пJΪyzFHťզCG\n" -#: g10/revoke.c:670 +#: g10/revoke.c:673 #, c-format msgid "Reason for revocation: %s\n" msgstr "MP]G %s\n" -#: g10/revoke.c:672 +#: g10/revoke.c:675 msgid "(No description given)\n" msgstr "]Swyz^\n" -#: g10/revoke.c:677 +#: g10/revoke.c:680 #, fuzzy msgid "Is this okay? (y/N) " msgstr "o˥iHܡH " @@ -5275,58 +5278,51 @@ msgstr "%s ñ msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "pb --pgp2 ҦUϥ PGP 2.x A_Ӱñp\n" -#: g10/sign.c:784 g10/sign.c:1041 +#: g10/sign.c:783 g10/sign.c:1040 #, fuzzy, c-format msgid "writing to file `%s'\n" msgstr "bg `%s'\n" -#: g10/sign.c:808 +#: g10/sign.c:807 #, fuzzy, c-format msgid "" "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "jϥ %s (%d) Kntk|HϦ̰n]w\n" -#: g10/sign.c:900 +#: g10/sign.c:899 msgid "signing:" msgstr "ñpG" -#: g10/sign.c:912 -#, fuzzy, c-format -msgid "can't open file `%s': %s\n" -msgstr "Lk}ɮסG %s\n" - #: g10/sign.c:1006 msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n" msgstr "pb --pgp2 ҦUϥ PGP 2.x A_Ӱñp\n" -#: g10/sign.c:1179 +#: g10/sign.c:1178 #, c-format msgid "%s encryption will be used\n" msgstr "%s [KNQĥ\n" -#: g10/skclist.c:129 g10/skclist.c:185 +#: g10/skclist.c:129 g10/skclist.c:191 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "_QХܬw w Ӹ򰲪HƦr;֥ΡI\n" -#: g10/skclist.c:157 -#, c-format -msgid "skipped `%s': duplicated\n" +#: g10/skclist.c:158 +#, fuzzy, c-format +msgid "skipped \"%s\": duplicated\n" msgstr "`%s' wLGƤF\n" -#: g10/skclist.c:164 g10/skclist.c:172 -#, c-format -msgid "skipped `%s': %s\n" +#: g10/skclist.c:166 g10/skclist.c:176 g10/skclist.c:185 +#, fuzzy, c-format +msgid "skipped \"%s\": %s\n" msgstr "`%s' wLG %s\n" -#: g10/skclist.c:168 +#: g10/skclist.c:171 msgid "skipped: secret key already present\n" msgstr "wLGp_wgsb\n" -#: g10/skclist.c:179 -#, fuzzy, c-format -msgid "" -"skipped `%s': this is a PGP generated Elgamal key which is not secure for " -"signatures!\n" +#: g10/skclist.c:186 +#, fuzzy +msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "`%s' wLGoO@ PGP ͪ ElGamal _AΩñäwI\n" #: g10/tdbdump.c:59 g10/trustdb.c:365 @@ -5953,6 +5949,20 @@ msgstr " msgid "(you may have used the wrong program for this task)\n" msgstr "(]\p{ӰoƤF)\n" +#~ msgid "sorry, can't do this in batch mode\n" +#~ msgstr "pALkb妸Ҧo˰\n" + +#~ msgid "key `%s' not found: %s\n" +#~ msgstr "䤣 `%s' _G %s\n" + +#, fuzzy +#~ msgid "can't create file `%s': %s\n" +#~ msgstr "Lkإ `%s' G %s\n" + +#, fuzzy +#~ msgid "can't open file `%s': %s\n" +#~ msgstr "Lk}ɮסG %s\n" + #, fuzzy #~ msgid " \"" #~ msgstr " Y \"" diff --git a/scripts/mk-w32-dist b/scripts/mk-w32-dist index daa6d72de..f3938eb21 100755 --- a/scripts/mk-w32-dist +++ b/scripts/mk-w32-dist @@ -47,7 +47,7 @@ cp ${bindir}/g10/gpg.exe gpg.exe $STRIP gpg.exe cp ${bindir}/g10/gpgv.exe gpgv.exe $STRIP gpgv.exe -for name in hkp http finger; do +for name in hkp http ldap finger; do cp ${bindir}/keyserver/gpgkeys_$name.exe gpgkeys_$name.exe $STRIP gpgkeys_$name.exe done