diff options
-rw-r--r-- | g10/ChangeLog | 3 | ||||
-rw-r--r-- | g10/keyserver.c | 4 | ||||
-rw-r--r-- | keyserver/ChangeLog | 5 | ||||
-rw-r--r-- | keyserver/gpgkeys_ldap.c | 4 | ||||
-rw-r--r-- | mpi/ChangeLog | 5 | ||||
-rw-r--r-- | mpi/config.links | 11 | ||||
-rw-r--r-- | po/be.po | 352 | ||||
-rw-r--r-- | po/ca.po | 363 | ||||
-rw-r--r-- | po/cs.po | 352 | ||||
-rw-r--r-- | po/da.po | 352 | ||||
-rw-r--r-- | po/de.po | 352 | ||||
-rw-r--r-- | po/el.po | 352 | ||||
-rw-r--r-- | po/eo.po | 352 | ||||
-rw-r--r-- | po/es.po | 352 | ||||
-rw-r--r-- | po/et.po | 352 | ||||
-rw-r--r-- | po/fi.po | 352 | ||||
-rw-r--r-- | po/fr.po | 352 | ||||
-rw-r--r-- | po/gl.po | 352 | ||||
-rw-r--r-- | po/hu.po | 352 | ||||
-rw-r--r-- | po/id.po | 352 | ||||
-rw-r--r-- | po/it.po | 352 | ||||
-rw-r--r-- | po/ja.po | 352 | ||||
-rw-r--r-- | po/nb.po | 366 | ||||
-rw-r--r-- | po/nl.po | 352 | ||||
-rw-r--r-- | po/pl.po | 352 | ||||
-rw-r--r-- | po/pt.po | 352 | ||||
-rw-r--r-- | po/pt_BR.po | 352 | ||||
-rw-r--r-- | po/ro.po | 352 | ||||
-rw-r--r-- | po/ru.po | 352 | ||||
-rw-r--r-- | po/sk.po | 352 | ||||
-rw-r--r-- | po/sv.po | 352 | ||||
-rw-r--r-- | po/tr.po | 352 | ||||
-rw-r--r-- | po/zh_CN.po | 352 | ||||
-rw-r--r-- | po/zh_TW.po | 1098 |
34 files changed, 5220 insertions, 5439 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 523b39791..aaa2274b5 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,5 +1,8 @@ 2008-03-25 Werner Koch <[email protected]> + * keyserver.c (parse_keyrec): Take care of char defaulting to + unsigned when using hextobyte. + * options.skel: Make the default keyserver keys.gnupg.net. 2008-03-23 David Shaw <[email protected]> diff --git a/g10/keyserver.c b/g10/keyserver.c index 227af1afb..adeee5935 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -679,9 +679,9 @@ parse_keyrec(char *keystring) while(*tok) if(tok[0]=='%' && tok[1] && tok[2]) { - if((userid[i]=hextobyte(&tok[1]))==-1) - userid[i]='?'; + int c; + userid[i] = (c=hextobyte(&tok[1])) == -1 ? '?' : c; i++; tok+=3; } diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog index 1ceacb87d..3d4ecc143 100644 --- a/keyserver/ChangeLog +++ b/keyserver/ChangeLog @@ -1,3 +1,8 @@ +2008-03-25 Werner Koch <[email protected]> + + * gpgkeys_ldap.c (build_attrs): Take care of char defaulting to + unsigned when using hextobyte. + 2007-12-17 David Shaw <[email protected]> * Makefile.am: Fix compile error when libcurl is in a nonstandard diff --git a/keyserver/gpgkeys_ldap.c b/keyserver/gpgkeys_ldap.c index 3c6ad81c6..c10c50661 100644 --- a/keyserver/gpgkeys_ldap.c +++ b/keyserver/gpgkeys_ldap.c @@ -536,9 +536,9 @@ build_attrs(LDAPMod ***modlist,char *line) while(*tok) if(tok[0]=='%' && tok[1] && tok[2]) { - if((userid[i]=hextobyte(&tok[1]))==-1) - userid[i]='?'; + int c; + userid[i] = (c=hextobyte(&tok[1])) == -1 ? '?' : c; i++; tok+=3; } diff --git a/mpi/ChangeLog b/mpi/ChangeLog index 750616c38..8c475343c 100644 --- a/mpi/ChangeLog +++ b/mpi/ChangeLog @@ -1,3 +1,8 @@ +2008-03-25 Werner Koch <[email protected]> + + * config.links (mpi_sflags): Powerpc64 needs to come even before + the generic linux powerpc entry. + 2007-10-23 Werner Koch <[email protected]> Switched entire package to GPLv3+. diff --git a/mpi/config.links b/mpi/config.links index 597037424..741c02ee0 100644 --- a/mpi/config.links +++ b/mpi/config.links @@ -214,6 +214,12 @@ case "${host}" in path="m68k/mc68020 m68k" ;; + ppc620-*-* | \ + powerpc64*-*-*) + mpi_sflags="-Wa,-mppc" + path="powerpc64" + ;; + powerpc*-*-linux*) echo '/* configured for powerpc/ELF */' >>./mpi/asm-syntax.h echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h @@ -253,11 +259,6 @@ case "${host}" in mpi_sflags="-Wa,-mppc" path="power powerpc32" ;; - ppc620-*-* | \ - powerpc64*-*-*) - mpi_sflags="-Wa,-mppc" - path="powerpc64" - ;; ppc60[234]*-*-* | \ powerpc*-*-*) mpi_sflags="-Wa,-mppc" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2003-10-30 16:35+0200\n" "Last-Translator: Ales Nyakhaychyk <[email protected]>\n" "Language-Team: Belarusian <[email protected]>\n" @@ -39,9 +39,9 @@ msgstr "немагчыма адкрыць \"%s\"\n" msgid "waiting for lock on `%s'...\n" msgstr "запіс у stdout\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -373,7 +373,7 @@ msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "сакрэтны ключ недаступны" @@ -383,160 +383,160 @@ msgstr "сакрэтны ключ недаступны" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "" -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "непадтрымліваецца" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "за шмат пераваг для \"%c\"\n" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -544,133 +544,133 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Калі ласка, абярыце від ключа, які Вам патрэбны:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Подпіс створаны ў %.*s з выкарыстаньнем %s ID ключа %08lX\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr "" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Калі ласка, абярыце від ключа, які Вам патрэбны:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "невядомы альгарытм сьцісканьня" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "сакрэтны ключ недаступны" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "паказаць гэтую даведку" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Даведка адсутнічае" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "за шмат пераваг для \"%c\"\n" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "стварыць новую пару ключоў" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Загад> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "сакрэтны ключ недаступны" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Нерэчаісны загад (паспрабуйце \"help\")\n" @@ -724,7 +724,7 @@ msgstr "Паўтарыце пароль: " msgid "PIN not correctly repeated; try again" msgstr "" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -740,7 +740,7 @@ msgstr "" msgid "key \"%s\" not found: %s\n" msgstr "грамадскі ключ ня знойдзены" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1364,431 +1364,431 @@ msgstr "" msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не дазваляецца разам з %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "запіс у stdout\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [назва_файла]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [назва_файла]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [назва_файла]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [назва_файла]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [назва_файла]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [назва_файла]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [назва_файла]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [загады]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[назва_файла]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "" @@ -2284,7 +2284,7 @@ msgid "writing to `%s'\n" msgstr "" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "" @@ -2374,7 +2374,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "сакрэтны ключ недаступны" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "" @@ -2494,40 +2494,40 @@ msgstr "" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "%s: тэчка створана\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "" @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.0\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2005-02-04 02:04+0100\n" "Last-Translator: Jordi Mallach <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -59,9 +59,9 @@ msgstr "no s'ha pogut obrir «%s»\n" msgid "waiting for lock on `%s'...\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -413,7 +413,7 @@ msgstr "" "hi ha un caràcter «quoted printable» en l'armadura - probablement s'ha " "utilitzat un MTA amb errors\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "la clau secreta no està disponible" @@ -425,31 +425,31 @@ msgstr "" # Destès? ivb # Desatès, sí. jm -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, 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:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "La vostra selecció? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[no establert]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "home" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "dóna" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "no especificat" @@ -457,134 +457,134 @@ msgstr "no especificat" # Probablement és una clau, femení. jm # Werner FIXME: please add translator comment saying *what* is # uncompressed so we know the gender. jm -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "no forçat" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "forçat" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "no hi ha cap clau pública corresponent: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "preferències actualitzades" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "error: l'empremta digital és invàlida\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "Empremta digital:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "error: l'empremta digital és invàlida\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "La generació de claus ha fallat: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "no s'han trobat dades OpenPGP vàlides.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "s'ha produït un error mentre s'escrivia l'anell secret «%s»: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -592,135 +592,135 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Seleccioneu quin tipus de clau voleu:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr "" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "La selecció és invàlida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Seleccioneu la raó de la revocació:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "l'algorisme de protecció és desconegut\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Les parts secretes de la clau primària no estan disponibles.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ix del menú" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "les ordres entren en conflicte\n" # «pantalla» o «ajuda»? ivb # «ajuda», evidentment. jm -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "mostra aquesta ajuda" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "La clau és disponible en: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "canvia la data de caducitat" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "canvia la confiança" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "mostra empremta" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "genera un nou parell de claus" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Ordre> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "les ordres entren en conflicte\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "L'ordre no és vàlida (proveu «help»)\n" @@ -778,7 +778,7 @@ msgstr "Repetiu la contrasenya: " msgid "PIN not correctly repeated; try again" msgstr "la contrasenya no s'ha repetit correctament; torneu a intentar-ho" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -794,7 +794,7 @@ msgstr "--output no funciona per a aquesta ordre\n" msgid "key \"%s\" not found: %s\n" msgstr "no s'ha trobat la clau «%s»: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1462,444 +1462,444 @@ msgstr "mostra en quin anell de claus està una clau llistada" msgid "show expiration dates during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: es descarta el fitxer d'opcions predeterminades antic «%s»\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existeix el fitxer d'opcions predeterminades «%s»\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "fitxer d'opcions «%s»: %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "s'estan llegint opcions de «%s»\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no és per a ús normal!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "la extensió de xifrat «%s» no s'ha carregat per tindre permissos insegurs\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no s'ha pogut analitzar sintàcticament la URI del servidor de claus\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "no s'ha pogut fixar l'exec-path a %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "AVÍS: el programa podria crear un fitxer core!\n" # FIXME: preferència? jm # Ho discutírem en la llista, segur. Deu ser als arxius. ivb -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVÍS: %s té preferència sobre %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no és permés amb %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no té sentit amb %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent no està disponible en aquesta sessió\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "s'està escrivint la clau secreta a «%s»\n" # clares -> en clar? ivb -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "només podeu fer signatures separades o en clar en el mode --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "no podeu signar i xifrar al mateix temps en el mode --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "heu d'utilitzar fitxers (i no un conducte) mentre treballeu amb --pgp2 " "habilitat.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "xifrar un missatge en mode --pgp2 requereix el xifratge IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "l'algorisme de resum seleccionat no és vàlid\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algorisme de resum de certificació seleccionat no és vàlid\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ha de ser major que 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ha de ser major que 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth ha d'estar en el rang 1 a 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-check-level és invàlid; ha de ser 0, 1, 2 o 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "default-check-level és invàlid; ha de ser 0, 1, 2 o 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el mode S2K simple (0) no és gens recomanable\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "el mode S2K és invàlid; ha de ser 0, 1 o 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "les preferències per defecte són invàlides\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "les preferències personals de xifrat són invàlides\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "les preferències personals de digest són invàlides\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "les preferències personals de compressió són invàlides\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s encara no funciona amb %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "no podeu usar l'algorisme de xifratge «%s» mentre esteu en mode %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "no podeu usar l'algorisme de resum %s mentre esteu en mode %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "no podeu usar l'algorisme de compressió %s mentre esteu en mode %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "no s'ha pogut inicialitzar la base de dades de confiança: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVÍS: s'han donat destinataris (-r) sense usar xifratge de clau pública\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nom_del_fitxer]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nom_del_fitxer]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "ha fallat el desxifratge: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nom_del_fitxer]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "no podeu usar %s mentre esteu en mode %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nom_del_fitxer]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "no podeu usar %s mentre esteu en mode %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom_del_fitxer]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nom_del_fitxer]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nom_del_fitxer]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [ordres]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [user-id] [anell]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'enviament al servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la recepció des del servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "l'exportació de la clau ha fallat: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "ha fallat la cerca al servidor de claus: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "ha fallat el refresc des del servidor de claus: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "no s'ha pogut llevar l'armadura: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "no s'ha pogut crear l'armadura: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "l'algoritme de dispersió és invàlid «%s»\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nom_del_fitxer]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Endavant, escriviu el missatge...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "la URL de política de certificació donada no és vàlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" @@ -2135,8 +2135,7 @@ msgstr "" " Açò és útil per a la verificació d'un «rol», quan signeu la clau d'un\n" " usuari amb pseudònim.\n" "\n" -"«2» significa que heu fet algunes comprovacions de la clau. Per exemple, " -"açò\n" +"«2» significa que heu fet algunes comprovacions de la clau. Per exemple, açò\n" " pot significar que heu verificat la emprenta digital de la clau i " "verificat\n" " l'ID d'usuari en la clau amb el photo ID.\n" @@ -2506,7 +2505,7 @@ msgid "writing to `%s'\n" msgstr "s'està escrivint en «%s»\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "error mentre s'escrivia l'anell «%s»: %s\n" @@ -2596,7 +2595,7 @@ msgstr "clau %08lX: clau secreta amb xifrat %d no vàlid - es descarta\n" msgid "importing secret keys not allowed\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "no hi ha anell secret predeterminat: %s\n" @@ -2729,46 +2728,46 @@ msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "" "clau %08lX: la classe de signatura és inesperada (0x%02x) - es descarta\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "clau %08lX: s'ha detectat un ID d'usuari duplicat - es fusiona\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVÍS: la clau %08lX pot estar revocada: s'adquireix la clau de revocació %" "08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVÍS: la clau %08lX pot estar revocada: la clau de revocació %08lX no està " "present.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "clau %08lX: s'hi ha afegit el certificat de revocació «%s»\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "clau %08lX: s'ha afegit la signatura de clau directa\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "la clau pública no coincideix amb la clau secreta!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "es descarta: la clau secreta ja és present\n" @@ -5903,8 +5902,8 @@ msgstr "es descarta: la clau secreta ja és present\n" #, 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" +"es descarta «%s»: és una clau ElGamal generada per PGP que no és segura per a " +"signatures!\n" #: g10/tdbdump.c:58 g10/trustdb.c:364 #, c-format @@ -6089,8 +6088,8 @@ msgstr "%s: no s'ha pogut afegir un registre: %s\n" #: g10/tdbio.c:1502 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" -"la base de dades de confiança està corrompuda; per favor, executeu «gpg --" -"fix-trustdb».\n" +"la base de dades de confiança està corrompuda; per favor, executeu «gpg --fix-" +"trustdb».\n" #: g10/textfilter.c:147 #, c-format @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.3.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-11-26 09:12+0200\n" "Last-Translator: Roman Pavlik <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" @@ -39,9 +39,9 @@ msgstr "nelze zam��t `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "zapisuji tajn� kl�� do `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -384,7 +384,7 @@ msgstr "" "neplatn� znak (quoted-printable) v ASCII k�dov�n� - pravd�podobn� byl pou�it " "�patn� MTA\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGp karta nen� dostupn�: %s\n" @@ -394,153 +394,153 @@ msgstr "OpenPGp karta nen� dostupn�: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "Nalezena OpenPGP karta ��slo %s\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "nelze prov�st v d�vkov�m m�du\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "V� v�b�r? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[nen� nastaven]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "mu�" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "�ena" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "neuvedeno" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "nen� vy�adov�no" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "vy�adov�no" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Chyba: V sou�asn� verzi je povolenou pouze plain ASCII.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Chyba: Znak \"<\" nelze pou��t.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Chyba: V�ce mezer nen� povoleno.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "P��jmen� dr�itele karty: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Jm�no (k�estn�) dr�itele karty: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Chyba: jm�no a p��jmen� je p��li� dlouh� (limit je %d znak�).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL pro z�sk�n� ve�ejn�ho kl��e: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Chyba: URL je p��li� dlouh� (limit je %d znak�).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "chyba p�i �ten� `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Login (jm�nu ��tu): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Chyba: Login je p��li� dlouh� (limit je %d znak�).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Priv�tn� DO data: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Chyba: Priv�tn� DO je p��li� dlouh� (limit je %d znak�).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Jazykov� p�edvolby: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Chyba: neplatn� d�lka �etezce s p�edvolbami.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Chyba: neplatn� znak v �et�zci s p�edvolbami\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Zadejte pohlav�: M - mu�sk�, F - �ensk� nebo stisn�te mezern�k: " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Chyba: neplatn� odpov��.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA fingerprint: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Chyba: nespr�vn� naform�tovan� fingerprint.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "operace s kl��em nen� mo�n�: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "toto nen� OpenPGP karta" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "chyba p�i z�sk�n� informac� o aktu�ln�m kl��i: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "P�epsat existuj�c� kl��? (a/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Vytvo�it z�lohu �ifrovac�ho kl��e mimo kartu? (A/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "P�epsat existuj�c� kl��e? (a/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -551,120 +551,120 @@ msgstr "" " PIN = `%s' PIN administr�tora = `%s'\n" "Toto nastaven� m��ete zm�nit p��kazem --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Pros�m, vyberte druh kl��e, kter� chcete generovat:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Podepisovac� kl��\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) �ifrovac� kl��\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Autentiza�n� kl��\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Neplatn� v�b�r.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Pros�m vyberte m�sto pro uchov�n� kl��e:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "nezn�m� algoritmus pro ochranu kl��e\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "tajn� ��sti kl�e nejsou dostupn�\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "tajn� kl�� je na kart� ulo�en\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ukon�it toto menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "zobraz administr�torsk� p��kazy" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "uk�zat tuto pomoc" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "vypi� v�echna dostupn� data" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "zm�n� jm�no majitele karty" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "zm�n� URL pro z�sk�n� kl��e" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "z�sk� kl�� specifikovan� v URL karty" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "zm�nit login name" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "zm�nit jazykov� p�edvolby" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "zm�n� pohlav� dr�itele karty" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "vypsat fingerprint certifika�n� autority" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "zapnout/vypnout po�adov�n� PINu p�i ka�d� self-sign operaci" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "vytvo�it nov� p�r kl���" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "nab�dka pro zm�nu anebo odblokov�n� PINu" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "ov�� PIN a vypi� v�echna data" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "P��kaz> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "pouze administr�torsk� p��kazy\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "administr�torsk� p��kazy jsou povoleny\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "administr�torsk� p��kazy nejsou povoleny\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Neplatn� p��kaz (zkuste \"help\")\n" @@ -721,7 +721,7 @@ msgstr "Opakujte tento PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN nen� zopakov�n spr�vn�; zkuste to znovu" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -737,7 +737,7 @@ msgstr "--output pro tento p��kaz nen� platn�\n" msgid "key \"%s\" not found: %s\n" msgstr "kl�� \"%s\" nenalezen: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1395,436 +1395,436 @@ msgstr "p�epnout mezi vypisem seznamu tajn�ch a ve�ejn�ch kl���" msgid "show expiration dates during signature listings" msgstr "V souboru tajn�ch kl��� chyb� odpov�daj�c� podpis\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZN�MKA: star� implicitn� soubor s mo�nostmi `%s ignorov�n'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZN�MKA: neexistuje implicitn� soubor s mo�nostmi `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "soubor s mo�nostmi `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "�tu mo�nosti z `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZN�MKA: %s nen� pro norm�ln� pou�it�!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "�ifra `%s' nebyla nahr�na, proto�e p��stupov� pr�va nejsou nastavena " "bezpe�n�\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nen� platn� doba expirace podpisu\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nen� platn� znakov� sada\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "nelze zpracovat URL serveru kl���\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn� parametr pro server kl���\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "neplatn� parametr pro server kl���\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn� parametr pro import\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "neplatn� parametr pro import\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn� parametr pro export\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "neplatn� parametr pro export\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn� parametr pro v�pis\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "neplatn� parametr pro v�pis\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nen� platn� doba expirace podpisu\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan� URL preferovan�ho serveru kl��� je neplat�\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nen� platn� doba expirace podpisu\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nen� platn� doba expirace podpisu\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn� parametr pro ov��en�\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "neplatn� parametr pro ov��en�\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nelze nastavit exec-path na %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn� parametr pro ov��en�\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "VAROV�N�: program m��e vytvo�it soubor core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROV�N�: %s p�ep��e %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nen� dovoleno pou��vat %s s %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ned�v� s %s smysl!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "POZN�MKA: %s nen� v t�to verzi dostupn�\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nelze spustit s nebezpe�nou pam�t� vzhledem k %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "v m�du --pgp2 m��ete vytv��et pouze odd�len� podpisy nebo podpisy �iteln� " "jako text\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "v m�du --pgp2 nelze sou�asn� �ifrovat a podepisovat\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "v m�du --pgp2 mus�te pou��t soubor (ne rouru).\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "�ifrov�n� zpr�v v m�du --pgp2 vy�aduje algoritmus IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "vybran� �ifrovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "vybran� hashovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "vybran� komprimovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran� hashovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "polo�ka completes-needed mus� b�t v�t�� ne� 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "polo�ka marginals-needed mus� b�t v�t�� ne� 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "polo�ka max-cert-depth mus� b�t v rozmez� od 1 do 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "neplatn� implicitn� �rove� certifikace (default-cert-level); mus� b�t 0, 1, " "2 nebo 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" "neplatn� minim�ln� �rove� certifikace (min-cert-level); mus� b�t 0, 1, 2 " "nebo 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZN�MKA: jednoduch� m�d S2K (0) je d�razn� nedoporu�ov�n\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatn� m�d S2K; mus� b�t 0, 1 nebo 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "neplatn� defaultn� p�edvolby\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "neplatn� u�ivatelsk� p�edvolby pro �ifrov�n�\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "neplatn� u�ivatelsk� p�edvolby pro hashov�n�\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "neplatn� u�ivatelsk� p�edvolby pro komprimaci\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s dosud nen� funk�n� s %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "pou�it� �ifrovac�ho algoritmu `%s' v m�du %s dovoleno\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "pou�it� hashovac�ho algoritmu `%s' v m�du %s dovoleno\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "pou�it� komprima�n�ho algoritmu `%s' v m�du %s dovoleno\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemohu inicializovat datab�zi d�v�ry: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROV�N�: specifikov�n adres�t (-r) bez pou�it� �ifrov�n� s ve�ejn�m kl��em\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [jm�no souboru]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [jm�no souboru]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symetrick� �ifrov�n� `%s' se nepovedlo: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [jm�no souboru]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [jm�no souboru]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nelze pou��t --symmetric --encrypt s p��kazem --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "nelze pou��t --symmetric --encrypt v m�du %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [jm�no souboru]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [jm�no souboru]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [jm�no souboru]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nelze pou��t --symmetric --sign --encrypt s p��kazem --s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "nelze pou��t --symmetric --sign --encrypt v m�du %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [jm�no souboru]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [jm�no souboru]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [jm�no souboru]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id u�ivatele" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id u�ivatele" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id u�ivatele [p��kazy]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id u�ivatele] [soubor s kl��i (keyring)]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "odesl�n� na keyserver se nezda�ilo: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "z�sk�n� dat z keyserveru se nezda�ilo: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "export kl��e se nepoda�il: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "hled�n� na keyserveru se nezda�ilo: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh dat na keyserveru se nezda�il: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "dek�dov�n� z ASCII form�tu selhalo: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "k�dov�n� do ASCII form�tu selhalo: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn� hashovac� algoritmus `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[jm�no souboru]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Za�n�te ps�t svou zpr�vu ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "zadan� URL pro certifika�n� politiku je neplatn�\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "zadan� URL pro podepisovac� politiku je neplatn�\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan� URL preferovan�ho serveru kl��� je neplat�\n" @@ -2428,7 +2428,7 @@ msgid "writing to `%s'\n" msgstr "zapisuji do '%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "chyba p�i z�pisu souboru kl��� (keyring) `%s': %s\n" @@ -2517,7 +2517,7 @@ msgstr "kl�� %s: tajn� kl�� s neplatnou �ifrou %d - p�esko�eno\n" msgid "importing secret keys not allowed\n" msgstr "import tajn�ch kl��� nen� povolen\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "nen� nastaven implicitn� soubor tajn�ch kl��� %s\n" @@ -2639,41 +2639,41 @@ msgstr "kl�� %s: podpis podkl��e na �patn�m m�st� - p�esko�eno \n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "kl�� %s: neo�ek�van� podpisov� t��da (0x%02X) - p�esko�eno\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "kl�� %s: objeven duplikovan� identifik�tor u�ivatele - slou�en\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "VAROV�N�: kl�� %s m��e b�t revokov�n: zkou��m z�skat revoka�n� kl�� %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "VAROV�N�: kl�� %s m��e b�t revokov�n: revoka�n� kl�� %s nenalezen.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "kl�� %s: \"%s\" p�id�n revoka�n� certifik�t\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "kl�� %s: podpis kl��e j�m sam�m (direct key signature) p�id�n\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "POZN�MKA: S/N kl��e neodpov�d� S/N karty\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "POZN�MKA: prim�rn� kl�� je online a je ulo�en na kart�\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "POZN�MKA: sekund�rn� kl�� je online a je ulo�en na kart�\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2003-12-03 16:11+0100\n" "Last-Translator: Birger Langkjer <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" @@ -40,9 +40,9 @@ msgstr "kan ikke �bne `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -387,7 +387,7 @@ msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "quoted printable-tegn i panser - m�ske pga. en fejlbeh�ftet MTA\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "hemmelig n�gle ikke tilg�ngelig" @@ -397,166 +397,166 @@ msgstr "hemmelig n�gle ikke tilg�ngelig" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Dit valg? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "sl�til" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "sl�til" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "ikke bearbejdet" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "skriver offentligt certifikat til '%s'\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "fejl ved l�sning af '%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "vis pr�ferencer" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Ugyldige bogstaver i navn\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Ugyldige bogstaver i navn\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "fejl i trailerlinie\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "Fingeraftryk:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "fejl i trailerlinie\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "p�kl�dning af beskyttelse fejlede: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "ingen gyldig OpenPGP data fundet.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "fejl ved skrivning af n�glering `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 #, fuzzy msgid "Replace existing key? (y/N) " msgstr "Vil du gerne signere? " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 #, fuzzy msgid "Replace existing keys? (y/N) " msgstr "Vil du gerne signere? " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -564,136 +564,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "V�lg venligst hvilken slags n�gle du vil have:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Denne n�gle er ikke beskyttet.\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) ElGamal (krypt�r kun)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Ugyldigt valg.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "rev- forkert n�gletilbagekald\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "ukendt kompressionsalgoritme" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "hemmelig n�gle ikke tilg�ngelig" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "udelod: hemmelig n�gle er allerede tilstede\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "afslut denne menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "vis denne hj�lp" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Ingen hj�lp tilg�ngelig" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "�ndr udl�bsdatoen" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "vis pr�ferencer" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "vis fingeraftryk" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "gener�r et nyt n�glepar" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "" -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "" @@ -751,7 +751,7 @@ msgstr "Gentag kodes�tning: " msgid "PIN not correctly repeated; try again" msgstr "kodes�tningen blev ikke ordentlig gentaget; pr�v igen.\n" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -767,7 +767,7 @@ msgstr "" msgid "key \"%s\" not found: %s\n" msgstr "%s: bruger ikke fundet: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, fuzzy, c-format msgid "error reading keyblock: %s\n" @@ -1397,447 +1397,447 @@ msgstr "skift imellem hemmelig og offentlig n�gle visning" msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "alternativfil`%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "l�ser indstillinger fra `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTITS: %s er ikke til normal brug!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke et gyldigt tegns�t\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldigt tegns�t\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "import�r n�gler fra en n�gleserver: %s\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "ugyldig n�glering" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 #, fuzzy msgid "invalid import options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 #, fuzzy msgid "invalid export options\n" msgstr "ugyldig n�glering" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s er ikke et gyldigt tegns�t\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s er ikke et gyldigt tegns�t\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s er ikke et gyldigt tegns�t\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "ugyldig n�glering" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ikke tilladt med %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er meningsl�s sammen med %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "RSA n�gle kan ikke bruges i denne version\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "valgte resum�algoritme er ugyldig\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "valgte resum�algoritme er ugyldig\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ugyldig S2K modus; skal v�re 0, 1 el. 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ugyldig S2K modus; skal v�re 0, 1 el. 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: simpel S2K modus (0) frar�des p� det skarpeste\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K modus; skal v�re 0, 1 el. 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid default preferences\n" msgstr "vis pr�ferencer" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "vis pr�ferencer" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "vis pr�ferencer" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "vis pr�ferencer" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s er meningsl�s sammen med %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "valgte cifferalgoritme er ugyldig\n" # er det klogt at overs�tte TrustDB? -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [filnavn (som gemmes)]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn (som krypteres)]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [filnavn (som signeres)]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn (som dekrypteres)]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key bruger-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key bruger-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key bruger-id [kommandoer]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [bruger-id] [n�glering]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "p�kl�dning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "p�kl�dning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "p�kl�dning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "signering fejlede: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "p�kl�dning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hash-algoritme `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "G� til sagen og skriv meddelelsen ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" @@ -2341,7 +2341,7 @@ msgid "writing to `%s'\n" msgstr "skriver til `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "fejl ved skrivning af n�glering `%s': %s\n" @@ -2431,7 +2431,7 @@ msgstr "n�gle %08lX: ikke en rfc2440 n�gle - udeladt\n" msgid "importing secret keys not allowed\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, fuzzy, c-format msgid "no default secret keyring: %s\n" msgstr "ingen standard offentlig n�glering\n" @@ -2551,41 +2551,41 @@ msgstr "n�gle %08lX: ikke en rfc2440 n�gle - udeladt\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "n�gle %08lX: ikke en rfc2440 n�gle - udeladt\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "ADVARSEL: Denne n�gle er blevet annulleret af dets ejer!\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "ADVARSEL: Denne n�gle er blevet annulleret af dets ejer!\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "n�gle %08lX: offentlig n�gle importeret\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "n�gle %08lX: offentlig n�gle importeret\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "udelod: hemmelig n�gle er allerede tilstede\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "udelod: hemmelig n�gle er allerede tilstede\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.4.8\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-12-19 17:35+0100\n" "Last-Translator: Walter Koch <[email protected]>\n" "Language-Team: German <[email protected]>\n" @@ -41,9 +41,9 @@ msgstr "'%s' kann nicht gesperrt werden: %s\n" msgid "waiting for lock on `%s'...\n" msgstr "es wird auf die Sperre `%s' gewartet...\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -387,7 +387,7 @@ msgstr "" "\"quoted printable\" Zeichen in der ASCII-Hülle gefunden - möglicherweise\n" " war ein fehlerhafter Email-Transporter(\"MTA\") die Ursache\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP Karte ist nicht vorhanden: %s\n" @@ -397,155 +397,155 @@ msgstr "OpenPGP Karte ist nicht vorhanden: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP Karte Nr. %s erkannt\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "Dies kann im Batchmodus nicht durchgeführt werden.\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Ihre Auswahl? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[nicht gesetzt]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "männlich" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "weiblich" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "unbestimmt" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "nicht zwingend" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "zwingend" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Fehler: Nur reines ASCII ist derzeit erlaubt.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Fehler: Das Zeichen \"<\" kann nicht benutzt werden.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Fehler: Doppelte Leerzeichen sind nicht erlaubt.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Familienname des Kartenbesitzers:" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Vorname des Kartenbesitzers:" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" "Fehler: Der zusammengesetzte Name ist zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL um den öffentlichen Schlüssel zu holen: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Fehler: URL ist zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "Fehler beim Lesen von `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Logindaten (Kontenname): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Fehler: Logindaten sind zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Geheime DO-Daten: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Fehler: Geheime DO-Daten sind zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Spracheinstellungen" -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Fehler: Ungültige Länge der Einstellungs-Zeichenfolge.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Fehler: Ungültige Zeichen in der Einstellungs-Zeichenfolge\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Geschlecht: (Männlich (M), Weiblich (F) oder Leerzeichen): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Fehler: ungültige Antwort.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA-Fingerabdruck: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fehler: ungültig geformter Fingerabdruck.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "Schlüsseloperation nicht möglich: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "Keine gültige OpenPGP-Karte" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "Fehler beim Holen der aktuellen Schlüsselinfo: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Vorhandenen Schlüssel ersetzen? (j/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Sicherung des Verschlüsselungsschlüssel außerhalb der Karte erstellen? (J/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Vorhandene Schlüssel ersetzen? (j/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -556,120 +556,120 @@ msgstr "" " PIN = `%s' Admin-PIN = `%s'\n" "Sie sollten sie mittels des Befehls --change-pin ändern\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Bitte wählen Sie die Art des Schlüssel, der erzeugt werden soll:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Unterschriften-Schlüssel\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Verschlüsselungs-Schlüssel\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Authentisierungs-Schlüssel\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Ungültige Auswahl.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Wählen Sie den Speicherort für den Schlüssel:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "Unbekanntes Schlüssel-Schutzverfahren\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "Geheime Teile des Schlüssels sind nicht vorhanden\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "geheimer Schlüssel ist bereits auf einer Karte gespeichert\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "Menü verlassen" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "Zeige Admin-Befehle" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "Diese Hilfe zeigen" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "Alle vorhandenen Daten auflisten" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "Kartenbesitzernamen ändern" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "Schlüssel-holen-URL ändern" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "Holen des Schlüssels mittels der URL auf der Karte" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "Ändern der Logindaten" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "Ändern der Spracheinstellungen" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "Ändern des Geschlechts des Kartenbesitzers" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "Ändern des CA-Fingerabdrucks" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "Umschalte des \"Signature-force-PIN\"-Schalters" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "neue Schlüssel erzeugen" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "Menü für Ändern oder Entsperren der PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "überprüfe die PIN und liste alle Daten auf" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Befehl> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "nur-Admin Befehl\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Admin-Befehle sind erlaubt\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Admin-Befehle sind nicht erlaubt\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Ungültiger Befehl (versuchen Sie's mal mit \"help\")\n" @@ -727,7 +727,7 @@ msgstr "Geben Sie die PIN nochmal ein: " msgid "PIN not correctly repeated; try again" msgstr "PIN wurde nicht richtig wiederholt; noch einmal versuchen" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -743,7 +743,7 @@ msgstr "--output funktioniert nicht bei diesem Befehl\n" msgid "key \"%s\" not found: %s\n" msgstr "Schlüssel \"%s\" nicht gefunden: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1397,444 +1397,444 @@ msgstr "Anzeigen des Schlüsselbundes, in dem ein Schlüssel drin ist" msgid "show expiration dates during signature listings" msgstr "Das Ablaufdatum mit den Signaturen anlisten" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "Hinweis: Alte voreingestellte Optionendatei '%s' wurde ignoriert\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "Optionendatei '%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "Hinweis: %s ist nicht für den üblichen Gebrauch gedacht!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "Verschlüsselungserweiterung `%s' wurde wegen unsicherer Zugriffsrechte nicht " "geladen\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' ist kein gültiges Unterschriftablaufdatum\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' ist kein gültiger Zeichensatz\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "Schlüsselserver-URL konnte nicht analysiert werden\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "Ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ungültige Import-Option\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "Ungültige Import-Option\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ungültige Export-Option.\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "Ungültige Export-Option\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ungültige Listen-Option.\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "Ungültige Listen-Option\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "Zeige die Foto-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "Zeige Richtlinien-URLs während der Unterschriftenprüfung" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "Alle Notationen wahrend der Signaturprüfung anzeigen" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "Zeige IETF-Standard-Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "Zeie anwenderseitige Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "" "Die URL für den bevorzugten Schlüsselserver während der " "Unterschriftenprüfung anzeigen" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "Die Gültigkeit der User-ID während der Unterschriftenprüfung anzeigen" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" "Zeige widerrufene und verfallene User-IDs während der Unterschriftenprüfung" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 msgid "show only the primary user ID in signature verification" msgstr "Zeige nur die Hauptuser-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "Prüfe Unterschriftengültigkeit mittels PKA-Daten" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "werte das Vertrauen zu Unterschriften durch gültige PKA-Daten auf" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ungültige Überprüfuns-Option.\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "Ungültige Überprüfungs-Option\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Der Ausführungspfad konnte nicht auf %s gesetzt werden.\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNUNG: %s ersetzt %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s kann nicht zusammen mit %s verwendet werden!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s zusammen mit %s ist nicht sinnvoll!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "HINWEIS: %s ist in dieser Version nicht vorhanden\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "Startet nicht mit unsicherem Speicher, wegen Option %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "Im --pgp2-Modus können Sie nur abgetrennte oder Klartextunterschriften " "machen\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "Im --pgp2-Modus können Sie nicht gleichzeitig unterschreiben und " "verschlüsseln\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "Im --pgp2-Modus müssen Sie Dateien benutzen und können keine Pipes " "verwenden.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "Verschlüssen einer Botschaft benötigt im --pgp2-Modus die IDEA-" "Verschlüsselung\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "Das ausgewählte Verschlüsselungsverfahren ist ungültig\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "Das ausgewählte Komprimierungsverfahren ist ungültig\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed müssen größer als 0 sein\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed müssen größer als 1 sein\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth muß im Bereich 1 bis 255 liegen\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ungültiger \"default-cert-level\"; Wert muß 0, 1, 2 oder 3 sein\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ungültiger \"min-cert-level\"; Wert muß 0, 1, 2 oder 3 sein\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ungültiger \"simple S2K\"-Modus; Wert muß 0, 1 oder 3 sein\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "ungültige Standard-Voreinstellungen\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "ungültige private Verschlüsselungsvoreinstellungen\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "ungültige private Hashvoreinstellungen\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "ungültige private Komprimierungsvoreinstellungen\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s arbeitet noch nicht mit %s zusammen\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "Die Benutzung des Verschlüsselungsverfahren %s ist im %s-Modus nicht " "erlaubt.\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "Die Benutzung der Hashmethode %s ist im %s-Modus nicht erlaubt.\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "Die Benutzung des Komprimierverfahren %s ist im %s-Modus nicht erlaubt.\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "WARNUNG: Empfänger (-r) angegeben ohne Verwendung von Public-Key-Verfahren\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [Dateiname]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [Dateiname]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Symmetrische Entschlüsselung von `%s' fehlgeschlagen: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [Dateiname]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [Dateiname]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" "--symmetric --encrypt kann nicht zusammen mit --s2k-mode 0 verwendet werden\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "Im %s-Modus kann --symmetric --encrypt nicht verwendet werden.\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [Dateiname]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [Dateiname]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [Dateiname]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "--symmetric --sign --encrypt kann nicht zusammen mit --s2k-mode 0 verwendet " "werden\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "Im %s-Modus kann --symmetric --sign --encrypt nicht verwendet werden.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [Dateiname]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [Dateiname]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [Dateiname]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key User-ID" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key User-ID" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key User-ID [Befehle]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [User-ID] [Schlüsselbund]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "Senden an Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Empfangen vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "Schlüsselexport fehlgeschlagen: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "Suche auf dem Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "Entfernen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "Anbringen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "Ungültiges Hashverfahren '%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[Dateiname]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Auf geht's - Botschaft eintippen ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "Die angegebene Zertifikat-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "Die angegebene Unterschriften-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "Die angegebene URL des bevorzugten Schlüsselserver ist ungültig\n" @@ -2455,7 +2455,7 @@ msgid "writing to `%s'\n" msgstr "Schreiben nach '%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "Fehler beim Schreiben des Schlüsselbundes `%s': %s\n" @@ -2546,7 +2546,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "Importieren geheimer Schlüssel ist nicht erlaubt\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "Kein voreingestellter geheimer Schlüsselbund: %s\n" @@ -2673,44 +2673,44 @@ msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "" "Schlüssel %s: unerwartete Unterschriftenklasse (0x%02x) - übersprungen\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "Schlüssel %s: Doppelte User-ID entdeckt - zusammengeführt\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "WARNUNG: Schlüssel %s ist u.U. widerrufen: hole Widerrufschlüssel %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "WARNUNG: Schlüssel %s ist u.U. widerrufen: Widerrufschlüssel %s ist nicht " "vorhanden\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "Schlüssel %s: \"%s\" Widerrufzertifikat hinzugefügt\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "Schlüssel %s: \"direct-key\"-Signaturen hinzugefügt\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" "Hinweis: Eine Schlüsselseriennr stimmt nicht mit derjenigen der Karte " "überein\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "Hinweis: Hauptschlüssel ist online und auf der Karte gespeichert\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "Hinweis: Zweitschlüssel ist online und auf der Karte gespeichert\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.1.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2003-06-27 12:00+0200\n" "Last-Translator: Dokianakis Theofanis <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" @@ -38,9 +38,9 @@ msgstr "�������� ��������� ��� `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "������� ��� �������� �������� ��� `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -389,7 +389,7 @@ msgstr "" "�����������, �� ����������, ���������� ��� �������� - ���� ����� ����� " "������������� MTA\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "�� ������� ������ ��� ����� ���������" @@ -399,166 +399,166 @@ msgstr "�� ������� ������ ��� ����� ���������" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "��� ������ �� ����� ���� �� ��������� ������ (batchmode)\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "� ������� ���; " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "��� ���� ������� �����" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "�� �������������" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "������ ��������� ������� ������: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "������ ���� ��� �������� ��� `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "����������� ��������" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "�� ������� ���������� ��� \"�������\" ��� ��������\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "�� ������� ���������� ��� \"�������\" ��� ��������\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "������: �� ������ ���������\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "���������� ��� fingerprint" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "������: �� ������ ���������\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "� ���������� �������� �������: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "�� �������� ������ OpenPGP ��������.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "�������� �������� �������� ����������� `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -566,136 +566,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "�������� �������� ��� ���� ��� �������� ��� ������:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "�������� ����� ���� %s.\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (��� ������������� ����)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "�� ������ �������.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "�������� �������� ��� ����� ��� ��� ��������:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "�������� ���������� ����������\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "������� ������� ��� ������ �������� ��� ����� ���������.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "������������: ������� ������ ��� �����\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "����������� ����� ��� �����" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "������������� �������\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "���������� ����� ��� ��������" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "������ ��������� ���: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "������ ��� ����������� �����" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "������ ��� ������������ ���������" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "���������� ��� fingerprint" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "���������� ���� ���� ������� ��������" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "������> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "������������� �������\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "������������� �������\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "������� ��� �������� �������� ��� `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "�� ������ ������ (��������� \"help\")\n" @@ -750,7 +750,7 @@ msgstr "����������� �� ����� ������: " msgid "PIN not correctly repeated; try again" msgstr "� ����� ������ ��� ������������ �����. ��������� ����" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -766,7 +766,7 @@ msgstr "--output ��� ���������� ��� ���� ��� ������\n" msgid "key \"%s\" not found: %s\n" msgstr "�� ������ '%s' �� �������: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1421,447 +1421,447 @@ msgstr "���������� ��� ����������� ���� ����� ��������� �� ������" msgid "show expiration dates during signature listings" msgstr "��� ������� ���������� �������� ��� ������� ����������\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "��������: ��������� �� ����� ������ ��������������� �������� `%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "��������: �� �������������� ������ �������� `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "������ �������� `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "�������� �������� ��� `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "��������: �� %s ��� ����� ��� �������� �����!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "� �������� ��� ��������������� \"%s\" ��� ��������� ������ ��������\n" "���������� ������\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "�� %s ��� ����� ������ ��� ����������\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "�� %s ��� ����� ������ ��� ����������\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "�������� ������������ ��� URI ��� ��������� ��������\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: �� ������� �������� ��������\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "�� ������� �������� ��������\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: �� ������� �������� ���������\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "�� ������� �������� ���������\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: �� ������� �������� ��������\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "�� ������� �������� ��������\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: �� ������� �������� ���������\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "�� ������� �������� ���������\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "�� %s ��� ����� ������ ��� ����������\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "�� URL ��������� ��������� ��� ������ ��� ����� ������\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "�� %s ��� ����� ������ ��� ����������\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "�� %s ��� ����� ������ ��� ����������\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: �� ������� �������� ��������\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "�� ������� �������� ��������\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "�������� ������� ��� exec-path �� %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: �� ������� �������� ��������\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "�������������: �� ��������� ���� ������������ ������ core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "�������������: �� %s ����������� �� %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "�� %s ��� ����������� �� �� %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "�� %s ��� ���� ������ ������ ���� �� �� %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "� gpg-agent ��� ����� ���������� �� ���� �� ��������\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "������� ��� �������� �������� ��� `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "�������� �� ������ ����������� � ������� ��������� ���� �� --pgp2 ���������\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "��� �������� �� ���������� ��� �� �������������� ���������� �� --pgp2 " "���������\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "���� ������ ������������ (��� ��� pipes) ���� ��� ��������� --pgp2.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "� ������������� ���� ��������� �� --pgp2 ��������� ������� ��� �����. IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "� ����������� ���������� �������������� ��� ����� �������\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "� ����������� ���������� ��������� ��� ����� �������\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "� ����������� ���������� �������������� ��� ����� �������\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "" "� ����������� ���������� ��������� ��� �����������\n" "��� ����� �������\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ������ �� ����� ���������� ��� 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ������ �� ����� ���������� ��� 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth ������ �� ����� ������ 1 ��� 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "�� ������ default-cert-level� ������ �� ����� 0, 1, 2, � 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "�� ������ min-cert-level� ������ �� ����� 0, 1, 2, � 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "��������: � ���� S2K ��������� (0) ������ �� �����������\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "�� ������ ��������� S2K; ������ �� ����� 0, 1 � 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "�� ������� �����������\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "�� ������� ����������� ���������� ���������������\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "�� ������� ����������� ���������� ���������� ���������\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "�� ������� ����������� ���������� ���������� ���������\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "�� %s ����� �� ���������� ���� �� �� %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "����������� � ����� ��� ��������������� \"%s\" ���� ��������� %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "����������� � ����� ��� ���������� ��������� \"%s\" ���� ��������� %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "����������� � ����� ��� ���������� ��������� \"%s\" ���� ��������� %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "�������� ������������� ��� TrustDB: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "�������������: ������� ���������� (-r) ����� ����� ��������������\n" "�������� ��������\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [����� �������]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [����� �������]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "���������������� �������: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [����� �������]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [����� �������]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "����������� � ����� ��� %s ���� ��������� %s.\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [����� �������]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [����� �������]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [����� �������]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "����������� � ����� ��� %s ���� ��������� %s.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [����� �������]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [����� �������]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [����� �������]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [�������]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [user-id] [����������]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver �������� �������: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver ���� �������: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "������� �������� �������: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver ��������� �������: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver �������� �������: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "����������� �������: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "�������� �������: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "�� ������� ���������� hash `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[����� �������]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "�������� ���� �� ���������� �� ������ ��� ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "�� URL ��������� �������������� ��� ������ ��� ����� ������\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "�� URL ��������� ��������� ��� ������ ��� ����� ������\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "�� URL ��������� ��������� ��� ������ ��� ����� ������\n" @@ -2461,7 +2461,7 @@ msgid "writing to `%s'\n" msgstr "������� ��� `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "�������� �������� ��� ����������� `%s': %s\n" @@ -2551,7 +2551,7 @@ msgstr "������ %08lX: ������� ������ �� ����� ��������. %d - ������������\n" msgid "importing secret keys not allowed\n" msgstr "������� ��� �������� �������� ��� `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "��� ������� �������������� ����������: %s\n" @@ -2677,46 +2677,46 @@ msgstr "" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "������ %08lX: �� ����������� ����� ��������� (0x%02x) - ������������\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "������ %08lX: ����������� ����� user ID - ��������\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "�������������: ������ %08lX ������ �� ���������: ���� �������� ��������� %" "08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "�������������: ������ %08lX ������ �� ���������: �� ������ ��������� %08lX\n" "��� ����� �����.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "������ %08lX: \"%s\" ������������� ��������� ����������\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "������ %08lX: ����� �������� �������� ����������\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "�� ������� ������ ��� ��������� �� �� �������!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "������������: ������� ������ ��� �����\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "������������: ������� ������ ��� �����\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.6d\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" @@ -38,9 +38,9 @@ msgstr "ne povas malfermi '%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "skribas sekretan �losilon al '%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -386,7 +386,7 @@ msgstr "" "quoted-printable-signo en kiraso - ver�ajne cima po�totransendilo estis " "uzata\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "sekreta �losilo ne havebla" @@ -396,166 +396,166 @@ msgstr "sekreta �losilo ne havebla" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "ne povas fari tion en neinteraga re�imo\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Via elekto? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "en" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "en" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Nenia kialo specifita" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "ne traktita" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "skribas publikan �losilon al '%s'\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "aktualigitaj preferoj" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "nevalida signo en signo�eno\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "nevalida signo en signo�eno\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "Fingrospuro:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kreado de �losiloj malsukcesis: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "validaj OpenPGP-datenoj ne trovitaj.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "eraro dum skribado de sekreta �losilaro '%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -563,136 +563,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Bonvolu elekti, kian �losilon vi deziras:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "�i tiu �losilo eksvalidi�os je %s.\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (nur �ifri)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Nevalida elekto.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Kialo por revoko: " -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "nekonata densig-metodo" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Sekretaj partoj de �efa �losilo ne estas disponataj.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ignorita: sekreta �losilo jam �eestas\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "forlasi �i tiun menuon" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "montri �i tiun helpon" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Nenia helpo disponata" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "�an�i la daton de eksvalidi�o" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "�an�i la posedantofidon" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "montri fingrospuron" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "krei novan �losilparon" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Komando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "skribas sekretan �losilon al '%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Nevalida komando (provu per \"helpo\")\n" @@ -750,7 +750,7 @@ msgstr "Ripetu pasfrazon: " msgid "PIN not correctly repeated; try again" msgstr "la pasfrazo ne estis �uste ripetita; provu denove" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -766,7 +766,7 @@ msgstr "--output ne funkcias por �i tiu komando\n" msgid "key \"%s\" not found: %s\n" msgstr "�losilo '%s' ne trovita: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1401,444 +1401,444 @@ msgstr "montri, en kiu �losilaro estas listigita �losilo" msgid "show expiration dates during signature listings" msgstr "Mankas responda subskribo en sekreta �losilaro\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "opcio-dosiero '%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "legas opciojn el '%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTO: %s ne estas por normala uzado!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ne povis analizi URI de �losilservilo\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "nevalida �losilaro" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 #, fuzzy msgid "invalid import options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 #, fuzzy msgid "invalid export options\n" msgstr "nevalida �losilaro" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "nevalida �losilaro" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "AVERTO: programo povas krei core-dosieron!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTO: %s nuligas %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ne eblas kun %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent ne estas disponata en �i tiu sesio\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skribas sekretan �losilon al '%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "eblas fari nur apartajn kaj klartekstajn subskribojn kun --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "ne eblas samtempe subskribi kaj �ifri kun --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "necesas uzi dosierojn (kaj ne tubon) kun --pgp2\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "�ifri mesa�on kun --pgp2 postulas la �ifron IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "elektita �ifrad-metodo ne validas\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "elektita �ifrad-metodo ne validas\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed devas esti pli granda ol 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed devas esti pli granda ol 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth devas esti inter 1 kaj 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nevalida default-check-level; devas esti 0, 1, 2 a� 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nevalida default-check-level; devas esti 0, 1, 2 a� 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTO: simpla S2K-re�imo (0) estas forte malrekomendata\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "nevalida S2K-re�imo; devas esti 0, 1 a� 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid default preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "Tiu komando ne eblas en la re�imo %s.\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "Tiu komando ne eblas en la re�imo %s.\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "Tiu komando ne eblas en la re�imo %s.\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [dosiero]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [dosiero]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "mal�ifrado malsukcesis: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [dosiero]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "Tiu komando ne eblas en la re�imo %s.\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [dosiero]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "Tiu komando ne eblas en la re�imo %s.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [dosiero]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [dosiero]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [dosiero]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key uzantidentigilo" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key uzantidentigilo" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key uzantidentigilo [komandoj]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [uzantidentigilo] [�losilaro]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "Kreado de �losiloj malsukcesis: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "listigo de sekretaj �losiloj malsukcesis: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "Kreado de �losiloj malsukcesis: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record malsukcesis: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "listigo de sekretaj �losiloj malsukcesis: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "elkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[dosiero]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Ektajpu vian mesa�on ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "la donita gvidlinia URL por atestado ne validas\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" @@ -2426,7 +2426,7 @@ msgid "writing to `%s'\n" msgstr "skribas al '%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "eraro dum skribado de �losilaro '%s': %s\n" @@ -2516,7 +2516,7 @@ msgstr "�losilo %08lX: sekreta �losilo sen publika �losilo - ignorita\n" msgid "importing secret keys not allowed\n" msgstr "skribas sekretan �losilon al '%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "mankas implicita sekreta �losilaro: %s\n" @@ -2637,41 +2637,41 @@ msgstr "�losilo %08lX: revokatestilo en mal�usta loko - ignorita\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "�losilo %08lX: neeksportebla subskribo (klaso %02x) - ignorita\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "�losilo %08lX: trovis ripetitan uzantidentigilon - kunfandita\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "AVERTO: �i tiu �losilo estas revokita de sia posedanto!\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "AVERTO: �i tiu �losilo estas revokita de sia posedanto!\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "�losilo %08lX: revokatestilo aldonita\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "�losilo %08lX: rekta �losilsubskribo aldonita\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "ignorita: sekreta �losilo jam �eestas\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "ignorita: sekreta �losilo jam �eestas\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 1.4.1\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-10-23 11:32+0200\n" "Last-Translator: Jaime Su�rez <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" @@ -42,9 +42,9 @@ msgstr "no se puede bloquear `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "escribiendo clave privada en `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -394,7 +394,7 @@ msgstr "" "caracter \"quoted printable\" en la armadura - probablemente se us�\n" "un MTA defectuoso\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "tarjeta OpenPGP no disponible: %s\n" @@ -404,155 +404,155 @@ msgstr "tarjeta OpenPGP no disponible: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "tarjeta OpenPGP num. %s detectada\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "imposible hacer esto en modo de proceso por lotes\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Su elecci�n: " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[no establecido]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "hombre" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "mujer" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "no especificado" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "no forzado" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "forzado" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Error: s�lo se permite ASCII sin formato actualmente.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Error: El caracter \"<\" no puede usarse.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Error: no se permiten dobles espacios.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Apellido del titular de la tarjeta: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Nombre del titular de la tarjeta: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Error: nombre combinado demasiado largo (m�ximo %d caracteres).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL de donde recuperar la clave p�blica: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Error: URL demasiado larga (el m�ximo son %d caracteres).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "error leyendo `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Datos de login (nombre de la cuenta): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Error: el login es demasiado largo (l�mite de %d caracteres).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Datos privados: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" "Error: los datos privados son demasiado largos (l�mite de %d caracteres).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Preferencias de idioma: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Error: longitud de la cadena de preferencias inv�lida.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Error: caracteres inv�lidos en cadena de preferencias.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Sexo ((H)ombre, (M)mujer o espacio): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Error: respuesta no v�lida.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "Huella dactilar CA:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Error: formato inv�lido de huella dactilar.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "la operaci�n con la clave no es posible: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "no es una tarjeta OpenPGP" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "error obteniendo la informaci�n actual de la clave: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "�Reemplazar la clave existente? (s/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "�Hacer copia de seguridad externa a la tarjeta de clave de cifrado? (S/n)" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "�Reemplazar las claves existentes? (s/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -563,120 +563,120 @@ msgstr "" " PIN = `%s' PIN Administrador = `%s'\n" "Deber�a cambiarlos usando la orden --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Por favor seleccione tipo de clave que generar:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Clave de firmado\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Clave de cifrado\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Clave de autentificaci�n\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Elecci�n inv�lida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Por favor elija donde guardar la clave:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "algoritmo de protecci�n de clave desconocido\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "las partes secretas de la clave no est�n disponibles\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "clave secreta ya almacenada en una tarjeta\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "sale de este men�" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "ver �rdenes de administrador" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "muestra esta ayuda" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "listar todos los datos disponibles" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "cambiar el nombre del titular de la tarjeta" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "cambiar URL de donde obtener la clave" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "recuperar la clave especificada en la URL de la tarjeta" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "cambiar nombre de usuario" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "cambiar preferencias de idioma" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "cambiar sexo del titular de la tarjeta" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "cambiar huella dactilar de una CA" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "cambiar estado de la opci�n forzar firma del PIN" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "generar nuevas claves" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "men� para cambiar o desbloquear el PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Orden> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "�rdenes s�lo de administrador\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Se permiten �rdenes de administrador\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "No se permiten �rdenes de administrador\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Orden inv�lida (pruebe \"help\")\n" @@ -731,7 +731,7 @@ msgstr "Repita este PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN repetido incorrectamente; int�ntelo de nuevo" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -747,7 +747,7 @@ msgstr "--output no funciona con esta orden\n" msgid "key \"%s\" not found: %s\n" msgstr "clave \"%s\" no encontrada: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1399,411 +1399,411 @@ msgstr "muestra en qu� anillos est� una clave" msgid "show expiration dates during signature listings" msgstr "No existe la firma correspondiente en el anillo secreto\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: se ignora el antiguo fichero de opciones predefinidas `%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "fichero de opciones `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "leyendo opciones desde `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: �%s no es para uso normal!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "no se carga el cifrado de ampliaci�n `%s' por permisos inseguros\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' no es un juego de caracteres v�lido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' no es un juego de caracteres v�lido\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "no se puede interpretar la URL del servidor de claves\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opciones del servidor de claves inv�lidas\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "opciones del servidor de claves inv�lidas\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opciones de importaci�n inv�lidas\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opciones de importaci�n inv�lidas\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opciones de exportaci�n inv�lidas\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opciones de exportaci�n inv�lidas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: lista de opciones inv�lida\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "lista de opciones inv�lida\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' no es un juego de caracteres v�lido\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la URL del servidor de claves preferido no es v�lida\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' no es un juego de caracteres v�lido\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' no es un juego de caracteres v�lido\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opciones de verificaci�n inv�lidas\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "opciones de verificaci�n inv�lidas\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "imposible establecer camino de ejecutables %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opciones de verificaci�n inv�lidas\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "ATENCI�N: �el programa podr�a volcar un fichero core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sustituye a %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "�%s no permitido con %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "�%s no tiene sentido con %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "el agente gpg no esta disponible en esta sesi�n\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "no se ejecutar� en memoria insegura por %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "s�lo puede hacer firmas separadas o en claro en modo --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "no puede firmar y cifrar a la vez en modo --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "debe usar ficheros (no tuber�as) si trabaja con --pgp2 activo.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "cifrar un mensaje en modo --pgp2 requiere el algoritmo IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "el algoritmo de cifrado seleccionado es inv�lido\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "el algoritmo de resumen seleccionado no inv�lido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "el algoritmo de compresi�n seleccionado es inv�lido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "el algoritmo de certificaci�n por resumen elegido es inv�lido\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser mayor que 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser mayor que 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth debe estar en el rango de 1 a 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level inv�lido; debe ser 0, 1, 2, � 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level inv�lido; debe ser 0, 1, 2, � 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el modo S2K simple (0) no es nada recomendable\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K incorrecto; debe ser 0, 1 o 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "preferencias por defecto inv�lidas\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferencias personales de cifrado inv�lidas\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferencias personales de algoritmo de resumen inv�lidas\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferencias personales de compresi�n inv�lidas\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s a�n no funciona con %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "no puede usar el cifrado `%s' en modo %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "no puede usar el resumen `%s' en modo %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "no puede usar la compresi�n `%s' en modo %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicializaci�n de la base de datos de confianza fallida: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "AVISO: se indicaron receptores (-r) sin clave p�blica de cifrado\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nombre_fichero]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nombre_fichero]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "el cifrado sim�trico de `%s' fall�: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nombre_fichero]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nombre_fichero]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "no puede usar --symetric --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "no puede usar --symetric --encrypt en modo %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nombre_fichero]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "no puede usar --symetric --sign --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "no puede usar --symmetric --sign --encrypt en modo %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nombre_fichero]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nombre_fichero]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nombre_fichero]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id-usuario" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-usuario" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usuario [�rdenes]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-usuario] [anillo]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "env�o al servidor de claves fallido: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepci�n del servidor de claves fallida: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "exportaci�n de clave fallida: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "b�squeda del servidor de claves fallida: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "renovaci�n al servidor de claves fallida: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminaci�n de armadura fallida: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "creaci�n de armadura fallida: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de distribuci�n inv�lido `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nombre_fichero]" @@ -1811,19 +1811,19 @@ msgstr "[nombre_fichero]" # En espa�ol no se deja espacio antes de los puntos suspensivos # (Real Academia dixit) :) # Tomo nota :-). Este comentario d�jalo siempre. -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Adelante, teclee su mensaje...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "URL de pol�tica de certificado inv�lida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "URL de pol�tica inv�lida\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL del servidor de claves preferido no es v�lida\n" @@ -2430,7 +2430,7 @@ msgid "writing to `%s'\n" msgstr "escribiendo en `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "error escribiendo anillo `%s': %s\n" @@ -2519,7 +2519,7 @@ msgstr "clave %s: clave secreta con cifrado inv�lido %d - omitida\n" msgid "importing secret keys not allowed\n" msgstr "no se permite importar claves secretas\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "no hay anillo secreto de claves por defecto: %s\n" @@ -2641,42 +2641,42 @@ msgstr "clave %s: firma de subclave en lugar equivocado - omitida\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "clave %s: firma de clase (0x%02x) inesperada - omitida\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "clave %s: detectado usuario duplicado - fusionada\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVISO: la clave %s puede estar revocada: recuperando clave de revocaci�n %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVISO: la clave %s puede estar revocada: falta clave de revocaci�n %s.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "clave %s: \"%s\" certificado de revocaci�n a�adido\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "clave %s: firma directa de clave a�adida\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "NOTA: un S/N de la clave no coincide con la de la tarjeta\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "NOTA: clave primaria en l�nea y almacenada en la tarjeta\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "NOTA: clave secundaria en l�nea y almacenada en la tarjeta\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" @@ -38,9 +38,9 @@ msgstr "`%s' ei �nnestu avada\n" msgid "waiting for lock on `%s'...\n" msgstr "kirjutan salajase v�tme faili `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -386,7 +386,7 @@ msgid "" msgstr "" "kvooditud s�mbol pakendis - t�en�oliselt on kasutatud vigast MTA programmi\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "salajane v�ti ei ole k�ttesaadav" @@ -396,166 +396,166 @@ msgstr "salajane v�ti ei ole k�ttesaadav" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "seda ei saa teha pakettmoodis\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Teie valik? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "P�hjus puudub" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "ei t��deldud" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "vastavat avalikku v�tit pole: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "uuendatud eelistused" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "lubamatu s�mbol eelistuste s�nes\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "lubamatu s�mbol eelistuste s�nes\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "viga: vigane s�rmej�lg\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "n�ita s�rmej�lge" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "viga: vigane s�rmej�lg\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "V�tme genereerimine eba�nnestus: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "ei leia OpenPGP andmeid.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "viga salajase v�tme v�tmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -563,136 +563,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Palun valige, millist v�tmet��pi te soovite:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Allkiri aegus %s\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (ainult kr�pteerimiseks)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Vigane valik.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Palun valige t�histamise p�hjus:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "tundmatu kaitsealgoritm\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Primaarse v�tme salajased komponendid ei ole k�ttesaadavad.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "j�tsin vahele: avalik v�ti on juba olemas\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "v�lju sellest men��st" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "vastuolulised k�sud\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "n�ita seda abiinfot" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "V�tme leiate: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "muuda aegumise kuup�eva" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "muuda omaniku usaldust" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "n�ita s�rmej�lge" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "genereeri uus v�tmepaar" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "K�sklus> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "vastuolulised k�sud\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "vastuolulised k�sud\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjutan salajase v�tme faili `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Vigane k�sklus (proovige \"help\")\n" @@ -747,7 +747,7 @@ msgstr "Korrake parooli: " msgid "PIN not correctly repeated; try again" msgstr "parooli ei korratud �ieti; proovige uuesti" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -763,7 +763,7 @@ msgstr "v�ti --output ei t��ta selle k�suga\n" msgid "key \"%s\" not found: %s\n" msgstr "v�tit '%s' ei leitud: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1407,437 +1407,437 @@ msgstr "n�ita millisesse v�tmehoidlasse n�idatud v�ti kuulub" msgid "show expiration dates during signature listings" msgstr "Vastavat allkirja salajaste v�tmete hoidlas pole\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "M�RKUS: ignoreerin vana vaikimisi v�tmete faili `%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "M�RKUS: vaikimisi v�tmete fail `%s' puudub\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "v�tmete fail `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "loen v�tmeid failist `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "M�RKUS: %s ei ole tavap�raseks kasutamiseks!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "ebaturvaliste �iguste t�ttu ei laetud �ifri laiendust \"%s\"\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ei saa parsida v�tmeserveri URI\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: vigased ekspordi v�tmed\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "vigased ekspordi v�tmed\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: vigased impordi v�tmed\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "vigased impordi v�tmed\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: vigased ekspordi v�tmed\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "vigased ekspordi v�tmed\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: vigased impordi v�tmed\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "vigased impordi v�tmed\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: vigased ekspordi v�tmed\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "vigased ekspordi v�tmed\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path v��rtuseks ei �nnestu seada %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: vigased ekspordi v�tmed\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "HOIATUS: programm v�ib salvestada oma m�lupildi!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "HOIATUS: %s m��rab �le %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s ei ole koos lubatud!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s ei oma koos m�tet!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjutan salajase v�tme faili `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "--pgp2 moodis saate luua ainult eraldiseisvaid v�i avateksti allkirju\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2 moodis ei saa korraga allkirjastada ja kr�pteerida\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2 moodis peate kasutama faile (ja mitte toru).\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "teate kr�pteerimine --pgp2 moodis n�uab IDEA �iffrit\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "valitud �ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "valitud l�hendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valitud �ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "valitud sertifikaadi l�hendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed peab olema suurem, kui 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed peab olema suurem, kui 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth peab olema vahemikus 1 kuni 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "vigane vaikimisi-sert-tase; peab olema 0, 1, 2 v�i 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "vigane min-sert-tase; peab olema 1, 2 v�i 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "M�RKUS: lihtne S2K mood (0) ei soovitata kasutada\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "vigane S2K mood; peab olema 0, 1 v�i 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "vigased vaikimisi eelistused\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "vigased isikliku �ifri eelistused\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "vigased isikliku l�hendi eelistused\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "vigased isikliku pakkimise eelistused\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ei t��ta veel koos %s-ga\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "�ifri algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "s�numil�hendi algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "pakkimise algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB initsialiseerimine eba�nnestus: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "HOIATUS: m��rati saajad (-r) aga ei kasutata avaliku v�tme kr�ptograafiat\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [failinimi]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [failinimi]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "lahtikr�pteerimine eba�nnestus: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [failinimi]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "%s ei ole moodis %s lubatud.\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [failinimi]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "%s ei ole moodis %s lubatud.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [failinimi]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [failinimi]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [failinimi]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key kasutaja-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key kasutaja-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key kasutaja-id [k�sud]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [kasutaja-id] [v�tmehoidla]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "v�tmeserverile saatmine eba�nnestus: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "v�tmeserverilt lugemine eba�nnestus: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "v�tme eksport eba�nnestus: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "v�tmeserveri otsing eba�nnestus: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "v�tmeserveri uuendamine eba�nnestus: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "lahtipakendamine eba�nnestus: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "pakendamine eba�nnestus: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "vigane r�sialgoritm `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[failinimi]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Kirjutage n��d oma teade ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "antud sertifikaadi poliisi URL on vigane\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" @@ -2427,7 +2427,7 @@ msgid "writing to `%s'\n" msgstr "kirjutan faili `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "viga v�tmehoidlasse `%s' kirjutamisel: %s\n" @@ -2517,7 +2517,7 @@ msgstr "v�ti %08lX: salajane v�ti vigase �ifriga %d - j�tsin vahele\n" msgid "importing secret keys not allowed\n" msgstr "kirjutan salajase v�tme faili `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "puudub salajaste v�tmete vaikimisi v�tmehoidla: %s\n" @@ -2638,44 +2638,44 @@ msgstr "v�ti %08lX: alamv�tme allkiri on vales kohas - j�tan vahele\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "v�ti %08lX: ootamatu allkirja klass (0x%02x) - j�tan vahele\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "v�ti %08lX: tuvastasin dubleeritud kasutaja ID - mestisin\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "HOIATUS: v�ti %08lX v�ib olla t�histatud: laen t�histamise v�tit %08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "HOIATUS: v�ti %08lX v�ib olla t�histatud: t�histamise v�tit %08lX pole.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "v�ti %08lX: \"%s\" t�histamise sertifikaat lisatud\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "v�ti %08lX: lisatud vahetu v�tme allkiri\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "avalik v�ti ei sobi salajase v�tmega!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "j�tsin vahele: avalik v�ti on juba olemas\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "j�tsin vahele: avalik v�ti on juba olemas\n" @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" @@ -54,9 +54,9 @@ msgstr "tiedostoa \"%s\" ei voi avata\n" msgid "waiting for lock on `%s'...\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -407,7 +407,7 @@ msgstr "" "viallista\n" "MTA:ta on käytetty\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "salaista avainta ei löydy" @@ -417,166 +417,166 @@ msgstr "salaista avainta ei löydy" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "tätä ei voi tehdä eräajossa\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Valintasi? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Ei eriteltyä syytä" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "ei käsitelty" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "ei vastaavaa julkista avainta: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "päivitä valinnat" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "virhe: sormenjälki on väärä\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "näytä sormenjälki" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "virhe: sormenjälki on väärä\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Avaimen luonti epäonnistui: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "kelvollista OpenPGP-dataa ei löytynyt.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "virhe kirjoitettaessa salaiseen avainrenkaaseen \"%s\": %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -584,136 +584,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Valitse millaisen avaimen haluat:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Allekirjoitus vanheni %s\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Valinta ei kelpaa.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Valitse mitätöinnin syy:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "tuntematon suojausalgoritmi\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Ensisijaisen avaimen salaiset osat eivät ole saatavilla.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ulos tästä valikosta" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "näytä tämä ohje" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Avain saatavilla kohteessa: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "muuta voimassoloaikaa" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "muuta luottamusastetta" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "näytä sormenjälki" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "luo uusi avainpari" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Komento> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Komento ei kelpaa (kirjoita \"help\")\n" @@ -768,7 +768,7 @@ msgstr "Toista salasana: " msgid "PIN not correctly repeated; try again" msgstr "salasanaa ei toistettu oikein, yritä uudestaan." -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -784,7 +784,7 @@ msgstr "--output ei toimi yhdessä tämän komennon kanssa\n" msgid "key \"%s\" not found: %s\n" msgstr "avainta \"%s\" ei löydy: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1427,438 +1427,438 @@ msgstr "näytä mihin avainrenkaaseen tulostettu avain kuuluu" msgid "show expiration dates during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "HUOM: Vanhat oletusarvoiset asetukset löytyvät tiedostosta \"%s\"\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "HUOM: Ei oletusasetustiedostoa \"%s\"\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "asetustiedosto \"%s\": %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "luetaan asetukset tiedostosta \"%s\"\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "HUOM: %s ei ole normaaliin käyttöön!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "Oikeudet eivät ole turvallisia, salainlaajennuksia \"%s\" ei ladattu\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-polkua kohteeseen %s ei voi asettaa\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "VAROITUS: ohjelma voi luoda core-tiedoston!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROITUS: %s korvaa %s:n\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s eivät ole sallittuja yhdessä!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s yhdessä on järjetöntä!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "erillisen allekirjoituksen voi luoda vain --pgp2-tilassa\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2-tilassa ei voi allekirjoittaa ja salata samanaikaisesti\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "sinun tulee käyttää tiedostoja (eikä putkitusta) kun --pgp2 on käytössä.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "viestin salaaaminen --pgp2-tilassa vaatii IDEA-salaimen\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "valittu tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "valittu varmenteen tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed täytyy olla suurempi kuin 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed täytyy olla suurempi kuin 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth tulee olla välillä 1-255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level ei kelpaa; täytyy olla 0, 1, 2 tai 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level ei kelpaa; täytyy olla 1, 2 tai 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "" "HUOM: yksinkertaista S2K-tilaa (0) ei todellakaan suositella käytettäväksi\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "virheellinen S2K-tila; täytyy olla 0, 1 tai 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "virheelliset oletusarvoiset valinnat\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "virheelliset henkilökohtaisen salaimen valinnat\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "virheelliset henkilökohtaiset tiivisteen valinnat\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "virheelliset henkilökohtaiset pakkausvalinnat\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ja %s eivät vielä toimi yhdessä\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "salausalgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "tiivistealgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "pakkausalgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROITUS: vastaanottajia (-r) annettu käyttämättä julkisen avaimen salausta\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [tiedostonimi]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [tiedostonimi]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "avaus epäonnistui: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [tiedostonimi]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "valitsinta %s ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--allekirjoita [tiedostonimi]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "valitsinta %s ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [tiedostonimi]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [tiedostonimi]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [tiedostonimi]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key käyttäjätunnus" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key käyttäjätunnus" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key käyttäjätunnus [komennot]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [käyttäjätunnus] [avainrengas]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "avainpalvelimelta vastaanotto epäonnistui: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "avaimen vienti epäonnistui: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "avainpalvelimelta etsiminen epäonnistui: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "avainpalvelimen päivitys epäonnistui: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "ascii-koodauksen purku epäonnistui: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "ascii-koodaaminen epäonnistui: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "virheellinen tiivistealgoritmi \"%s\"\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[tiedostonimi]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Kirjoita viestisi...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "annettu varmennekäytännön URL on virheellinen\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" @@ -2459,7 +2459,7 @@ msgid "writing to `%s'\n" msgstr "kirjoitetaan kohteeseen \"%s\"\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "virhe kirjoitettaessa avainrenkaaseen \"%s\": %s\n" @@ -2549,7 +2549,7 @@ msgstr "avain %08lX: avaimella on epäkelpo salain %d - ohitetaan\n" msgid "importing secret keys not allowed\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "salaiselle avainrenkaalle ei ole asetettu oletusarvoa: %s\n" @@ -2671,45 +2671,45 @@ msgstr "avain %08lX: aliavaimen allekirjoitus väärässä paikassa - ohitetaan\ msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "avain %08lX: odottamaton allekirjoitusluokka (0x%02X) - ohitetaan\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "avain %08lX: käyttäjätunnuksen kaksoiskappale havaittu - liitetty\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "VAROITUS: avain %08lX saattaa olla mitätöity: haetaan mitätöintiavain %08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "VAROITUS: avain %08lX saattaa olla mitätöity: mitätöintiavainta %08lX \n" "ei saatavilla.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "avain %08lX: \"%s\"-mitätöintivarmenne lisätty\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "avain %08lX: lisättiin suora avainallekirjoitus\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "julkinen avain ei täsmää salaiseen avaimeen!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2005-06-28 00:24+0200\n" "Last-Translator: Ga�l Qu�ri <[email protected]>\n" "Language-Team: French <[email protected]>\n" @@ -43,9 +43,9 @@ msgstr "impossible de verrouiller `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "�criture de la cl� secr�te dans `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -397,7 +397,7 @@ msgstr "" "caract�re cit�-imprimable (quoted-printable) dans l'armure provenant\n" "certainement d'un agent de transfert de messages bogu�\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "la carte OpenPGP n'est pas disponible: %s\n" @@ -407,157 +407,157 @@ msgstr "la carte OpenPGP n'est pas disponible: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "carte OpenPGP n� %s d�tect�e\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "impossible de faire cela en mode automatique\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Votre choix ? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[non positionn�]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "masculin" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "f�minin" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "non sp�cifi�" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "non forc�" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "forc�" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Erreur: Seul l'ASCII standard est permis pour l'instant.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Erreur: Le caract�re � < � ne peut pas �tre utilis�.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Erreur: Les espaces doubles ne sont pas permis.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Nom du d�teneur de la carte: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Pr�nom du d�teneur de la carte: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Erreur: Nom combin� trop long (la limite est %d caract�res).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL pour r�cup�rer la cl� publique: %s" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Erreur: URL trop long (la limite est %d caract�res).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Donn�es d'identification (nom du compte): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" "Erreur: Donn�es d'indentification trop longues (la limite est\n" "%d caract�res).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Donn�es DO priv�es: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Erreur: DO priv� trop long (la limite est %d caract�res).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Pr�f�rences de langue: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Erreur: longueur invalide de la cha�ne de pr�f�rences.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Erreur: caract�res invalide dans la cha�ne de pr�f�rences.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Sexe ((M)asculin, (F)�minin ou espace): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Erreur: r�ponse invalide.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "empreinte de l'autorit� de certification: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Erreur: empreinte mal format�e.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "l'op�ration sur la cl� n'est pas possible: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "ce n'est pas une carte OpenPGP" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "" "erreur durant la lecture des informations contenues actuellement\n" "dans la cl�: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Remplacer la cl� existante ? (o/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Faire une sauvegarde hors carte de la cl� de chiffrement ? (O/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Remplacer les cl�s existantes ? (o/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -568,122 +568,122 @@ msgstr "" " PIN = `%s' PIN admin = `%s'\n" "Vous devriez les changer avec la commande --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "S�lectionnez le type de cl� � g�n�rer:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Cl� de signature\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Cl� de chiffrement\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Cl� d'authentification\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Choix invalide.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "S�lectionnez l'endroit o� stocker la cl�:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "algorithme de protection de cl� inconnu\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "Les parties secr�tes de la cl� ne sont pas disponibles.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "la cl� secr�te est d�j� stock�e sur une carte\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "quitter ce menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "indiquer les commandes d'administration" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "afficher cette aide" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "lister toutes les donn�es disponibles" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "changer le nom du propri�taire de la carte" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "changer l'URL pour r�cup�rer la cl�" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "aller chercher la cl� sp�cifi�e dans l'URL de la carte" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "changer le nom d'identification" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "changer les pr�f�rences de langue" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "changer le sexe du propri�taire de la carte" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "changer l'empreinte d'une autorit� de certification" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" "inverser le param�tre obligeant � rentrer le code PIN pour les\n" "signatures" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "g�n�rer de nouvelles cl�s" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "menu pour changer ou d�verrouiller le PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "v�rifier le code PIN et lister toutes les donn�es" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Commande> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "La commande n'est utilisable qu'en mode administration\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Les commandes d'administration sont permises\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Les commandes d'administration ne sont pas permises\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Commande invalide (essayez �help�)\n" @@ -739,7 +739,7 @@ msgstr "R�p�tez ce code PIN: " msgid "PIN not correctly repeated; try again" msgstr "le code PIN n'a pas �t� correctement r�p�t� ; recommencez" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -755,7 +755,7 @@ msgstr "--output n'est pas compatible avec cette commande\n" msgid "key \"%s\" not found: %s\n" msgstr "cl� � %s � introuvable: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1432,446 +1432,446 @@ msgstr "" msgid "show expiration dates during signature listings" msgstr "Pas de signature correspondante dans le porte-cl�s secret\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTE: l'ancien fichier d'options par d�faut `%s' a �t� ignor�\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTE: pas de fichier d'options par d�faut `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "fichier d'options `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lire les options de `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTE: %s n'est pas pour une utilisation normale !\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "l'extension de chiffrement `%s' n'a pas �t� charg�e car ses\n" "permissions sont peu s�res\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' n'est pas un jeu de caract�res valide\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "impossible d'interpr�ter l'URL du serveur de cl�s\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: les options du serveur de cl�s sont invalides\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "les options du serveur de cl�s sont invalides\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: options d'import invalides\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "options d'import invalides\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: options d'export invalides\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "options d'export invalides\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: options de liste invalides\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "options de liste invalides\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "l'URL du serveur de cl�s favori qui a �t� donn�e est invalide\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: options de v�rification invalides\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "options de v�rification invalides\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossible de mettre le chemin d'ex�cution � %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: options de v�rification invalides\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "ATTENTION: Le programme peut cr�er un fichier �core� !\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENTION: %s remplace %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n'est pas permis avec %s !\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n'a aucun sens avec %s !\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "NOTE: %s n'est pas disponible dans cette version\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "pas d'ex�cution ave une m�moire non s�curis�e � cause de %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "il n'est possible de faire une signature d�tach�e ou en texte clair\n" "qu'en mode --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "vous ne pouvez pas signer et chiffrer en m�me temps en mode --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "vous devez utiliser des fichiers (et pas un tube) lorsque --pgp2\n" "est activ�.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "chiffrer un message en mode --pgp2 n�cessite l'algorithme de chiffrage IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorithme de chiffrement s�lectionn� est invalide\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "la fonction de hachage s�lectionn�e est invalide\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "l'algorithme de compression s�lectionn� est invalide\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "la fonction de hachage de certification s�lectionn�e est invalide\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "�completes-needed� doit �tre sup�rieur � 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "�marginals-needed� doit �tre sup�rieur � 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth doit �tre compris entre 1 et 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level invalide; doit �tre 0, 1, 2 ou 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level invalide; doit �tre 0, 1, 2 ou 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: le mode S2K simple (0) est fortement d�conseill�\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K invalide; ce doit �tre 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "pr�f�rences par d�faut invalides\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "pr�f�rences de chiffrement personnelles invalides\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "pr�f�rences de hachage personnelles invalides\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "pr�f�rences de compression personnelles invalides\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne marche pas encore avec %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser l'algorithme de chiffrement `%s'\n" "en mode %s.\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser l'algorithme de hachage `%s'\n" "en mode %s.\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser l'algorithme de compression `%s'\n" "en mode %s.\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "impossible d'initialiser la base de confiance: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVERTISSEMENT: des destinataires (-r) ont �t� donn�s alors que le\n" "chiffrement ne se fait pas par cl� publique\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nom du fichier]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nom du fichier]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "le chiffrement sym�trique de `%s' a �chou�: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nom du fichier]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nom du fichier]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "vous ne pouvez pas utiliser --symmetric --encrypt avec --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "vous ne pouvez pas utiliser --symmetric --encrypt en mode %s.\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nom du fichier]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom du fichier]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nom du fichier]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "Vous ne pouvez pas utiliser --symmetric --sign --encrypt avec\n" "--s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser --symmetric --sign --encrypt\n" "en mode %s.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom du fichier]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nom du fichier]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nom du fichier]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key utilisateur" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key utilisateur" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key utilisateur [commandes]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [utilisateur] [porte-cl�s]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'envoi vers le serveur de cl�s a �chou�: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la r�ception depuis le serveur de cl�s a �chou�: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "l'export de la cl� a �chou�: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "la recherche au sein du serveur de cl�s a �chou�: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "le rafra�chissement par le serveur de cl�s a �chou�: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "la suppression d'une armure a �chou�: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "la construction d'une armure a �chou�: %s \n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algorithme de hachage `%s' invalide\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nom du fichier]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Vous pouvez taper votre message...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "l'URL de politique de certification donn�e est invalide\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "l'URL de politique de signature donn�e est invalide\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL du serveur de cl�s favori qui a �t� donn�e est invalide\n" @@ -2481,7 +2481,7 @@ msgid "writing to `%s'\n" msgstr "�criture de `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "erreur durant l'�criture du porte-cl�s `%s': %s\n" @@ -2572,7 +2572,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "il est interdit d'importer les cl� secr�tes\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "pas de porte-cl�s par d�faut: %s\n" @@ -2696,44 +2696,44 @@ msgstr "cl� %s: signature de sous-cl� au mauvais endroit - ignor�e\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "cl� %s: classe de signature non attendue (0x%02X) - ignor�e\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "cl� %s: nom d'utilisateur en double d�tect� - fusion accomplie\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVERTISSEMENT: la cl� %s est peut-�tre r�voqu�e: recherche de\n" "la cl� de r�vocation %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVERTISSEMENT: la cl� %s est peut-�tre r�voqu�e: la cl� de\n" "r�vocation %s est absente.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "cl� %s: certificat de r�vocation � %s � ajout�\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "cl� %s: ajout de la signature de cl� directe\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "NOTE: le num�ro de s�rie d'une cl� n'est pas celui de la carte\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "NOTE: la cl� primaire est en ligne et stock�e sur la carte\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "NOTE: la cl� secondaire est en ligne et stock�e sur la carte\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.4\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -38,9 +38,9 @@ msgstr "non se puido abrir `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "gravando a chave secreta en `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -390,7 +390,7 @@ msgstr "" "car�cter quoted-printable na armadura - seguramente empregouse un MTA con " "erros\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "a chave secreta non est� dispo�ible" @@ -400,166 +400,166 @@ msgstr "a chave secreta non est� dispo�ible" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, 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:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "�A s�a selecci�n? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Non se especificou un motivo" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "non procesado" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "non hai unha chave p�blica correspondente: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "erro lendo `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "preferencias actualizadas" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter non v�lido na cadea de preferencias\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter non v�lido na cadea de preferencias\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "erro: pegada dactilar non v�lida\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "Pegada dactilar:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "erro: pegada dactilar non v�lida\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A xeraci�n da chave fallou: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "non se atoparon datos OpenPGP v�lidos.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro escribindo no chaveiro secreto `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -567,136 +567,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor, seleccione o tipo de chave que quere:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "A sinatura caducou o %s\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (s� cifrar)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Selecci�n non v�lida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Por favor, escolla o motivo da revocaci�n:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de protecci�n desco�ecido\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "as partes secretas da chave primaria non est�n dispo�ibles.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "om�tese: a chave secreta xa est� presente\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "sa�r deste men�" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "amosar esta axuda" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Chave dispo�ible en: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "cambia-la fecha de expiraci�n" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "cambia-la confianza sobre o dono" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "amosar fingerprint" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "xerar un novo par de chaves" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Comando incorrecto (tente \"help\")\n" @@ -754,7 +754,7 @@ msgstr "Repita o contrasinal: " msgid "PIN not correctly repeated; try again" msgstr "o contrasinal non se repetiu correctamente; t�nteo de novo" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -770,7 +770,7 @@ msgstr "--output non traballa con este comando\n" msgid "key \"%s\" not found: %s\n" msgstr "non se atopou a chave `%s': %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1418,441 +1418,441 @@ msgstr "amosar en que chaveiro est� unha chave listada" msgid "show expiration dates during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: ign�rase o antigo ficheiro de opci�ns por defecto `%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: non existe o ficheiro de opci�ns por defecto `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opci�ns `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lendo as opci�ns de `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: �%s non � para uso normal!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "non se cargou a extensi�n de cifrado \"%s\" debido a permisos inseguros\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non � un xogo de caracteres v�lido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non � un xogo de caracteres v�lido\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opci�ns de importaci�n non v�lidas\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opci�ns de importaci�n non v�lidas\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opci�ns de importaci�n non v�lidas\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "opci�ns de importaci�n non v�lidas\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non � un xogo de caracteres v�lido\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "o URL de normativa de sinaturas dado non � v�lido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non � un xogo de caracteres v�lido\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non � un xogo de caracteres v�lido\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "non se puido estabrecer exec-path a %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opci�ns de exportaci�n non v�lidas\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: �o programa pode crear un ficheiro 'core'!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s fai que se ignore %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "�%s non se admite con %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "�%s non ten sentido empreg�ndoo con %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent non est� dispo�ible nesta sesi�n\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "s� pode crear sinaturas separadas ou en claro no modo --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "non pode asinar e cifrar ao mesmo tempo no modo --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "debe empregar ficheiros (e non canalizaci�ns) ao traballar con --pgp2 " "activado.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "para cifrar unha mensaxe en modo --pgp2 prec�sase da cifra IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non � v�lido\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de resumo seleccionado non � v�lido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non � v�lido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de resumo de certificaci�n seleccionado non � v�lido\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser superior a 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser superior a 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth debe valer entre 1 e 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nivel de comprobaci�n por defecto non v�lido; debe ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nivel de comprobaci�n por defecto non v�lido; debe ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: desacons�llase encarecidamente o modo S2K simple (0)\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non v�lido; debe ser 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "preferencias por defecto non v�lidas\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferencias de cifrado personais non v�lidas\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferencias de resumo personais non v�lidas\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferencias de compresi�n personais non v�lidas\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "�%s a�nda non traballa con %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "non se pode empregar o algoritmo de cifrado \"%s\" no modo %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "non se pode empregar o algoritmo de resumo \"%s\" no modo %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "non se pode empregar o algoritmo de compresi�n \"%s\" no modo %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: deronse destinatarios (-r) sen empregar cifrado de chave p�blica\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [ficheiro]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [ficheiro]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "o descifrado fallou: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [ficheiro]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "non se pode empregar %s no modo %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [ficheiro]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "non se pode empregar %s no modo %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ficheiro]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [ficheiro]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [ficheiro]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id-de-usuario" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-de-usuario" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-de-usuario [comandos]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-de-usuario] [chaveiro]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "o env�o ao servidor de chaves fallou: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "a recepci�n do servidor de chaves fallou: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "a exportaci�n da chave fallou: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "a busca no servidor de chaves fallou fallou: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "a actualizaci�n no servidor de chaves fallou: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "non se puido quita-la armadura: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "non se puido po�e-la armadura: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash non v�lido `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[ficheiro]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Escriba a s�a mensaxe ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "o URL de normativa de certificaci�n dado non � v�lido\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non � v�lido\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non � v�lido\n" @@ -2442,7 +2442,7 @@ msgid "writing to `%s'\n" msgstr "escribindo a `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "erro escribindo no chaveiro `%s': %s\n" @@ -2536,7 +2536,7 @@ msgstr "chave %08lX: chave secreta cunha cifra %d non v�lida - omitida\n" msgid "importing secret keys not allowed\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "non hai un chaveiro privado por defecto: %s\n" @@ -2663,46 +2663,46 @@ msgstr "chave %08lX: sinatura da sub-chave nun lugar incorrecto - omitida\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chave %08lX: clase de sinatura non esperada (0x%02X) - omitida\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chave %08lX: ID de usuario duplicado detectado - mesturado\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: obtendo a chave de revocaci�n %" "08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: chave de revocaci�n %08lX " "ausente.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chave %08lX: \"%s\" certificado de revocaci�n engadido\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "chave %08lX: engadiuse unha sinatura de chave directa\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "�a chave p�blica con coincide coa chave secreta!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "om�tese: a chave secreta xa est� presente\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "om�tese: a chave secreta xa est� presente\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-06-19 21:53+0200\n" "Last-Translator: Nagy Ferenc L�szl� <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" @@ -38,9 +38,9 @@ msgstr "Nem tudom megnyitni %s-t!\n" msgid "waiting for lock on `%s'...\n" msgstr "�rom a titkos kulcsot a %s �llom�nyba.\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -388,7 +388,7 @@ msgid "" msgstr "" "quoted printable karakter a p�nc�lban - val�sz�n�leg egy bugos MTA b�ne.\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "titkos kulcs nem �ll rendelkez�sre" @@ -398,166 +398,166 @@ msgstr "titkos kulcs nem �ll rendelkez�sre" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "Nem tudom ezt megcsin�lni k�tegelt m�dban!\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Mit v�laszt? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Nincs megadva ok." -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "nem feldolgozott" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "Nincs hozz� tartoz� nyilv�nos kulcs: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "Hiba \"%s\" olvas�sakor: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "preferenci�k friss�t�se" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "�rv�nytelen karakter a preferenci�k k�z�tt!\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "�rv�nytelen karakter a preferenci�k k�z�tt!\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "Hiba: �rv�nytelen ujjlenyomat.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "megmutatja az ujjlenyomatot" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "Hiba: �rv�nytelen ujjlenyomat.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kulcsgener�l�s sikertelen: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "Nem tal�ltam �rv�nyes OpenPGP adatot.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "Hiba a(z) \"%s\" titkoskulcs-karika �r�sakor: %s.\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -565,136 +565,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "K�rem, adja meg, milyen kulcsot k�v�n:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Az al��r�s lej�rt: %s.\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (csak titkos�t�s)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "�rv�nytelen v�laszt�s.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "K�rem, v�lassza ki a visszavon�s ok�t:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "Ismeretlen v�delmi algoritmus!\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Az els�dleges kulcs titkos r�szei nem el�rhet�k.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "Kihagytam: titkos kulcs m�r jelen van.\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "kil�p�s ebb�l a men�b�l" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "Egym�snak ellentmond� parancsok!\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "megmutatja ezt a s�g�t" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Kulcs tal�lhat�: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "lej�rat megv�ltoztat�sa" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "kulcstulajdonos megb�zhat�s�g�nak be�ll�t�sa" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "megmutatja az ujjlenyomatot" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "�j kulcsp�r l�trehoz�sa" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Parancs> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "Egym�snak ellentmond� parancsok!\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "Egym�snak ellentmond� parancsok!\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "�rom a titkos kulcsot a %s �llom�nyba.\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "�rv�nytelen parancs! (Pr�b�lja a s�g�t: \"help\".)\n" @@ -749,7 +749,7 @@ msgstr "Ism�telje meg a jelsz�t: " msgid "PIN not correctly repeated; try again" msgstr "Nem ism�telte meg helyesen a jelsz�t! Pr�b�lja �jra!" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -765,7 +765,7 @@ msgstr "Az --output opci� nem m�k�dik ehhez a parancshoz.\n" msgid "key \"%s\" not found: %s\n" msgstr "\"%s\" kulcs nem tal�lhat�: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1405,438 +1405,438 @@ msgstr "mutatja a kilist�zott kulcs kulcskarik�j�t is" msgid "show expiration dates during signature listings" msgstr "Nincs megfelel� al��r�s a titkoskulcs-karik�n.\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MEGJEGYZ�S: Figyelmen k�v�l hagytam a r�gi opci�kat (%s).\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MEGJEGYZ�S: Nincs alap�rtelmezett opci�s f�jl (%s).\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "\"%s\" opci�s f�jl: %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "Az opci�kat a \"%s\" �llom�nyb�l olvasom.\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MEGJEGYZ�S: %s nem norm�l haszn�latra van!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "A \"%s\" rejtjelez� b�v�t�st rossz enged�lyek miatt t�lt�m be.\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nem �rv�nyes karakterkioszt�s!\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nem �rv�nyes karakterkioszt�s!\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "�rtelmezhetetlen a kulcsszerver URI-ja!\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: �rv�nytelen export opci�k!\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "�rv�nytelen export opci�k!\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: �rv�nytelen import opci�k!\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "�rv�nytelen import opci�k!\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: �rv�nytelen export opci�k!\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "�rv�nytelen export opci�k!\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: �rv�nytelen import opci�k!\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "�rv�nytelen import opci�k!\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nem �rv�nyes karakterkioszt�s!\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "A megadott al��r�si elj�r�sm�d URL-je �rv�nytelen!\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nem �rv�nyes karakterkioszt�s!\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nem �rv�nyes karakterkioszt�s!\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: �rv�nytelen export opci�k!\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "�rv�nytelen export opci�k!\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Nem tudom a v�grehajt�si el�r�si utat %s �rt�kre �ll�tani!\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: �rv�nytelen export opci�k!\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "FIGYELEM: A program core �llom�nyt hozhat l�tre!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "FIGYELEM: %s hat�stalan�tja %s-t!\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s �s %s nem haszn�lhat� egy�tt!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s �rtelmetlen %s mellett!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "GPG �gyn�k nem el�rhet� ebben a munkafolyamatban.\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "�rom a titkos kulcsot a %s �llom�nyba.\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "Csak k�l�n�ll� �s olvashat�sz�veg-al��r�st k�sz�thet --pgp2 m�dban!\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Nem �rhat al� �s titkos�that egyszerre --pgp2 m�dban!\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Csak �llom�nyokat (pipe-ot nem) haszn�lhat --pgp2 m�dban!\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "�zenet titkos�t�sa --pgp2 m�dban IDEA rejtjelez�t ig�nyel!\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "A kiv�lasztott rejtjelez� algoritmus �rv�nytelen!\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "A kiv�lasztott kivonatol� algoritmus �rv�nytelen!\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "A kiv�lasztott rejtjelez� algoritmus �rv�nytelen!\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "Az igazol�shoz kiv�lasztott kivonatol� algoritmus �rv�nytelen!\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed nagyobb kell legyen 0-n�l!\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed nagyobb kell legyen 1-n�l!\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 1 �s 255 k�z� kell essen!\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "�rv�nytelen default-cert-level; 0, 1, 2 vagy 3 lehet.\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "�rv�nytelen min-cert-level; 0, 1, 2 vagy 3 lehet.\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MEGJEGYZ�S: Egyszer� S2K m�d (0) er�sen ellenjavallt!\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "�rv�nytelen S2K m�d; 0, 1 vagy 3 lehet.\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "�rv�nytelen alap�rtelmezett preferenci�k!\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "�rv�nytelen szem�lyes rejtjelez�-preferenci�k!\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "�rv�nytelen szem�lyes kivonatol�preferenci�k!\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "�rv�nytelen szem�lyes t�m�r�t�preferenci�k!\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s �s %s egyel�re nem haszn�lhat� egy�tt!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "Lehet, hogy nem haszn�lhatja \"%s\" rejtjelez� algoritmust %s m�dban!\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "Lehet, hogy nem haszn�lhatja \"%s\" kivonatol� algoritmust %s m�dban!\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "Lehet, hogy nem haszn�lhatja \"%s\" t�m�r�t� algoritmust %s m�dban!\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Bizalmi adatb�zis (%s) inicializ�l�sa sikertelen!\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "FIGYELEM: C�mzett megadva (-r), de nincs nyilv�nos kulcs� titkos�t�s!\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [f�jln�v]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [f�jln�v]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Visszafejt�s sikertelen: %s.\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [f�jln�v]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [f�jln�v]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "Lehet, hogy nem haszn�lhatja %s-t %s m�dban!\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [f�jln�v]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [f�jln�v]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [f�jln�v]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "Lehet, hogy nem haszn�lhatja %s-t %s m�dban!\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [f�jln�v]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [f�jln�v]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [f�jln�v]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key felh-azonos�t�" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key felh-azonos�t�" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key felh-azonos�t� [parancsok]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [felh-azonos�t�] [kulcskarika]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "K�ld�s a kulcsszerverre sikertelen: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "V�tel a kulcsszerverr�l sikertelen: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "Kulcsexport�l�s sikertelen: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "Keres�s a kulcsszerveren sikertelen: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Friss�t�s a kulcsszerverr�l sikertelen: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "P�nc�l elt�vol�t�sa nem siker�lt: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "P�nc�loz�s nem siker�lt: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "�rv�nytelen kivonatol� algoritmus: %s\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[f�jln�v]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Kezdheti g�pelni az �zenetet...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "A megadott igazol�si elj�r�sm�d URL-je �rv�nytelen!\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "A megadott al��r�si elj�r�sm�d URL-je �rv�nytelen!\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "A megadott al��r�si elj�r�sm�d URL-je �rv�nytelen!\n" @@ -2434,7 +2434,7 @@ msgid "writing to `%s'\n" msgstr "�rok a \"%s\" �llom�nyba.\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "Hiba a \"%s\" kulcskarika �r�sakor: %s\n" @@ -2525,7 +2525,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "�rom a titkos kulcsot a %s �llom�nyba.\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "Nincs alap�rtelmezett titkoskulcs-karika: %s\n" @@ -2647,46 +2647,46 @@ msgstr "%08lX kulcs: Alkulcsal��r�s rossz helyen - kihagytam.\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "%08lX kulcs: V�ratlan al��r�soszt�ly (0x%02X) - kihagytam.\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "%08lX kulcs: Dupl�zott felh. azonos�t�t tal�ltam - �sszef�ztem.\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "FIGYELEM: %08lX kulcsot visszavonhatt�k:\n" "leh�vom a %08lX visszavon� kulcsot.\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "FIGYELEM: %08lX kulcsot visszavonhatt�k:\n" "visszavon� kulcs (%08lX) nincs jelen.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "%08lX kulcs: \"%s\" visszavon� igazol�st hozz�adtam.\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "%08lX kulcs: Kulcsal��r�st hozz�adtam.\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "A nyilv�nos kulcs nem passzol a titkos kulcshoz!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "Kihagytam: titkos kulcs m�r jelen van.\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "Kihagytam: titkos kulcs m�r jelen van.\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-id\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto <[email protected]>\n" "Language-Team: Indonesian <[email protected]>\n" @@ -40,9 +40,9 @@ msgstr "tidak dapat membuka `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -390,7 +390,7 @@ msgstr "" "karakter yang dapat dicetak dalam armor - mungkin telah digunakan MTA yang " "mengandung bug\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "kunci rahasia tidak tersedia" @@ -400,166 +400,166 @@ msgstr "kunci rahasia tidak tersedia" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "tidak dapat melakukan hal itu dalam mode batch\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Pilihan anda? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Tidak ada alasan diberikan" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "tidak diproses" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "tidak ada kunci publik yang sesuai: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "perbarui preferensi" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "kesalahan: fingerprint tidak valid\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "tampilkan fingerprint" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "kesalahan: fingerprint tidak valid\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Pembuatan kunci gagal: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "tidak ditemukan data OpenPGP yang valid.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "kesalahan menulis keyring rahasia `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -567,136 +567,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Silakan pilih kunci yang anda inginkan:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Signature kadaluwarsa %s\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Pilihan tidak valid.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritma proteksi tidak dikenal\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Bagian rahasia kunci primer tidak tersedia.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "berhenti dari menu ini" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "tampilkan bantuan" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Kunci tersedia di:" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "ubah tanggal kadaluarsa" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "ubah ownertrust" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "tampilkan fingerprint" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "buat sepasang kunci baru" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Perintah> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Perintah tidak valid (coba \"help\")\n" @@ -751,7 +751,7 @@ msgstr "Ulangi passphrase: " msgid "PIN not correctly repeated; try again" msgstr "passphrase tidak diulang dengan benar; coba lagi" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -767,7 +767,7 @@ msgstr "--output tidak berfungsi untuk perintah ini\n" msgid "key \"%s\" not found: %s\n" msgstr "kunci '%s' tidak ditemukan: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1409,446 +1409,446 @@ msgstr "tampilkan keyring tempat kunci yang dipilih berada" msgid "show expiration dates during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "CATATAN: file pilihan baku lama `%s' diabaikan\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "CATATAN: tidak ada file pilihan baku `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "file pilihan `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "membaca pilihan dari `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "CATATAN: %s tidak untuk pemakaian normal!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "ekstensi cipher \"%s\" tidak dimuat karena permisi tidak aman\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "tidak dapat memparsing URI keyserver\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "tidak dapat menset path exec ke %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "PERINGATAN: program mungkin membuat file core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "PERINGATAN: %s menimpa %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s tidak dibolehkan dengan %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s tidak masuk akal dengan %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent tidak tersedia untuk sesi ini\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "anda hanya dapat membuat signature detached atau clear saat dalam mode --" "pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "anda tidak dapat menandai dan mengenkripsi pada saat bersamaan dalam mode --" "pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "anda harus menggunakan file (dan bukan pipe) saat bekerja dengan opsi --" "pgpg2\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "mengenkripsi pesan dalam mode --pgp2 membutuhkan cipher IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "algoritma digest yang dipilih tidak valid\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritma sertifikasi digest yang dipilih tidak valid\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed harus lebih dari 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed harus lebih dari 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth harus di antara 1 hingga 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "level cert default tidak valid; harus 0, 1, 2, atau 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "level cert min tidak valid; harus 0, 1, 2, atau 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K yang tidak valid; harus 0, 1 atau 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "preferensi baku tidak valid\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferensi cipher personal tidak valid\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferensi digest personal tidak valid\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferensi kompresi personal tidak valid\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s belum dapat dipakai dengan %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma cipher \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma digest \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma kompresi \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "Peringatan: penerima yang disebutkan (-r) tanpa menggunakan enkripsi public " "key \n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [namafile]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [namafile]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "dekripsi gagal: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [namafile]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [namafile]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [namafile]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [namafile]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [namafile]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id-user" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-user" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-user [perintah]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-user] [keyring]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Penerimaan keyserver gagal: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "Ekspor kunci gagal: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "Pencarian keyserver gagal: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh keyserver gagal: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "gagal dearmoring: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[namafile]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Teruskan dan ketikkan pesan anda ....\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "URL sertifikasi kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" @@ -2449,7 +2449,7 @@ msgid "writing to `%s'\n" msgstr "menulis ke `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "kesalahan menulis keyring `%s': %s\n" @@ -2539,7 +2539,7 @@ msgstr "kunci %08lX: kunci rahasia dengan cipher tidak valid %d - dilewati\n" msgid "importing secret keys not allowed\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "tidak ada keyring rahasia baku: %s\n" @@ -2661,44 +2661,44 @@ msgstr "kunci %08lX: signature subkey di tempat yang salah - dilewati\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "kunci %08lX: klas signature tidak diharapkan (0x%02x) - dilewati\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "kunci %08lX: terdeteksi ID user duplikat - digabungkan\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "Peringatan: kunci %08lX dapat dibatalkan: mengambil kunci pembatalan %08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "Peringatan: kunci %08lX dapat dibatalkan: kunci pembatalan %08lX tidak ada\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "kunci %08lX: \"%s\" penambahan sertifikat pembatalan\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "kunci %08lX: signature kunci langsung ditambahkan\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "kunci publik tidak cocok dengan kunci rahasia!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "dilewati: kunci pribadi telah ada\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.1.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-06-16 17:01+0200\n" "Last-Translator: Marco d'Itri <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" @@ -38,9 +38,9 @@ msgstr "impossibile aprire `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -391,7 +391,7 @@ msgstr "" "carattere quoted printable nell'armatura - probabilmente � stato usato\n" "un MTA buggato\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "la chiave segreta non � disponibile" @@ -401,167 +401,167 @@ msgstr "la chiave segreta non � disponibile" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "impossibile fare questo in modo batch\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Cosa scegli? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "abilita" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "abilita" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Nessuna ragione specificata" # ??? (Md) -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "non esaminato" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "non c'� una chiave pubblica corrispondente: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "errore leggendo `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "preferenze aggiornate" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "carattere non valido nella stringa delle preferenze\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "carattere non valido nella stringa delle preferenze\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "errore: impronta digitale non valida\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "mostra le impronte digitali" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "errore: impronta digitale non valida\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Generazione della chiave fallita: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "Non sono stati trovati dati OpenPGP validi.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "errore scrivendo il portachiavi segreto `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -569,136 +569,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Per favore scegli che tipo di chiave vuoi:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Firma scaduta il %s\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (cifra solo)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Scelta non valida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Per favore scegli il motivo della revoca:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo di protezione sconosciuto\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Parti della chiave segreta non sono disponibili.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "saltata: chiave pubblica gi� presente\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "abbandona questo men�" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "mostra questo aiuto" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Chiave disponibile presso: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "cambia la data di scadenza" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "cambia il valore di fiducia" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "mostra le impronte digitali" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "genera una nuova coppia di chiavi" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Comando non valido (prova \"help\")\n" @@ -753,7 +753,7 @@ msgstr "Ripeti la passphrase: " msgid "PIN not correctly repeated; try again" msgstr "passphrase non ripetuta correttamente; prova ancora" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -769,7 +769,7 @@ msgstr "--output non funziona con questo comando\n" msgid "key \"%s\" not found: %s\n" msgstr "chiave `%s' non trovata: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1420,443 +1420,443 @@ msgstr "mostra in quali portachiavi sono contenute le chiavi elencate" msgid "show expiration dates during signature listings" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "" "NOTA: il vecchio file `%s' con le opzioni predefinite � stato ignorato\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: manca il file `%s' con le opzioni predefinite\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "file con le opzioni `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lettura delle opzioni da `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s normalmente non deve essere usato!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "l'estensione crittografica \"%s\" non � stata caricata a causa dei\n" "permessi insicuri.\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non � un set di caratteri valido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non � un set di caratteri valido\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossibile fare il parsing dell'URI del keyserver\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non � un set di caratteri valido\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "l'URL della politica di firma indicato non � valido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non � un set di caratteri valido\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non � un set di caratteri valido\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossibile impostare exec-path a %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENZIONE: %s ha la precedenza su %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Non � permesso usare %s con %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "Non ha senso usare %s con %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent non � disponibile in questa sessione\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "nella modalit� --pgp2 puoi fare solo firme in chiaro o separate\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "nella modalit� --pgp2 non puoi firmare e cifrare contemporaneamente\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "devi usare dei file (e non una pipe) quando lavori con --pgp2 attivo.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "nella modalit� --pgp2 � richiesto il cifrario IDEA per cifrare un messaggio\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non � valido\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non � valido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non � valido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non � valido\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve essere maggiore di 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve essere maggiore di 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve essere tra 1 e 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level non valido; deve essere 0, 1, 2 o 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level non valido; deve essere 1, 2 o 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: l'uso del modo S2K semplice (0) � fortemente scoraggiato\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non valido; deve essere 0, 1 o 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "preferenze predefinite non valide\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferenze personali del cifrario non valide\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferenze personali del digest non valide\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferenze personali di compressione non valide\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s non funziona ancora con %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "non � possibile usare l'algoritmo di cifratura \"%s\" in modalit� %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "non � possibile usare l'algoritmo di digest \"%s\" in modalit� %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "non � possibile usare l'algoritmo di compressione \"%s\" in modalit� %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ATTENZIONE: sono stati indicati dei destinatari (-r) senza usare la\n" "crittografia a chiave pubblica\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nomefile]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nomefile]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifratura fallita: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nomefile]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "non � possibile usare %s in modalit� %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nomefile]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "non � possibile usare %s in modalit� %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nomefile]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nomefile]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nomefile]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [comandi]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [user-id] [portachiavi]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "invio al keyserver fallito: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "ricezione dal keyserver fallita: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "esportazione della chiave fallita: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "ricerca nel keyserver fallita: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aggiornamento del keyserver fallito: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "rimozione dell'armatura fallita: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo di hash non valido `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nomefile]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Vai avanti e scrivi il messaggio...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "l'URL della politica di certificazione indicato non � valido\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "l'URL della politica di firma indicato non � valido\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL della politica di firma indicato non � valido\n" @@ -2459,7 +2459,7 @@ msgid "writing to `%s'\n" msgstr "scrittura in `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "errore scrivendo il portachiavi `%s': %s\n" @@ -2549,7 +2549,7 @@ msgstr "chiave %08lX: chiave segreta con cifrario %d non valido - saltata\n" msgid "importing secret keys not allowed\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "nessun portachiavi segreto predefinito: %s\n" @@ -2672,46 +2672,46 @@ msgstr "chiave %08lX: firma della subchiave nel posto sbagliato - saltata\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chiave %08lX: classe della firma inaspettata (0x%02x) - saltata\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chiave %08lX: trovato un user ID duplicato - unito\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "ATTENZIONE: la chiave %08lX pu� essere stata revocata: scarico la chiave\n" "di revoca %08lX.\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "ATTENZIONE: la chiave %08lX pu� essere stata revocata: la chiave di\n" "revoca %08lX non � presente.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chiave %08lX: certificato di revoca \"%s\" aggiunto\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "chiave %08lX: aggiunta una firma alla chiave diretta\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "la chiave pubblica non corrisponde alla chiave segreta!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "saltata: chiave pubblica gi� presente\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "saltata: chiave pubblica gi� presente\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.3.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-11-23 11:14+0900\n" "Last-Translator: IIDA Yosiaki <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" @@ -41,9 +41,9 @@ msgstr "��%s�פ����å��Ǥ��ޤ���\n" msgid "waiting for lock on `%s'...\n" msgstr "��%s�פ���̩������ߤޤ�\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -385,7 +385,7 @@ msgstr "" "���������quoted printableʸ��������ޤ��������餯�Х��Τ���\n" "MTA��Ȥä��ΤǤ��礦\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP�����ɤ�̵���Ǥ�: %s\n" @@ -395,153 +395,153 @@ msgstr "OpenPGP�����ɤ�̵���Ǥ�: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP������no. %s��\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "����ϥХå����⡼�ɤǤϤǤ��ޤ���\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "�����? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[̤����]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "��" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "��" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "̵����" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "̤����" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "����" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "���顼�� �Τ٤����ASCII�������������Ĥ���Ƥ��ޤ���\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "���顼: ��<��ʸ���ϻȤ��ޤ���\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "���顼: ��Ťζ���϶ػߤǤ���\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "�����ɽ�ͭ�Ԥ��� (surname): " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "�����ɽ�ͭ�Ԥ�̾ (given name): " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "���顼: �Ĥʤ���̾����Ĺ�����ޤ� (���%dʸ��)��\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "��������õ������URL: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "���顼: URL��Ĺ�����ޤ� (���%dʸ��)��\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "��%s�פ��ɽФ����顼: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "�������ǡ��� (���������̾): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "���顼: �������ǡ�����Ĺ�����ޤ� (���%dʸ��)��\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, fuzzy, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "���顼: URL��Ĺ�����ޤ� (���%dʸ��)��\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "���������: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "���顼: ����ʸ�����Ĺ����̵���Ǥ���\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "���顼: ����ʸ�����̵����ʸ��������ޤ���\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "���� ((M)�ˡ�(F)��������): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "���顼: ̵���ʱ�����\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA�λ���: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "���顼: ̵���ʷ����λ��档\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "�������Ǥ��ޤ���: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "OpenPGP�����ɤǤ���ޤ���" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "���Ը�����μ������顼: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "��¸�θ�����ޤ���? (y/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "�Ź渰���ɳ��˥Хå����åפ��ޤ���? (Y/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "��¸�θ�������ޤ���? (y/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -552,120 +552,120 @@ msgstr "" " PIN = `%s' Admin PIN = `%s'\n" "���Υ��ޥ�ɤ�Ȥä��ѹ����٤��Ǥ� --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "�������븰�η������Ƥ�������:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) ��̾��\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) �Ź沽��\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) ǧ�ڸ�\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "̵��������Ǥ���\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "�����ݴɾ������Ƥ�������:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "̤�Τθ��ݸ�르�ꥺ��Ǥ�\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "������̩��ʬ��̵���Ǥ�\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "��̩���Ϥ⤦�����ɤ��ݴɤ��Ƥ���ޤ�\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "���Υ�˥塼��λ" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "�������ޥ�ɤ�ɽ��" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "���Υإ�פ�ɽ��" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "��ͭ���ǡ�����ɽ��" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "�����ɽ�ͭ�Ԥ�̾�����ѹ�" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "����õ������URL���ѹ�" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "������URL�ǻ��ꤵ�줿���ΰ����Ф�" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "��������̾���ѹ�" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "�����������ѹ�" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "�����ɽ�ͭ�Ԥ����̤��ѹ�" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "CA������ѹ�" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "��̾����PIN�ե饰��ȿž" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "����������������" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "PIN�֥��å��β�����ѹ��Υ�˥塼" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "���ޥ��> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "�������ѥ��ޥ��\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "�������ޥ�ɤ����Ĥ���Ƥ��ޤ�\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "�������ޥ�ɤ϶ػߤ���Ƥ��ޤ�\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "̵���ʥ��ޥ�� (��help�ɤ�)\n" @@ -722,7 +722,7 @@ msgstr "PIN�������: " msgid "PIN not correctly repeated; try again" msgstr "PIN������ȷ����֤��Ƥ��ޤ������Ϥ��Ƥ�������" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -738,7 +738,7 @@ msgstr "���Υ��ޥ�ɤ�--output�ϵ�ǽ���ޤ���\n" msgid "key \"%s\" not found: %s\n" msgstr "����%s�ɤ����Ĥ���ޤ���: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1372,427 +1372,427 @@ msgstr "��̩���ȸ������ΰ�����ȿž" msgid "show expiration dates during signature listings" msgstr "��̩���ؤ��б������̾������ޤ���\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "����: �Ρ�������ä����ץ���ե������%s�פϡ�̵�뤵��ޤ�\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "����: ����Υ��ץ���ե������%s�פ�����ޤ���\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "���ץ���ե������%s��: %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "��%s�פ��饪�ץ������ɤ߽Ф��ޤ�\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "����: ����%s�ϻȤ��ޤ���!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "�����Ǥʤ����ĤΤ��ᡢ�Ź�ˡ��ĥ��%s�פ�����ɤ��ޤ���\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "��%s�פϡ�ͭ����ʸ������ǤϤ���ޤ���\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "��%s�פϡ�ͭ����ʸ������ǤϤ���ޤ���\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "�������С���URL�������ǽ\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ̵���ʸ������С������ץ����Ǥ�\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "̵���ʸ������С������ץ����Ǥ�\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ̵�����ɹ��ߥ��ץ����Ǥ�\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "̵�����ɹ��ߥ��ץ����Ǥ�\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ̵���ʽ�Ф����ץ����Ǥ�\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "̵���ʽ�Ф����ץ����Ǥ�\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ̵���ʰ������ץ����Ǥ�\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "̵���ʰ������ץ����Ǥ�\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "��%s�פϡ�ͭ����ʸ������ǤϤ���ޤ���\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "���ꤵ�줿�����������С�URL��̵���Ǥ�\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "��%s�פϡ�ͭ����ʸ������ǤϤ���ޤ���\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "��%s�פϡ�ͭ����ʸ������ǤϤ���ޤ���\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ̵���ʸ��ڥ��ץ����Ǥ�\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "̵���ʸ��ڥ��ץ����Ǥ�\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path��%s��������ǽ\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ̵���ʸ��ڥ��ץ����Ǥ�\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "�ٹ�: �ץ������Υ������ե����뤬�Ǥ��뤳�Ȥ�����ޤ�!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "�ٹ�: %s��%s���ͥ��\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s��%s�ȤȤ�˻Ȥ����ȤϤǤ��ޤ���!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s��%s�ȤȤ�˻ȤäƤ�̵��̣�Ǥ�!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "���Υ��å�����gpg-agent��̵���Ǥ�\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "��%s�פ���̩�������֤���ߤޤ�\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "--pgp2�⡼�ɤǤ�ʬΥ��̾�����ꥢ��̾���������Ǥ��ޤ���\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2�⡼�ɤǤϽ�̾�ȰŹ沽��Ʊ���ˤǤ��ޤ���\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2����ꤷ���顢(�ѥ��פǤʤ�) �ե��������ꤻ�ͤФʤ�ޤ���\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2�⡼�ɤΥ�å������Ź沽�Ǥϡ�IDEA�Ź�ˡ��ɬ�פǤ�\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "���줿�Ź楢�르�ꥺ��ϡ�̵���Ǥ�\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "���줿���르�ꥺ��ϡ�̵���Ǥ�\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "���줿���̥��르�ꥺ��ϡ�̵���Ǥ�\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "���줿���������르�ꥺ��ϡ�̵���Ǥ�\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed�������ͤ�ɬ�פǤ�\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed��1����礭���ͤ�ɬ�פǤ�\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth��1����255���ϰϤǤʤ���Фʤ�ޤ���\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "̵����default-cert-level��0��1��2��3�Ǥʤ���Фʤ�ޤ���\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "̵����min-cert-level��0��1��2��3�Ǥʤ���Фʤ�ޤ���\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "����: ñ���S2K�⡼��(0)�λ��Ѥˤ϶���ȿ�Ф��ޤ�\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "̵����S2K�⡼�ɡ�0��1��3�Ǥʤ���Фʤ�ޤ���\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "̵���ʴ��������\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "̵���ʸĿ��ѰŹ�ˡ������\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "̵���ʸĿ������������\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "̵���ʸĿ��Ѱ��̤�����\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s��%s�ǵ�ǽ���ޤ���\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "�Ź楢�르�ꥺ���%s�פ�%s�⡼�ɤǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "���르�ꥺ���%s�פ�%s�⡼�ɤǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "���̥��르�ꥺ���%s�פ�%s�⡼�ɤǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "���ѥǡ����١����ν�����˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "�ٹ�: �������Ź��Ȥ鷺�ˡ������ (-r) ����ꤷ�Ƥ��ޤ�\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [�ե�����̾]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [�ե�����̾]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "��%s�פ��оΰŹ�˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [�ե�����̾]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [�ե�����̾]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--symmetric --encrypt��--s2k-mode 0�ǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "--symmetric --encrypt��%s�⡼�ɤǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [�ե�����̾]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [�ե�����̾]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [�ե�����̾]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--symmetric --sign --encrypt��--s2k-mode 0�ǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "--symmetric --sign --encrypt��%s�⡼�ɤǻȤ����ȤϤǤ��ޤ���\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [�ե�����̾]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [�ե�����̾]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [�ե�����̾]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key �桼����id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key �桼����id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key �桼����id [���ޥ��]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [�桼����id] [����]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "�������С��ؤ������˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "�������С�����μ����˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "���ν�Ф��˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "�������С��θ����˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "�������С��β����˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "��������˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "�����˼��Ԥ��ޤ���: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "̵���ʥϥå��塦���르�ꥺ���%s�פǤ�\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[�ե�����̾]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "���Ϥ��ޤ�����å��������ǤäƤ������� ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "��������줿������ݥꥷ��URL��̵���Ǥ�\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "��������줿��̾�ݥꥷ��URL��̵���Ǥ�\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "���ꤵ�줿�����������С�URL��̵���Ǥ�\n" @@ -2386,7 +2386,7 @@ msgid "writing to `%s'\n" msgstr "��%s�פؤν����\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "���ء�%s�פν���ߥ��顼: %s\n" @@ -2475,7 +2475,7 @@ msgstr "��%s: ̵���ʰŹ�ˡ%d����̩���Ǥ� - �ȤФ��ޤ�\n" msgid "importing secret keys not allowed\n" msgstr "��̩�����ɹ��ߤ϶ػߤǤ�\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "�������̩���ؤ�����ޤ���: %s\n" @@ -2595,42 +2595,42 @@ msgstr "��%s: ������̾�ξ�꤬�����äƤ��ޤ� - �ȤФ��ޤ�\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "��%s: ͽ�����̽�̾���饹 (0x%02X) - �ȤФ��ޤ�\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "��%s: ��ʣ�����桼����ID�θ��� - ʻ��\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "�ٹ�: ��%s�ϼ������줿�褦�Ǥ�: ������%s�ΰ����Ф�\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "�ٹ�: ��%s�ϼ������줿�褦�Ǥ�: ������%s���Ժߡ�\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "��%s:��%s�ɼ�����������ɲ�\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "��%s: ľ�ܸ���̾���ɲ�\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "����������̩�����ȹ礷�ޤ���!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "��̩���Ϥ⤦�����ɤ��ݴɤ��Ƥ���ޤ�\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "��̩���Ϥ⤦�����ɤ��ݴɤ��Ƥ���ޤ�\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.3\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2006-06-13 20:31+0200\n" "Last-Translator: Trond Endrest�l <[email protected]>\n" "Language-Team: Norwegian Bokm�l <[email protected]>\n" @@ -42,9 +42,9 @@ msgstr "kan ikke l�se �%s�: %s\n" msgid "waiting for lock on `%s'...\n" msgstr "venter p� l�sing av �%s� ...\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -384,7 +384,7 @@ msgid "" msgstr "" "quoted printable-tegn i armor - antakelig har en MTA med feil blitt brukt\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort er ikke tilgjengelig: %s\n" @@ -394,153 +394,153 @@ msgstr "OpenPGP-kort er ikke tilgjengelig: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP-kortnummer %s oppdaget\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "kan ikke gj�re dette i batchmodus\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Ditt valg? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[ikke satt]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "mann" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "dame" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "uspesifisert" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "ikke tvunget" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "tvunget" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Feil: Bare ren ASCII er forel�pig tillatt.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Feil: Tegnet �<� kan ikke brukes.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Feil: Doble mellomrom er ikke tillatt.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Kortholders etternavn: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Kortholders fornavn: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Feil: Det kombinerte navnet er for langt (grensa g�r ved %d tegn).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL for � hente offentlig n�kkel: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Feil: URL er for lang (grensa g�r ved %d tegn).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "feil ved lesing av �%s�: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Logindata (kontonavn): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Feil: Logindata er for langt (grensa g�r ved %d tegn).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Privat DO-data: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Feil: Privat DO for lang (grensa g�r ved %d tegn).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Spr�kpreferanser:" -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Feil: ugyldig lengde p� preferansestrengen.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Feil: ugyldig tegn i preferansestrengen.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Kj�nn ((M)ale, (F)emale eller mellomrom): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Feil: ugyldig respons.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA-fingeravtrykk: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Feil: ugyldig formattert fingeravtrykk.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "n�kkeloperasjonen er umulig: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "ikke et OpenPGP-kort" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "feil ved henting av n�v�rende n�kkelinfo: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Erstatte eksisterende n�kkel? (j/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Lage sikkerhetskopi av krypteringsn�kler utenfor kortet? (J/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Erstatte eksisterende n�kler? (j/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -551,120 +551,120 @@ msgstr "" " PIN = �%s� Admin PIN = �%s�\n" "Du b�r endre dem med kommandoen --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Vennligst velg hvilken type n�kkel du vil generere:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Signaturn�kkel\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsn�kkel\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Autentiseringsn�kkel\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Ugyldig valg.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Vennligst velg hvor n�kkelen skal lagres:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "ukjent n�kkelbeskyttelsesalgoritme\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "hemmelige deler av n�kkelen er ikke tilgjengelig.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "hemmelig n�kkel er allerede lagret p� et kort\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "avslutte denne menyen" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "vise admin-kommandoer" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "vise denne hjelpen" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "vis alle tilgjengelige data" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "endre kortholders navn" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "endre URL for � hente n�kkel" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "hente n�kkelen angitt i URL som er lagret i kortet" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "endre loginnavnet" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "endre spr�kpreferansene" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "endre kortholders kj�nn" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "vise et CA-fingeravtrykk" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "veksle tving-signatur-PIN-flagget" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "generere nye n�kler" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "meny for � endre eller fjerne blokkering av PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "bekrefte PIN og vise alle data" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Kommando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Admin-reservert kommando\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Admin-kommandoer er tillatt\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Admin-kommandoer er ikke tillatt\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Ugyldig kommando (pr�v �help�)\n" @@ -676,8 +676,7 @@ msgstr "hemmelig n�kkel er ikke tilgjengelig" #: g10/cardglue.c:432 msgid "Please insert the card and hit return or enter 'c' to cancel: " msgstr "" -"Vennligst sett inn kortet og trykk p� enter eller tast inn �c� for � " -"avbryte: " +"Vennligst sett inn kortet og trykk p� enter eller tast inn �c� for � avbryte: " #: g10/cardglue.c:444 #, fuzzy, c-format @@ -721,7 +720,7 @@ msgstr "Gjenta denne PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN ble ikke gjentatt korrekt; pr�v igjen" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -737,7 +736,7 @@ msgstr "--output virker ikke for denne kommandoen\n" msgid "key \"%s\" not found: %s\n" msgstr "n�kkelen �%s� ble ikke funnet: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1291,16 +1290,15 @@ msgstr "ADVARSEL: utrygge rettigheter p� utvidelsen �%s�\n" #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" -"ADVARSEL: utrygt eierskap p� katalogene p� niv�ene over hjemmekatalogen �%" -"s�\n" +"ADVARSEL: utrygt eierskap p� katalogene p� niv�ene over hjemmekatalogen �%s�\n" #: g10/gpg.c:1294 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" -"ADVARSEL: utrygt eierskap p� katalogene p� niv�ene over konfigurasjonsfilen " -"�%s�\n" +"ADVARSEL: utrygt eierskap p� katalogene p� niv�ene over konfigurasjonsfilen �%" +"s�\n" #: g10/gpg.c:1297 #, c-format @@ -1312,8 +1310,8 @@ msgstr "" #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" -"ADVARSEL: utrygge rettigheter p� katalogene p� niv�ene over hjemmekatalogen " -"�%s�\n" +"ADVARSEL: utrygge rettigheter p� katalogene p� niv�ene over hjemmekatalogen �%" +"s�\n" #: g10/gpg.c:1306 #, c-format @@ -1378,425 +1376,425 @@ msgstr "vise navnet til n�kkelknippene i n�kkellister" msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MERK: den gamle valgfila �%s� ble ignorert\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MERK: ingen standard valgfil �%s�\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "valgfil �%s�: %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "leser valg fra �%s�\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MERK: %s er ikke for vanlig bruk!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "cipherutvidelse �%s� ble ikke lastet p� grunn av utrygge rettigheter\n" # Tenk litt p� denne du, Trond. -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "�%s� er ikke en gyldig signaturutg�else\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "�%s� er ikke et gyldig tegnsett\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "kunne ikke parse n�kkelserverens URL\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ugyldige valg for n�kkelserver\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "ugyldige valg for n�kkelserver\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ugyldige importvalg\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "ugyldige importvalg\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ugyldige eksportvalg\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "ugyldige eksportvalg\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ugyldige listevalg\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "ugyldige listevalg\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 msgid "show only the primary user ID in signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunne ikke sette exec-path til %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ugyldig auto-key-locate-liste\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "ADVARSEL: programmet kan opprette en corefil!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ADVARSEL: %s overstyrere %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s er ikke tillatt sammen med %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er ikke fornuftig med %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "du kan bare lage adskilte eller klare signaturer i --pgp2-modus\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "du kan ikke signere og kryptere samtidig i --pgp2-modus\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "du m� bruke filer (og ikke en pipe) n�r --pgp2 er p�sl�tt\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "kryptering en melding i --pgp2-modus krever IDEA-algoritmen\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "valgt krypteringsalgoritme er ugyldig\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "valg digestalgoritme er ugyldig\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "valgt kompresjonsalgoritme er ugyldig\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "valgt sertifikasjondigestalgoritme er ugyldig\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed m� v�re st�rre enn 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-neede m� v�re st�rre enn 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth m� v�re i intervallet fra 1 til 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ugyldig default-cert-level; m� v�re 0, 1, 2 eller 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ugyldig min-cert-level; m� v�re 0, 1, 2 eller 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MERK: enkel S2K-modus (0) er sterkt frar�det\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K-modus; m� v�re 0, 1 eller 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "ugyldig standard preferanser\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "ugyldig personlig cipherpreferanser\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "ugyldig personlig digestpreferanser\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "ugyldig personlig kompresjonspreferanser\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s virker ikke enn� med %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "du kan ikke bruke cipheralgoritmen �%s� i %s-modus\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "du kan ikke bruke digestalgoritmen �%s� i %s-modus\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "du kan ikke bruke kompresjonsalgoritmen �%s� i %s-modus\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "klarte ikke � initialisere tillitsdatabasen: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ADVARSEL: mottakere (-r) angitt uten � bruke offentlig n�kkelkryptering\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [filnavn]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av �%s� mislyktes: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnavn]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "du kan ikke bruke --symmtric --encrypt i %s-modus\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [filnavn]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnavn]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "du kan ikke bruke --symmetric --sign --encrypt i %s-modus\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnavn]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key brukerid" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key brukerid" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key brukerid [kommandoer]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [brukerid] [n�kkelknippe]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "sending til n�kkelserver mislyktes: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "mottak fra n�kkelserver mislyktes: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "n�kkeleksport mislyktes: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "s�k p� n�kkelserver mislyktes: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh p� n�kkelserver mislyktes: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hashalgoritme �%s�\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Sett i gang og tast inn meldingen din ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "den angitte URLen for sertifikasjonspolicyen er ugyldig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "den angitte URLen for signaturpolicy er ugyldig\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angitte URLen for den foretrukkede n�kkelserveren er ugyldig\n" @@ -2320,7 +2318,7 @@ msgid "writing to `%s'\n" msgstr "skriver til �%s�\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "feil ved skriving av n�kkelknippet �%s�: %s\n" @@ -2409,7 +2407,7 @@ msgstr "n�kkel %s: hemmelig n�kkel med ugyldig cipher %d - hoppet over\n" msgid "importing secret keys not allowed\n" msgstr "import av hemmelig n�kkel er ikke tillatt\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "ingen standard hemmelig n�kkelknippe: %s\n" @@ -2530,41 +2528,41 @@ msgstr "n�kkel %s: undern�kkelsignatur p� feil plass - hoppet over\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "n�kkel %s: uforventet signaturklasse (0x%02X) - hoppet over\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "n�kkel %s: duplikert brukerid oppdaget - flettet sammen\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "ADVARSEL: n�kkel %s kan v�re opphevet: henter opphevingsn�kkel %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "ADVARSEL: n�kkel %s kan v�re opphevet: opphevingsn�kkel %s ikke tilstede.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "n�kkel %s: �%s� opphevingssertifikat lagt til\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "n�kkel %s: direkte n�kkelsignatur lagt til\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "" @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.6\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-03-05 10:27+0100\n" "Last-Translator: Ivar Snaaijer\n" "Language-Team: none\n" @@ -62,9 +62,9 @@ msgstr "‘%s’ is in gebruik: %s\n" msgid "waiting for lock on `%s'...\n" msgstr "wacht op vrijkomen van ‘%s’...\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -411,7 +411,7 @@ msgstr "" "’quoted printable’ teken gevonden in versleutelings gegevens - \n" "mogelijk heeft de verzender een slecht gemaakt email programma gebruikt\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP kaart is niet beschikbaar: %s\n" @@ -421,158 +421,158 @@ msgstr "OpenPGP kaart is niet beschikbaar: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP kaart nummer %s gevonden\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "dit is niet mogelijk in automatische modus\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Uw keuze? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[niet ingesteld]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "man" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "vrouw" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "niet gespecifiseerd" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "niet geforceerd" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "geforceerd" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Fout: Alleen platte ASCII is hier toegestaan.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Fout: U mag het “<” teken hier niet gebruiken.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Fout: U mag geen dubbele spatie gebruiken.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Achternaam van de kaarthouder: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Voornaam van de kaarthouder: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Fout: Gecombineerde naam is te lang (de limiet is %d tekens).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL om de publieke sleutel op te halen: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Fout: URL is te lang (de limiet is %d tekens).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "fout tijdens het lezen van ‘%s’: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Aanlog gegevens (Login naam): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Fout: Aanlog gegevens zijn te lang (de limiet is %d tekens).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Geheime DO-gegevens: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Fout: Geheime DO is te lang (de limiet is %d tekens).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Taal voorkeur: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Fout: verkeerde lengte van de voorkeursgegevens.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Fout: ongeldige tekens in voorkeursgegevens.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Geslacht ((M)Man, (F)Vrouw of spatie): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Fout: Ongeldige invoer.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA vingerafdruk: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fout: ongeldig vormgegeven vingerafdruk.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "sleutel actie is niet mogelijk: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "geen OpenPGP kaart" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "fout bij het ophalen van sleutel gegevens: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 #, fuzzy msgid "Replace existing key? (y/N) " msgstr "Vervangen bestaande sleutel? (j/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 #, fuzzy msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Moet er een externe reservekopie van de versleutel gegevens gemaakt worden? " "(J/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 #, fuzzy msgid "Replace existing keys? (y/N) " msgstr "Vervangen bestaande sleutels? (j/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -583,120 +583,120 @@ msgstr "" " PIN = ‘%s’ Beherder PIN = ‘%s’\n" "U wordt aangeraden deze te wijzigen met het commando --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Selecteer het sleutel type:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Handtekening sleutel\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Codeer sleutel\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Authorisatie sleutel\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Ongeldige selectie.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Selcteer waar de sleutel moet worden opgeslagen:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "onbekend beveiligings algoritme\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "geheime delen van de sleutel zijn niet beschikbaar\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "geheime sleutel staat reeds op de kaart\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "afsluiten van dit menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "tonen beheerder commando's" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "toon deze hulp" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "toon alle beschikbare gegevens" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "verander de naam van de kaarthouder" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "verander de URL van de sleutel" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "download de sleutel van de kaart URL" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "verander de aanlog naam" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "verander de taal voorkeur" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "verander de sexe van de kaarthouder" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "verander een CA vingerafdruk" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "wissel de ondertekening forceer PIN vlag" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "genereer nieuwe sleutels" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "keuzelijst voor het deblokkeren of veranderen van de PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "controleer de PIN en toon alle gegevens" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Commando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Beheerder commando\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Beheerder commando's zijn toegestaan\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Beheerder commando's zijn niet toegestaan\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Ongeldig commando (probeer “help”)\n" @@ -750,7 +750,7 @@ msgstr "Herhaal de PIN: " msgid "PIN not correctly repeated; try again" msgstr "de tweede PIN is niet gelijk, probeer opnieuw" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -766,7 +766,7 @@ msgstr "--output werkt niet voor dit commando\n" msgid "key \"%s\" not found: %s\n" msgstr "sleutel ‘%s‘ niet gevonden: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1418,439 +1418,439 @@ msgstr "tonen van de sleutelring naam bij sleutel lijsten" msgid "show expiration dates during signature listings" msgstr "tonen van verval datum bij sleutel lijsten" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "Noot: oude standaard optie ‘%s‘ genegeerd\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Noot: geen standaard optie bestand ‘%s’\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "optie bestand ‘%s’: %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lezen van opties uit ‘%s’\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "Noot: %s is niet voor normaal gebruik!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "versleutelalgoritme uitbreiding ‘%s’ is niet geladen door onveilige\n" "instellingen\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "‘%s’ is geen geldige ondertekening vervaldatum\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "‘%s’ is geen geldige tekenset\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "het was niet mogelijk de sleutel server URL te lezen\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ongeldige sleutel server opties\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "ongeldige sleutel server opties\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ongeldige importeer opties\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "ongeldige importeer opties\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ongeldige exporteer opties\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "ongeldige exporteer opties\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ongeldige lijst opties\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "ongeldige lijst opties\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "tonen foto ID tijdens ondertekening controle" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "toon procedure URL tijdens ondertekening controle" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "toon alle opmerkingen tijdens ondertekening controle" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "toon IETF opmerkingen tijdens ondertekening controle" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "toon gebruiker opmerkingen tijdens ondertekening controle" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "toon voorkeurs sleutel server tijdens ondertekening controle" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "toon gebruiker ID geldigheid tijdens ondertekening controle" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" "toon ingetrokken en verlopen gebruiker ID's tijdens ondertekening controle" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "" "toon ingetrokken en verlopen gebruiker ID's tijdens ondertekening controle" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "Controleer ondertekeningen met PKA gegevens" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" "Verhoog het vertrouwen van ondertekeningen met goedgekeurde PKA gegevens" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ongeldige controle opties\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "ongeldige controle opties\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "het is onmogelijk het programma start pad aan te passen naar %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ongeldige auto-key-locate lijst\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "ongeldige auto-key-locate lijst\n" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "Waarschuwing: het programma kan een core bestand genereren!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "Waarschuwing: %s overschrijft %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s mag niet gebruikt worden met %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s klopt niet samen met %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "Noot: %s is niet beschikbaar in deze versie\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "werkt niet met onveilig geheugen door %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "allen ontkoppelde of platte tekst ondertekeningen zijn mogelijk in --pgp2 " "modus\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "het is niet mogelijk tegelijk te ondertekenen en versleutelen in --pgp2 " "modus\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "U moet bestanden (en geen pipe) gebruiken in --pgp2 modus.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "versleutelen in --pgp2 modus heeft het IDEA versleutelalgoritme nodig\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "ongeldig versleutelalgoritme gekozen\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "ongeldig samenvatting algoritme gekozen\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "ongeldige compressie gekozen\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "ongeldig certificaat samenvatting algoritme gekozen\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed moet groter zijn dan 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed moet groter zijn dan 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth moet vallen tussen dan 1 en 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ongeldige default-cert-level; moet 0, 1, 2, of 3 zijn\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ongeldige min-cert-level; moet 1, 2, of 3 zijn\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Noot: eenvoudige S2K modus (0) wordt sterk afgeraden\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ongeldige S2K modus; moet 0, 1 of 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "ongeldige standaard voorkeuren\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "ongeldig persoonlijk versleutelalgoritme voorkeur\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "ongeldig persoonlijk samenvattings algoritme voorkeur\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "ongeldig persoonlijk compressie algoritme voorkeur\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s werkt nog niet met %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "U mag versleutelalgoritme ‘%s’ niet gebruiken in %s modus\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "U mag samenvattings algoritme ‘%s’ niet gebruiken in %s modus\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "U mag compressie algoritme ‘%s’ niet gebruiken in %s modus\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "initialiseren van TrustDB is mislukt: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "Waarschuwing: er zijn ontvangers (-r) opgegeven zonder publieke sleutel " "versleuteling\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [bestandsnaam]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [bestandsnaam]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symetrische versleuteling van ‘%s’ is mislukt: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [bestandsnaam]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [bestandsnaam]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" "U kunt --symmetric --encrypt niet gebruiken met --s2k-mode 0 instelling\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "U kunt --symmetric --encrypt niet in %s modus gebruiken\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [bestandsnaam]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [bestandsnaam]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [bestandsnaam]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "U kunt --symmetric --sign --encrypt niet gebruiken met --s2k-mode 0 " "instelling\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "U kunt --symmetric --sign --encrypt niet in %s modus gebruiken\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [bestandsnaam]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [bestandsnaam]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [bestandsnaam]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key gebruiker-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key gebruiker-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key gebruiker-id [commando's]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [gebruiker-id] [sleutelringbestand]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "sleutelserver verzending is mislukt: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "sleutelserver opvraging is mislukt: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "sleutel exporteren is mislukt: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "sleutelserver zoekvraag is mislukt: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "sleutelserver verversing is mislukt: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "verwijderen van versleuteling is mislukt: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "plaatsen van versleuteling is mislukt: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ongeldig berichtsamenvattings algoritme ‘%s’\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[bestandsnaam]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Begin uw bericht te typen ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "de opgegeven certificaat procedure URL is ongeldig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "de opgegeven ondertekening procedure URL is ongeldig\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "de opgegeven sleutelserver URL is ongeldig\n" @@ -2459,7 +2459,7 @@ msgid "writing to `%s'\n" msgstr "schrijven naar ‘%s’\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "fout bij het schrijven naar sleutelring ‘%s’: %s\n" @@ -2550,7 +2550,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "importeren van geheime sleutels is niet toegestaan\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "geen standaard geheim sleutelringbestand: %s\n" @@ -2676,44 +2676,44 @@ msgstr "" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "sleutel %s: onverwachte ondertekening klasse (0x%02X) - overgeslagen\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "sleutel %s: dubbele Gebruikers ID gevonden - samengevoegd\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "Waarschuwing: sleutel %s kan ingetrokken zijn: ophalen intrekkingssleutel %" "s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "Waarschuwing: sleutel %s kan ingetrokken zijn: intrekkingssleutel %s niet " "aanwezig.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "sleutel %s: “%s” intrekkingscertificaat toegevoegd\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "sleutel %s: directe sleutel ondertekening toegevoegd\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "Noot: een serienummer van een sleutel klopt niet met de kaart\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "Noot: primaire sleutel is online en opgeslagen op de kaart\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "Noot: secondaire sleutel is online en opgeslagen op de kaart\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.4.8\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-12-12 18:41+0100\n" "Last-Translator: Janusz A. Urbanowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" @@ -50,9 +50,9 @@ msgstr "nie mo�na zablokowa� ,,%s'': %s\n" msgid "waiting for lock on `%s'...\n" msgstr "oczekiwanie na blokad� ,,%s''...\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -402,7 +402,7 @@ msgstr "" "znak kodowania quoted-printable w opakowaniu ASCII - prawdopodobnie\n" "przek�amanie wprowadzone przez serwer pocztowy\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "brak karty w standardzie OpenPGP: %s\n" @@ -412,153 +412,153 @@ msgstr "brak karty w standardzie OpenPGP: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "Karta OpenPGP numer %s\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "nie dzia�a w trybie wsadowym\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Tw�j wyb�r? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[brak]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "m�czyzna" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "kobieta" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "bez odpowiedzi" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "nie wymuszone" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "wymuszone" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "B��d: dozwolone s� tylko znaki z zestawu ASCII.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "B��d: nie mo�na u�yw� znaku ,,<''.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "B��d: podw�jne spacje s� niedozwolone.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Nazwisko w�a�ciciela karty: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Imi� w�a�ciciela karty: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "B��d: pe�ne dane (imi� + nazwisko) zbyt d�ugie (limit %d znak�w).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL �r�d�a klucza publicznego:" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Blad: URL zbyt d�ugi (maksymalnie %d znak�w).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "b��d odczytu ,,%s'': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Dane do autoryzacji (nazwa konta): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "B��d: dane autoryzacyjne zbyt d�ugie (maksymalnie %d znak�w).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Prywatne dane DO: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "B��d: prywatne dane DO zbyt d�ugie (maksymalnie %d znak�w).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Ustawienia j�zyka: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "B��d: niepoprawna d�ugo�� tekstu ustawie�,\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "B��d: niew�a�ciwe znaki w tek�cie ustawie�.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Plec: M - m�czyzna, F - kobieta, lub spacja: " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "B��d: niepopawna odpowied�.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "Odcisk klucza Centrum Certyfikacji: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "B��d: niew�a�ciwy format odcisku klucza.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "u�ycie klucza niemo�liwe: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "nie jest kart� OpenPGP" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "b��d przy pobieraniu opisu klucza: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Zast�pi� istniej�cy klucz? (t/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Utworzy� poza kart� kopi� zapasow� klucza? (T/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Zast�pi� istniej�ce klucze? (t/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -569,122 +569,122 @@ msgstr "" " PIN = ,,%s'' PIN administacyjny = ,,%s''\n" "Nale�y je zmieni� komend� --change--pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Prosz� wybra� rodzaj klucza:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr "" " (1) Klucz do podpisywania\n" "\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Klucz do szyfrowania\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Klucz do autoryzacji\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Niew�a�ciwy wyb�r.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Prosz� wybra� gdzie zapisa� klucz:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "nieznany algorytm ochrony klucza\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "cz�ci tajne klucza s� niedost�pne\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "klucz tajny ju� jest zapisany na karcie\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "wyj�cie z tego menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "polecenia administracyjne" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "ten tekst pomocy" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "wszystkie dost�pne dane" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "zmiana nazwiska w�a�ciciela karty" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "zmiana URL-a klucza" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "pobranie klucza z URL-a na karcie" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "zmiana nazwy konta" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "zmiana ustawie� j�zyka" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "zmiana p�ci w�a�ciciela karty" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "zmiana odcisku centrum certyfikacji" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "prze��czenie wymuszania PIN przy podpisywaniu" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "tworzenie nowych kluczy" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "menu zmiany lub odblokowania PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "sprawdzenie PIN-u i okazanie wszystkich danych" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Polecenie> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Polecenie dost�pne tylko w trybie administracyjnym\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Polecenia administracyjne s� dozwolone\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Polecenia administracyjne s� niedozwolone\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Niepoprawna komenda (spr�buj \"help\")\n" @@ -738,7 +738,7 @@ msgstr "Powt�rz PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN nie zosta� poprawnie powt�rzony; jeszcze jedna pr�ba" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -754,7 +754,7 @@ msgstr "opcja --output nie dzia�a z tym poleceniem\n" msgid "key \"%s\" not found: %s\n" msgstr "klucz ,,%s'' nie zosta� odnaleziony: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1396,430 +1396,430 @@ msgstr "pokazywanie nazwy zbioru kluczy w li�cie kluczy" msgid "show expiration dates during signature listings" msgstr "pokazywanie dat wyga�ni�cia w li�cie podpis�w" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "UWAGA: stary domy�lny plik opcji ,,%s'' zosta� zignorowany\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "UWAGA: brak domy�lnego pliku opcji ,,%s''\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "plik opcji ,,%s'': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "odczyt opcji z ,,%s''\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "UWAGA: %s nie jest do normalnego u�ytku!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "modu� szyfru ,,%s'' nie za�adowany z powodu niebezpiecznych praw dost�pu\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr ",,%s'' nie jest poprawn� dat� wygasania wa�no�ci podpisu\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr ",,%s'' nie jest poprawn� nazw� zestawu znak�w\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "niezrozuma�y URI serwera kluczy\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: niepoprawne opcje listy kluczy\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "niepoprawne opcje listy kluczy\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "okazywanie zdj�� podczas sprawdzania podpisu" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "okazywanie URL-i do regulamin�w podczas sprawdzania podpisu" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "pokazywanie wszystkich adnotacji przy sprawdzaniu podpisu" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "pokazywanie adnotacji standardu IETF przy sprawdzaniu podpisu" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "pokazywanie adnotacji u�ytkownika przy sprawdzaniu podpisu" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "pokazywanie URL-i wybranych serwer�w kluczy" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "pokazywanie poziom�w zaufania przy sprawdzaniu podpisu" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" "okazywanie uniewa�nionych i wygas�ych identyfikator�w przy sprawdzaniu " "podpisu" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 msgid "show only the primary user ID in signature verification" msgstr "pokazywanie tylko g��wnego identyfikatora przy sprawdzaniu podpisu" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "sprawdzanie podpis�w z u�yciem danych PKA" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "podnoszenie zaufania do podpis�w na podstawie danych PKA" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nie mo�na ustawi� �cie�ki program�w wykonywalnych na %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "OSTRZE�ENIE: program mo�e stworzy� plik zrzutu pami�ci!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "OSTRZE�ENIE: %s powoduje obej�cie %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie wolno u�ywa� %s z %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nie ma sensu w po��czeniu z %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "UWAGA: %s nie jest dost�pny w tej wersji\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "z powodu %s nie b�dzie wykonane w niezabezpieczonej pami�ci\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "w trybie --pgp2 mo�na sk�ada� tylko podpisy oddzielne lub do��czone do " "tekstu\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "w trybie --pgp2 nie mo�na jednocze�nie szyfrowa� i podpisywa�\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "w trybie --pgp2 trzeba u�ywa� plik�w a nie potok�w.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "szyfrowanie wiadomo�ci w trybie --pgp2 wymaga modu�u szyfru IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "wybrany algorytm szyfruj�cy jest niepoprawny\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "wybrany algorytm skr�t�w wiadomo�ci jest niepoprawny\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "wybrany algorytm kompresji jest niepoprawny\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "wybrany algorytm skr�t�w po�wiadcze� jest niepoprawny\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "warto�� completes-needed musi by� wi�ksza od 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "warto�� marginals-needed musi by� wi�ksza od 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "warto�� max-cert-depth musi mie�ci� si� w zakresie od 1 do 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "niew�a�ciwy domy�lny poziom sprawdzania; musi mie� warto�� 0, 1, 2 lub 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" "niew�a�ciwy minimalny poziom sprawdzania; musi mie� warto�� 0, 1, 2 lub 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "UWAGA: prosty tryb S2K (0) jest stanowczo odradzany\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "niepoprawny tryb S2K; musi mie� warto�� 0, 1 lub 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "niew�a�ciwe domy�lne ustawienia\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "niew�a�ciwe ustawienia szyfr�w\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "niew�a�ciwe ustawienia skr�t�w\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "niew�a�ciwe ustawienia algorytm�w kompresji\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s jeszcze nie dzia�a z %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "szyfr ,,%s'' nie jest dost�pny w trybie %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "skr�t ,,%s'' nie jest dost�pny w trybie %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "kompresja ,,%s'' nie jest dost�pna w trybie %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicjowanie Bazy Zaufania nie powiod�o si�: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "OSTRZE�ENIE: podano adresat�w (-r) w dzia�aniu kt�re ich nie dotyczy\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [plik]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [plik]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "b��d odszyfrowywania: ,,%s'': %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [plik]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [plik]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "w trybie --s2k-mode 0 nie mo�na u�y� --symmetric --encrypt\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "w trybie %s nie mo�esz u�y� --symmetric --encrypt\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [plik]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [plik]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [plik]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "w trybie --s2k-mode 0 nie mo�esz u�y� --symmetric --sign --encrypt\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "w trybie %s nie mo�esz u�y� --symmetric --sign --encrypt\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [plik]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [plik]\"" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [plik]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key nazwa u�ytkownika" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key nazwa u�ytkownika" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key nazwa u�ytkownika [polecenia]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [identyfikator] [zbi�r kluczy]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "wysy�ka do serwera kluczy nie powiod�a si�: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "odbi�r z serwera kluczy nie powi�d� si�: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "eksport kluczy nie powi�d� si�: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "szukanie w serwerze kluczy nie powiod�o si�: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "od�wie�enie kluczy z serwera nie powiod�o si�: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "zdj�cie opakowania ASCII nie powiod�o si�: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "opakowywanie ASCII nie powiod�o si�: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "niew�a�ciwy algorytm skr�tu ,%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nazwa pliku]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Wpisz tutaj swoj� wiadomo�� ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "podany URL regulaminu po�wiadczania jest niepoprawny\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "podany URL regulaminu podpis�w jest niepoprawny\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "podany URL serwera klucza jest niepoprawny\n" @@ -2415,7 +2415,7 @@ msgid "writing to `%s'\n" msgstr "zapis do '%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "b��d zapisu zbioru kluczy '%s': %s\n" @@ -2504,7 +2504,7 @@ msgstr "klucz %s: klucz tajny z ustawionym szyfrem %d - pomini�ty\n" msgid "importing secret keys not allowed\n" msgstr "wczytywanie kluczy tajnych nie jest dozwolone\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "brak domy�lego zbioru kluczy tajnych: %s\n" @@ -2627,44 +2627,44 @@ msgstr "klucz %s: pomini�to podpis na podkluczu w niew�a�ciwym miejscu\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "klucz %s: pomini�to podpis nieoczekiwanej klasy (0x%02X)\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "key %s: do��czono powt�rzony identyfikator u�ytkownika\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "OSTRZE�ENIE: klucz %s m�g� zosta� uniewazniony:\n" " zapytanie o uniewa�niaj�cy klucz %s w serwerze kluczy\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "OSTRZE�ENIE: klucz %s m�g� zosta� uniewa�niony,\n" " brak klucza uniewa�niaj�cego %s.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "klucz %s: ,,%s'' dodano certyfikat uniewa�nienia\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "klucz %s: dodano bezpo�redni podpis\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "numer seryjny klucza nie pasuje do numeru karty\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "UWAGA: klucz g��wny jest dost�pny z karty\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "UWAGA: klucz jest dost�pny z karty\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2002-09-13 18:26+0100\n" "Last-Translator: Pedro Morais <[email protected]>\n" "Language-Team: pt <[email protected]>\n" @@ -41,9 +41,9 @@ msgstr "imposs�vel abrir `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "a escrever chave privada para `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -389,7 +389,7 @@ msgstr "" "caracter \"quoted printable\" na armadura - provavelmente um MTA com bugs " "foi usado\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "chave secreta n�o dispon�vel" @@ -399,166 +399,166 @@ msgstr "chave secreta n�o dispon�vel" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "imposs�vel fazer isso em modo n�o-interativo\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Op��o? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "Nenhum motivo especificado" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "n�o processado" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "a escrever chave p�blica para `%s'\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "prefer�ncias actualizadas" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter inv�lido na cadeia de caract�res da prefer�ncia\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter inv�lido na cadeia de caract�res da prefer�ncia\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "%s: vers�o de ficheiro inv�lida %d\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "mostra impress�o digital" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: vers�o de ficheiro inv�lida %d\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "nenhum dado OpenPGP v�lido encontrado.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro ao escrever no porta-chaves secreto `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -566,136 +566,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Op��o inv�lida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "motivo da revoca��o: " -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de compress�o desconhecido" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Componentes secretas da chave prim�ria n�o dispon�veis.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ignorado: a chave secreta j� est� presente\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "sair deste menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "comandos em conflito\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "mostra esta ajuda" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Nenhuma ajuda dispon�vel" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "muda a data de validade" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "muda os valores de confian�a" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "mostra impress�o digital" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "gerar um novo par de chaves" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Comando inv�lido (tente \"help\")\n" @@ -750,7 +750,7 @@ msgstr "Repita a frase secreta: " msgid "PIN not correctly repeated; try again" msgstr "a frase secreta n�o foi repetida corretamente; tente outra vez" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -766,7 +766,7 @@ msgstr "--output n�o funciona para este comando\n" msgid "key \"%s\" not found: %s\n" msgstr "chave `%s' n�o encontrada: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1411,441 +1411,441 @@ msgstr "mostrar em que porta-chave a chave est�" msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: o ficheiro antigo de op��es por omiss�o `%s' foi ignorado\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: ficheiro de op��es por omiss�o `%s' inexistente\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de op��es `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "a ler op��es de `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s n�o � para uso normal!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "a extens�o de cifra \"%s\" n�o foi carregada devido �s suas permiss�es " "inseguras\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "n�o consegui processar a URI do servidor de chaves\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: op��es de importa��o inv�lidas\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "op��es de importa��o inv�lidas\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: op��es de importa��o inv�lidas\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "op��es de importa��o inv�lidas\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de pol�tica de assinatura dada � inv�lida\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "n�o foi poss�vel alterar o exec-path para %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: op��es de exporta��o inv�lidas\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um ficheiro core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sobrep�e %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n�o � permitido com %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n�o faz sentido com %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "o gpg-agent n�o est� dispon�vel nesta sess�o\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "s� pode fazer assinaturas separadas ou em texto puro no modo --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "n�o pode assinar e cifrar ao mesmo tempo no modo --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "deve utilizar ficheiros (e n�o um 'pipe') quando trabalho no modo --pgp2.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "cifrar uma mensagem no modo --pgp2 necessita da cifra IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado � inv�lido\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado � inv�lido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado � inv�lido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" de certifica��o selecionado � inv�lido\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "n�vel de verifica��o por omiss�o inv�lido: deve ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "n�vel de verifica��o por omiss�o inv�lido: deve ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) n�o � recomend�vel\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K inv�lido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "prefer�ncias por omiss�o inv�lidas\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "prefer�ncias pessoais de cifra inv�lidas\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "prefer�ncias pessoais de 'digest' inv�lidas\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "prefer�ncias pessoais de compress�o inv�lidas\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s n�o faz sentido com %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "n�o pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "n�o pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "n�o pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar a base de dados de confian�a: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: destinat�rios (-r) dados sem utilizar uma cifra de chave p�blica\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nome_do_ficheiro]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifragem falhou: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "n�o pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nome_do_ficheiro]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "n�o pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_ficheiro]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_ficheiro]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id-utilizador" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizador" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizador [comandos]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-utilizador] [porta-chaves]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualiza��o da chave secreta falhou: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "cria��o de armadura falhou: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de dispers�o inv�lido `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nome_do_ficheiro]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Digite a sua mensagem ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "a URL de pol�tica de certifica��o dada � inv�lida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "a URL de pol�tica de assinatura dada � inv�lida\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de pol�tica de assinatura dada � inv�lida\n" @@ -2441,7 +2441,7 @@ msgid "writing to `%s'\n" msgstr "a escrever para `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "erro na escrita do porta-chaves `%s': %s\n" @@ -2531,7 +2531,7 @@ msgstr "chave %08lX: chave secreta com cifra inv�lida %d - ignorada\n" msgid "importing secret keys not allowed\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "sem porta-chaves p�blico por omiss�o: %s\n" @@ -2654,45 +2654,45 @@ msgstr "chave %08lX: assintura da subchave no local errado - ignorado\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chave %08lX: classe de assinatura inesperada (%02x) - ignorada\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chave %08lX: detectado ID de utilizador duplicado - fundido\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: a transferir a chave de revoca��o %" "08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: chave de revoca��o %08lX n�o " "presente.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chave %08lX: certificado de revoga��o \"%s\" adicionado\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "chave %08lX: assinatura directa de chave adicionada\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "ignorado: a chave secreta j� est� presente\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "ignorado: a chave secreta j� est� presente\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 1802a92bf..510d559a9 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 1.0\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-10-23 11:33+0200\n" "Last-Translator:\n" "Language-Team: ?\n" @@ -45,9 +45,9 @@ msgstr "imposs�vel abrir `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "escrevendo certificado privado para `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -394,7 +394,7 @@ msgstr "" "caractere \"quoted printable\" na armadura - provavelmente um MTA com bugs " "foi usado\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "chave secreta n�o dispon�vel" @@ -404,167 +404,167 @@ msgstr "chave secreta n�o dispon�vel" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "imposs�vel fazer isso em modo n�o-interativo\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Sua op��o? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "n�o processado(s)" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "escrevendo certificado p�blico para `%s'\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "lista prefer�ncias" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Caractere inv�lido no nome\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Caractere inv�lido no nome\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "erro: impress�o digital inv�lida\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "Impress�o digital:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "erro: impress�o digital inv�lida\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "nenhum dado OpenPGP v�lido encontrado.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro na escrita do chaveiro `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 #, fuzzy msgid "Replace existing key? (y/N) " msgstr "Realmente assinar? " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 #, fuzzy msgid "Replace existing keys? (y/N) " msgstr "Realmente assinar? " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -572,137 +572,137 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Esta chave n�o � protegida.\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) ElGamal (apenas criptografia)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Op��o inv�lida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "rev- revoga��es de chaves incorreta\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de compress�o desconhecido" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "chave secreta n�o dispon�vel" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ignorado: a chave secreta j� est� presente\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "sair deste menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "comandos conflitantes\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "mostra esta ajuda" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Nenhuma ajuda dispon�vel" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "muda a data de validade" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "muda os valores de confian�a" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "mostra impress�o digital" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "gerar um novo par de chaves" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "comandos conflitantes\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos conflitantes\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "escrevendo certificado privado para `%s'\n" # help ou ajuda ??? -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Comando inv�lido (tente \"help\")\n" @@ -760,7 +760,7 @@ msgstr "Repita a frase secreta: " msgid "PIN not correctly repeated; try again" msgstr "A frase secreta n�o foi repetida corretamente; tente outra vez.\n" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -776,7 +776,7 @@ msgstr "" msgid "key \"%s\" not found: %s\n" msgstr "usu�rio `%s' n�o encontrado: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, fuzzy, c-format msgid "error reading keyblock: %s\n" @@ -1422,448 +1422,448 @@ msgstr "alterna entre listagem de chave secreta e p�blica" msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: arquivo de op��es padr�o `%s' inexistente\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: arquivo de op��es padr�o `%s' inexistente\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de op��es `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lendo op��es de `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s n�o � para uso normal!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "imposs�vel escrever para o chaveiro: %s\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "chaveiro inv�lido" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 #, fuzzy msgid "invalid import options\n" msgstr "armadura inv�lida" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 #, fuzzy msgid "invalid export options\n" msgstr "chaveiro inv�lido" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "armadura inv�lida" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de pol�tica dada � inv�lida\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s n�o � um conjunto de caracteres v�lido\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "chaveiro inv�lido" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVISO: `%s' � um arquivo vazio\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um arquivo core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n�o � permitido com %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n�o faz sentido com %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "chave RSA n�o pode ser usada nesta vers�o\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "escrevendo certificado privado para `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado n�o � v�lido\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado n�o � v�lido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado n�o � v�lido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado n�o � v�lido\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "modo S2K inv�lido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "modo S2K inv�lido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) n�o � recomend�vel\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K inv�lido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid default preferences\n" msgstr "lista prefer�ncias" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "lista prefer�ncias" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "lista prefer�ncias" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "lista prefer�ncias" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s n�o faz sentido com %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "o algoritmo de criptografia selecionado n�o � v�lido\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar o banco de dados de confiabilidade: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nome_do_arquivo]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "descriptografia falhou: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_arquivo]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nome_do_arquivo]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_arquivo]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_arquivo]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id-usu�rio" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-usu�rio" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usu�rio [comandos]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-usu�rio] [chaveiro]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "enumera��o de chaves secretas falhou: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record falhou: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "enumera��o de chaves secretas falhou: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "cria��o de armadura falhou: %s\n" # "hash" poderia ser "espalhamento", mas n�o fica claro -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash inv�lido `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nome_do_arquivo]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "V� em frente e digite sua mensagem ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "a URL de pol�tica dada � inv�lida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "a URL de pol�tica dada � inv�lida\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de pol�tica dada � inv�lida\n" @@ -2405,7 +2405,7 @@ msgid "writing to `%s'\n" msgstr "escrevendo para `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "erro na escrita do chaveiro `%s': %s\n" @@ -2495,7 +2495,7 @@ msgstr "chave %08lX: chave secreta sem chave p�blica - ignorada\n" msgid "importing secret keys not allowed\n" msgstr "escrevendo certificado privado para `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, fuzzy, c-format msgid "no default secret keyring: %s\n" msgstr "imposs�vel bloquear chaveiro secreto: %s\n" @@ -2617,42 +2617,42 @@ msgstr "chave %08lX: certificado de revoga��o no local errado - ignorada\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chave %08lX: assinatura n�o export�vel (classe %02x) - ignorada\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chave %08lX: detectado ID de usu�rio duplicado - unido\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "AVISO: Esta chave foi revogada pelo seu dono!\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "AVISO: Esta chave foi revogada pelo seu dono!\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chave %08lX: certificado de revoga��o adicionado\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "chave %08lX: %d novas assinaturas\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "lid %lu n�o tem chave\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "ignorado: a chave secreta j� est� presente\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "ignorado: a chave secreta j� est� presente\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc1\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2005-05-31 22:00-0500\n" "Last-Translator: Laurentiu Buzdugan <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" @@ -42,9 +42,9 @@ msgstr "nu pot �ncuia (lock) `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "scriu cheia secret� �n `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -390,7 +390,7 @@ msgstr "" "caracter printabil �n ghilimele �n armur� - probabil a fost folosit un MTA " "cu bug-uri\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "cardul OpenPGP nu e disponibil: %s\n" @@ -400,153 +400,153 @@ msgstr "cardul OpenPGP nu e disponibil: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "cardul OpenPGP nr. %s detectat\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "nu pot face acest lucru �n modul batch\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Selec�ia d-voastr�? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[nesetat(�)]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "masculin" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "feminin" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "nespecificat(�)" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "nefor�at(�)" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "for�at(�)" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Eroare: Deocamdat� sunt permise numai caractere ASCII.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Eroare: Caracterul \"<\" nu poate fi folosit.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Eroare: Spa�iile duble nu sunt permise.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Numele de familie al proprietarului cardului: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Prenumele proprietarului cardului: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Eroare: Nume combinat prea lung (limita este de %d caractere).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL pentru a aduce cheia public�: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Eroare: URL prea lung (limita este de %d caractere).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "eroare la citire `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Date login (nume cont): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Eroare: datele de login prea lungi (limita este de %d caractere).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Date DO personale: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Eroare DO personal pre lung (limita este de %d caractere).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Preferin�e limb�: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Eroare: lungime invalid� pentru �ir preferin�e.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Eroare: caractere invalide �n �ir preferin�e.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Sex ((M)asculin, (F)eminin sau spa�iu): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Eroare: r�spuns invalid.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "Amprenta CA: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Eroare: amprent� formatat� invalid.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "opera�ia pe cheie nu e posibil�: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "nu este un card OpenPGP" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "eroare la ob�inerea informa�iei pentru cheia curent�: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "�nlocuiesc cheia existent�? (d/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Creez copie de rezerv� a cheii de cifrare �n afara cardului? (d/N) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "�nlocuiesc cheile existente? (d/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -557,120 +557,120 @@ msgstr "" " PIN = `%s' PIN Admin = `%s'\n" "Ar trebui s� le schimba�i folosind comanda --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "V� rug�m selecta�i tipul de cheie de generat:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Cheie de semnare\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Cheie de cifrare\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Cheie de autentificare\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Selec�ie invalid�.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "V� rug�m selecta�i unde s� fie stocat� cheia:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "algoritm de protec�ie a cheii necunoscut\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "p�r�i secrete ale cheii nu sunt disponibile\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "cheia secret� deja stocat� pe un card\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ie�i din acest meniu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "arat� comenzi administrare" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "afi�eaz� acest mesaj" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "afi�eaz� toate datele disponibile" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "schimb� numele purt�torului cardului" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "schimb� URL-ul de unde s� fie adus� cheia" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "adu cheia specificat� de URL-ul de pe card" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "schimb� numele de login" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "schimb� preferin�ele de limb�" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "schimb� sexul purt�torului cardului" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "schimb� o amprent� CA" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "comut� fanionul PIN de for�are a semn�turii" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "genereaz� noi chei" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "meniu pentru a schimba sau debloca PIN-ul" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "verific� PIN-ul �i listeaz� toate datele" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Comand�> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Comand� numai-administrare\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Sunt permise comenzi administrare\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Nu sunt permise comenzi administrare\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Comand� invalid� (�ncerca�i \"ajutor\")\n" @@ -727,7 +727,7 @@ msgstr "Repeta�i acest PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN-ul nu a fost repetat corect; mai �ncerca�i o dat�" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -743,7 +743,7 @@ msgstr "--output nu merge pentru aceast� comand�\n" msgid "key \"%s\" not found: %s\n" msgstr "cheia \"%s\" nu a fost g�sit�: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1398,437 +1398,437 @@ msgstr "arat� c�ruia dintre inelele de chei �i apar�ine o cheie enumerat�" msgid "show expiration dates during signature listings" msgstr "Nici o semn�tur� corespunz�toare �n inelul secret\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOT�: fisier op�iuni implicite vechi `%s' ignorat\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOT�: nici un fi�ier op�iuni implicit `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "fi�ier op�iuni `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "citesc op�iuni din `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOT�: %s nu este pentru o folosire normal�!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "extensie cifru `%s' nu a fost �nc�rcat din cauza permisiunilor nesigure " "(unsafe)\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nu este expirare de semn�tur� valid�\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nu este un set de carectere valid\n" # -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "nu am putut interpreta URL-ul serverului de chei\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: op�iuni server de chei invalide\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "op�iuni server de chei invalide\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: op�iuni import invalide\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "op�iuni import invalide\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: op�iuni export invalide\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "op�iuni export invalide\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: op�iuni enumerare invalide\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "op�iuni enumerare invalide\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nu este expirare de semn�tur� valid�\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nu este expirare de semn�tur� valid�\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nu este expirare de semn�tur� valid�\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: op�iuni verificare invalide\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "op�iuni verificare invalide\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nu pot seta cale-execu�ie ca %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: op�iuni verificare invalide\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "AVERTISMENT: programul ar putea crea un fi�ier core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTISMENT: %s �nlocuie�te %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s nu este permis cu %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nu are sens cu %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "NOT�: %s nu este disponibil �n aceast� sesiune\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nu va rula cu memorie neprotejat� (insecure) pentru c� %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "pute�i crea doar semn�turi deta�ate sau �n clar c�t� vreme sunte�i �n modul " "--pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "nu pute�i semna �i cifra �n acela�i timp c�t� vreme sunte�i �n modul --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "trebuie s� folosi�i fi�iere (�i nu un pipe) c�nd lucra�i cu modul --pgp2 " "activat.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "cifrarea unui mesaj �n modul --pgp2 necesit� un cifru IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "algoritm cifrare selectat este invalid\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "algoritm rezumat selectat este invalid\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "algoritm compresie selectat este invalid\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritm rezumat certificare selectat este invalid\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed trebuie s� fie mai mare dec�t 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed trebuie s� fie mai mare dec�t 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth trebuie s� fie �n intervalul de la 1 la 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level invalid; trebuie s� fie 0, 1, 2 sau 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level invalid; trebuie s� fie 0, 1, 2 sau 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOT�: modul S2K simplu (0) este contraindicat cu insisten��\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mod S2K invalid; trebuie s� fie 0, 1 sau 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "preferin�e implicite invalide\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferin�e cifrare personale invalide\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferin�e rezumat personale invalide\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferin�e compresie personale invalide\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s nu merge �nc� cu %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "nu pute�i folosi algoritmul de cifrare `%s' c�t� vreme �n modul %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "nu pute�i folosi algorimul de rezumat `%s' c�t� vreme �n modul %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "nu pute�i folosi algoritmul de compresie `%s' c�t� vreme �n modul %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "am e�uat s� ini�ializez TrustDB:%s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVERTISMENT: destinatari (-r) furniza�i f�r� a folosi cifrare cu cheie " "public�\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nume_fi�ier]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nume_fi�ier]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "cifrarea simetric� a lui `%s' a e�uat: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nume_fi�ier]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nume_fi�ier]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nu pute�i folosi --symmetric --encrypt cu --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "nu pute�i folosi --symmetric --encrypt c�t� vreme �n modul %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nume_fi�ier]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nume_fi�ier]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nume_fi�ier]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nu pute�i folosi --symmetric --sign --encrypt cu --s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "nu pute�i folosi --symmetric --sign --encrypt c�t� vreme �n modul %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nume_fi�ier]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nume_fi�ier]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nume_fi�ier]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id-utilizator" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizator" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizator [comenzi]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id-utilizator] [inel_chei]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "trimitere server de chei e�uat�: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recep�ie server de chei e�uat�: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "export cheie e�uat: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "c�utare server de chei e�uat�: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizare server de chei e�uat�: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminarea armurii a e�uat: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "punerea armurii a e�uat: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritm hash invalid `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nume_fi�ier]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Da�i-i drumul �i scrie�i mesajul ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "URL-ul politicii de certificare furnizat este invalid\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "URL-ul politicii de semn�turi furnizat este invalid\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" @@ -2438,7 +2438,7 @@ msgid "writing to `%s'\n" msgstr "scriu �n `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "eroare la scrierea inelului de chei `%s': %s\n" @@ -2527,7 +2527,7 @@ msgstr "cheia %s: cheie secret� cu cifru invalid %d - s�rit�\n" msgid "importing secret keys not allowed\n" msgstr "importul de chei secrete nu este permis\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "nici un inel de chei secrete implicit: %s\n" @@ -2650,42 +2650,42 @@ msgstr "cheia %s: semn�tur� subcheie �ntr-un loc gre�it - s�rit�\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "cheia %s: clas� de semn�tur� nea�teptat� (0x%02X) - s�rit�\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "cheia %s: am detectat un ID utilizator duplicat - combinate\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "AVERTISMENT: cheia %s poate fi revocat�: aduc revocarea cheii %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVERTISMENT: cheia %s poate fi revocat�: cheia de revocare %s nu este " "prezent�.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "cheia %s: am ad�ugat certificatul de revocare \"%s\"\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "cheia %s: am ad�ugat semn�tura de cheie direct�\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "NOT�: S/N-ul unei chei nu se potrive�te cu cel al cardului\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "NOT�: cheia primar� este online �i stocat� pe card\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "NOT�: cheia secundar� este online �i stocat� pe card\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 1.4.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2005-06-22 02:53+0200\n" "Last-Translator: Maxim Britov <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" @@ -40,9 +40,9 @@ msgstr "невозможно заблокировать `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "сохранение секретного ключа в `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -386,7 +386,7 @@ msgstr "" "символы quoted printable в кодировке ASCII - вероятно использовался плохой " "MTA\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Карта OpenPGP недоступна: %s\n" @@ -396,153 +396,153 @@ msgstr "Карта OpenPGP недоступна: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "Обнаружена карта OpenPGP номер %s \n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "невозможно сделать это в пакетном режиме\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Ваш выбор (?-подробнее)? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[не установлено]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "мужской" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "женский" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "не задан" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Ошибка:Допустим только чистый ASCII.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Ошибка: Нельзя использовать символ \"<\"\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Ошибка: Двойные пробелы недопустимы.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Фамилия владельца карты:" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Имя влдаельца карты:" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Ошибка: Скомбинированное имя слишком длинное (предел %d символов).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL для получения открытого ключа: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Ошибка: URL слишком длинный (предел - %d символов).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "ошибка чтения `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Учетная запись (имя):" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Ошибка: Данные учетной записи слишком длинные (предел %d символов).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Секретные DO данные:" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Ошибка: Секретные DO данные слишком длинные (предел %d символов).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Предпочитаемый язык: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Ошибка: недопустимая длина строки предпочтений.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Ошибка: недопустимые символы в строке предпочтений.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Пол ((M)Мужской, (F)Женский или пробел): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Ошибка: недопустимый ответ.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "отпечаток CA: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Ошибка: неправильный формат отпечатка.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "операция с ключом невозможна: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "карта не OpenPGP" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "ошибка при считывании информации ключа: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Заменить существующий ключ? (y/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Заменить существующие ключи? (y/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -553,122 +553,122 @@ msgstr "" " PIN = `%s' Admin PIN = `%s'\n" "Вы должны изменить их используя команду --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Выберите тип создаваемого ключа:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Ключ подписи\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Ключ шифрования\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Ключ аутентификации\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Неправильный выбор.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Выберите, где сохранить ключ:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "неизвестный алгоритм защиты ключа\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "секретные части ключа недоступны\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "секретный ключ уже сохранен в карте\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "выйти из этого меню" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "показать управляющие команды" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "показать данную справку" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "вывести все доступные данные" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "изменить имя владельца карты" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "изменить URL получения ключа" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "запросить ключ, указанный по заданному картой URL" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "изменить учетное имя" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "изменить языковые предпочтения" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "изменение пола владельца карты" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "сменить отпечаток CA" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 #, fuzzy msgid "toggle the signature force PIN flag" msgstr "переключение флага force PIN" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "сгенерировать новые ключи" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "меню изменения или разблокировки PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 #, fuzzy msgid "verify the PIN and list all data" msgstr "проверить PIN и показать все данные" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Команда> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Команды администратора\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Команды администрирования разрешены\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Команды администрирования не разрешены\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Недопустимая команда (список команд: \"help\")\n" @@ -723,7 +723,7 @@ msgstr "Повторите ввод PIN: " msgid "PIN not correctly repeated; try again" msgstr "повторный ввод PIN некорректен; попробуйте еще раз" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -739,7 +739,7 @@ msgstr "--output не работает для данной команды\n" msgid "key \"%s\" not found: %s\n" msgstr "ключ \"%s\" не найден: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1378,437 +1378,437 @@ msgstr "переключение между просмотром открыты� msgid "show expiration dates during signature listings" msgstr "Нет соответствующей подписи в связке секретных\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "ЗАМЕЧАНИЕ: старый файл конфигурации по умолчанию `%s' проигнорирован\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "ЗАМЕЧАНИЕ: файл конфигурации `%s' не обнаружен\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "файл конфигурации `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "параметры конфигурации взяты из файла `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "ЗАМЕЧАНИЕ: %s не предназначен для нормального применения!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "расширение шифра `%s' не загружено вследствие небезопасных прав доступа\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' недопустимая таблица символов\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "не могу проанализировать URL сервера ключей\n" # test it -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недопустимые параметры для сервера ключей\n" # test it -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недопустимые параметры импорта\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "недопустимые параметры импорта\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недопустимые параметры экспорта\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "недопустимые параметры экспорта\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недопустимый список параметров\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "недопустимый список параметров\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "заданный URL предпочитаемого сервера ключей неправилен\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" # test it -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недопустимые параметры проверки \n" # test it -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "недопустимые параметры проверки\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не могу определить путь запуска для %s\n" # test it -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недопустимые параметры проверки \n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "ВНИМАНИЕ: возможно создание файла дампа памяти!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ВНИМАНИЕ: %s заместит %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не допускается использовать с %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s не имеет смысла совместно с %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "ПРЕДУПРЕЖДАЮ: %s недоступен в данной версии\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "не будет работать с небезопасной памятью из-за %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "можно сделать только отделенную или прозрачную подпись в режиме --pgp2\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Вы не можете одновременно подписать и зашифровать в режиме --pgp2\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Вы должны использовать файлы (а не каналы (pipe)) в режиме --pgp2.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "для зашифрования сообщения в режиме --pgp2 требуется шифр IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "выбран неверный алгоритм шифрования\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "выбран неверный алгоритм сжатия\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция для сертификации\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed должен быть больше 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed должен быть больше 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth должен быть в диапазоне от 1 до 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "недопустимый default-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "недопустимый min-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "ЗАМЕЧАНИЕ: простой режим S2K (0) строго не рекомендуется\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "недопустимый режим S2K; должно быть 0, 1 или 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "недопустимые предпочтения по умолчанию\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "недопустимые персональные предпочтения шифра\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "недопустимые персональные предпочтения хэш-функции\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "недопустимые персональные предпочтения алгоритмов сжатия\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s пока не работает совместно с %s!\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "Вы не можете использовать шифрование `%s' в режиме %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "Вы не можете использовать хэш-функцию `%s' в режиме %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "Вы не можете использовать сжатие `%s' в режиме %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "сбой инициализации таблицы доверий: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым " "ключом\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [filename]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [filename]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "симметричное шифрование `%s' не удалось: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [filename]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [имяфайла]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "нельзя использовать --symmetric --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --encrypt в режиме %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [filename]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filename]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [имяфайла]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --sign --encrypt в режиме %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filename]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [filename]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [filename]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [commands]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [user-id] [keyring]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "сбой при отправке на сервер ключей: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "сбой при получении с сервера ключей: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "сбой при экспорте ключа: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "сбой при поиске на сервере ключей: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "сбой при обновлении с сервера ключей: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "ошибка преобразования из ASCII формата: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "ошибка преобразования в ASCII формат: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "недопустимая хэш-функция `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[filename]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Набирайте Ваше сообщение ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "заданный URL политики сертификации неверен\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "заданный URL политики подписи неверен\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "заданный URL предпочитаемого сервера ключей неправилен\n" @@ -2412,7 +2412,7 @@ msgid "writing to `%s'\n" msgstr "сохраняю в `%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "ошибка записи таблицы ключей `%s': %s\n" @@ -2501,7 +2501,7 @@ msgstr "ключ %s: секретный ключ с недопустимым ш� msgid "importing secret keys not allowed\n" msgstr "импортирование секретного ключа не позволено\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "нет основной таблицы секретных ключей: %s\n" @@ -2623,40 +2623,40 @@ msgstr "ключ %s: подпись подключа в неправильном msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "ключ %s: неизвестный класс подписи (0x%02X) - пропущена\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "ключ %s: обнаружено дублирование User ID - объединены\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "ВНИМАНИЕ: ключ %s возможно отозван: запрашиваю ключ отзыва %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "ВНИМАНИЕ: ключ %s возможно отозван: ключ отзыва %s не получен.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "ключ %s: \"%s\" добавлен сертификат отзыва\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "ключ %s: direct key signature добавлена\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "ПРЕДУПРЕЖДАЮ: S/N ключа не соответствует S/N ключа на карте\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "ПРЕДУПРЕЖДАЮ: главный ключ готов и сохранен в карте\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "ПРЕДУПРЕЖДАЮ: вторичный ключ готов и сохранен в карте\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" @@ -37,9 +37,9 @@ msgstr "nemo�no otvori� `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "zapisujem tajn� k��� do `%s'\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -386,7 +386,7 @@ msgstr "" "neplatn� znak (quoted-printable) v ASCII k�dovan� - pravdepodobne bol " "pou�it� nespr�vny MTA\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "tajn� k��� nie je dostupn�" @@ -396,166 +396,166 @@ msgstr "tajn� k��� nie je dostupn�" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 #, fuzzy msgid "can't do this in batch mode\n" msgstr "nemo�no previes� v d�vkovom m�de\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "V� v�ber? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "" -#: g10/card-util.c:411 +#: g10/card-util.c:416 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "unspecified" msgstr "D�vod nebol �pecifikovan�" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "nespracovan�" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:579 +#: g10/card-util.c:584 #, fuzzy msgid "URL to retrieve public key: " msgstr "�iadny zodpovedaj�ci verejn� k���: %s\n" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "chyba pri ��tan� `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:792 +#: g10/card-util.c:797 #, fuzzy msgid "Language preferences: " msgstr "aktualizova� predvo�by" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "neplatn� znak v re�azci s predvo�bami\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "neplatn� znak v re�azci s predvo�bami\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:844 +#: g10/card-util.c:849 #, fuzzy msgid "Error: invalid response.\n" msgstr "chyba: neplatn� odtla�ok\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "vyp�sa� fingerprint" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "chyba: neplatn� odtla�ok\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Vytvorenie k���a sa nepodarilo: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "nen�jden� �iadne platn� d�ta vo form�te OpenPGP.\n" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "chyba pri z�pise do s�boru tajn�ch k���ov `%s': %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -563,136 +563,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Pros�m, vyberte druh k���a, ktor� chcete:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 #, fuzzy msgid " (1) Signature key\n" msgstr "Platnos� podpisu vypr�ala %s\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (len na �ifrovanie)\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Neplatn� v�ber.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Pros�m v�berte d�vod na revok�ciu:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "nezn�my ochrann� algoritmus\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Tajn� �asti prim�rneho k���a nie s� dostupn�.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "presko�en�: tajn� k��� je u� v datab�ze\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ukon�i� toto menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "konfliktn� pr�kazy\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "uk�za� t�to pomoc" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "K��� k dispoz�cii na: " -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 #, fuzzy msgid "change the login name" msgstr "zmeni� dobu platnosti" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 #, fuzzy msgid "change the language preferences" msgstr "zmeni� d�veryhodnos� vlastn�ka k���a" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 #, fuzzy msgid "change a CA fingerprint" msgstr "vyp�sa� fingerprint" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 #, fuzzy msgid "generate new keys" msgstr "vytvori� nov� p�r k���ov" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Pr�kaz> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "konfliktn� pr�kazy\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "konfliktn� pr�kazy\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "zapisujem tajn� k��� do `%s'\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Neplatn� pr�kaz (sk�ste \"help\")\n" @@ -747,7 +747,7 @@ msgstr "Opakujte heslo: " msgid "PIN not correctly repeated; try again" msgstr "heslo nie je zopakovan� spr�vne; sk�ste to znovu" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -763,7 +763,7 @@ msgstr "--output pre tento pr�kaz nefunguje\n" msgid "key \"%s\" not found: %s\n" msgstr "k��� `%s' nebol n�jden�: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1415,444 +1415,444 @@ msgstr "uk� v ktorom s�bore k���ov je vyp�san� k���" msgid "show expiration dates during signature listings" msgstr "V s�bore tajn�ch k���ov ch�ba zodpovedaj�ci podpis\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZN�MKA: star� implicitn� s�bor s mo�nos�ami `%s ignorovan�'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZN�MKA: neexistuje implicitn� s�bor s mo�nos�ami `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "s�bor s mo�nos�ami `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "��tam mo�nosti z `%s'\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZN�MKA: %s nie je pre norm�lne pou�itie!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, fuzzy, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "�ifra \"%s\" nebola nahran�, preto�e pr�stupov� pr�va nie s� nastaven� " "bezpe�ne\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nie je platn� znakov� sada\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nie je platn� znakov� sada\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nemo�no pou�i� URI servera k���ov - chyba anal�zy URI\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn� parameter pre export\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "neplatn� parameter pre export\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn� parameter pre import\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "neplatn� parameter pre import\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn� parameter pre export\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "neplatn� parameter pre export\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn� parameter pre import\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "neplatn� parameter pre import\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nie je platn� znakov� sada\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan� URL pre podpisov� politiku je neplatn�\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nie je platn� znakov� sada\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nie je platn� znakov� sada\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn� parameter pre export\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "neplatn� parameter pre export\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nemo�no nastavi� exec-path na %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn� parameter pre export\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "VAROVANIE: program m��e vytvori� s�bor core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVANIE: %s prep��e %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie je dovolen� pou��va� %s s %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ned�va s %s zmysel!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent nie je v tomto seden� dostupn�\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "zapisujem tajn� k��� do `%s'\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "v m�de --pgp2 m��ete vytv�ra� len oddelen� podpisy alebo podpisy �itate�n� " "ako text\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "v m�de --pgp2 nemo�no s��asne �ifrova� a podpisova�\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "v m�de --pgp2 mus�te pou�i� s�bor (nie r�ru).\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "�ifrovanie spr�v v m�de --pgp2 vy�aduje algoritmus IDEA\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "vybran� �ifrovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "vybran� hashovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "vybran� �ifrovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran� hashovac� algoritmus je neplatn�\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "polo�ka completes-needed mus� by� v��ia ako 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "polo�ka marginals-needed mus� by� v��ia ako 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "polo�ka max-cert-depth mus� by� v rozmedz� od 1 do 255\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "neplatn� implicitn� �rove� certifik�cie; mus� by� 0, 1, 2 alebo 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "neplatn� minim�lna �rove� certifik�cie; mus� by� 0, 1, 2 alebo 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZN�MKA: jednoduch� m�d S2K (0) je d�razne nedoporu�ovan�\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatn� m�d S2K; mus� by� 0, 1 alebo 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "neplatn� defaultn� predvo�by\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "neplatn� u��vate�sk� predvo�by pre �ifrovanie\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "neplatn� u��vate�sk� predvo�by pre hashovanie\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "neplatn� u��vate�sk� predvo�by pre kompresiu\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s e�te nepracuje s %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "nem��ete pou�i� �ifrovac� algoritmus \"%s\" v m�de %s\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "nem��ete pou�i� hashovac� algoritmus \"%s\" v m�de %s\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "nem��ete pou�i� kompresn� algoritmus \"%s\" v m�de %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nem��em inicializova� datab�zu d�very: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVANIE: dan� adres�t (-r) bez pou�itia �ifrovania s verejn�m k���om\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [meno s�boru]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [meno s�boru]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "de�ifrovanie zlyhalo: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [meno s�boru]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [meno s�boru]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" "pou�itie %s nie je v m�de %s dovolen�\n" "\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [meno s�boru]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [meno s�boru]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [meno s�boru]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "pou�itie %s nie je v m�de %s dovolen�\n" "\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [meno s�boru]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [meno s�boru]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [meno s�boru]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id u��vate�a" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id u��vate�a" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id u��vate�a [pr�kazy]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id u��vate�a] [s�bor s k���mi (keyring)]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "nepodarilo posla� k��� na server: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "nepodarilo sa prija� k��� zo servera: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "nepodaril sa export k���a: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "nepodarilo sa n�js� server: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aktualiz�cia servera zlyhala: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "dek�dovanie z ASCII form�tu zlyhalo: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "k�dovanie do ASCII form�tu zlyhalo: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn� hashovac� algoritmus `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[meno s�boru]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Za�nite p�sa� svoju spr�vu ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "zadan� URL pre certifika�n� politiku je neplatn�\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "zadan� URL pre podpisov� politiku je neplatn�\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan� URL pre podpisov� politiku je neplatn�\n" @@ -2450,7 +2450,7 @@ msgid "writing to `%s'\n" msgstr "zapisujem do '%s'\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "chyba pri z�pise s�boru k���ov (keyring) `%s': %s\n" @@ -2540,7 +2540,7 @@ msgstr "k��� %08lX: tajn� k��� bez verejn�ho k���a %d - presko�en�\n" msgid "importing secret keys not allowed\n" msgstr "zapisujem tajn� k��� do `%s'\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "nie je nastaven� implicitn� s�bor tajn�ch k���ov %s\n" @@ -2664,45 +2664,45 @@ msgstr "k��� %08lX: podpis subk���a na zlom mieste - presko�en� \n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "k��� %08lX: neo�ak�van� podpisov� trieda (0x%02X) - presko�en�\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "k��� %08lX: zisten� duplikovan� identifik�tor u��vate�a - zl��en�\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "VAROVANIE: k��� %08lX m��e by� revokovan�: sk��am z�ska� revoka�n� k��� %" "08lX\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "VAROVANIE: k��� %08lX m��e by� revokovan�: revoka�n� k��� %08lX nen�jden�.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "k��� %08lX: pridan� revoka�n� certifik�t \"%s\"\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "k��� %08lX: podpis k���a n�m sam�m (direct key signature)\n" -#: g10/import.c:2295 +#: g10/import.c:2312 #, fuzzy msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "verejn� k��� nes�hlas� s tajn�m!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "presko�en�: tajn� k��� je u� v datab�ze\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "presko�en�: tajn� k��� je u� v datab�ze\n" @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 2.0\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-02-22 00:33+0100\n" "Last-Translator: Daniel Nylander <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" @@ -57,9 +57,9 @@ msgstr "kan inte låsa \"%s\": %s\n" msgid "waiting for lock on `%s'...\n" msgstr "väntar på lås på \"%s\"...\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -408,7 +408,7 @@ msgstr "" "beror sannolikt på att en felaktig e-postserver eller e-postklient har " "använts\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort är inte tillgängligt: %s\n" @@ -418,153 +418,153 @@ msgstr "OpenPGP-kort är inte tillgängligt: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP-kort nr. %s identifierades\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "kan inte göra detta i satsläge\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Vad väljer du? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[inte inställt]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "man" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "kvinna" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "ej angiven" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "inte tvingad" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "tvingad" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Fel: Endast ren ASCII tillåts för närvarande.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Fel: Tecknet \"<\" får inte användas.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Fel: Dubbla blanksteg tillåts inte.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Kortinnehavarens efternamn: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Kortinnehavarens förnamn: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Fel: Fullständigt namn för långt (gränsen är %d tecken).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "Url för att hämta publik nyckel: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Fel: URL:en är för lång (gränsen är %d tecken).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "fel vid läsning av \"%s\": %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Inloggningsdata (kontonamn): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Fel: Inloggningsdata är för långt (gräns är %d tecken).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Privat DO-data: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Fel: Privat DO för långt (gränsen är %d tecken).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Språkinställningar: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Fel: ogiltig längd på inställningssträngen\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Fel: ogiltiga tecken i inställningssträngen.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Kön ((M)an, Kvinna(F) eller blanksteg): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Fel: ogiltigt svar.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA-fingeravtryck: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fel: ogiltigt formaterat fingeravtryck.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "nyckelåtgärden är inte möjlig: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "inte ett OpenPGP-kort" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "fel när aktuell nyckelinformation hämtades: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Ersätt existerande nyckel? (j/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Skapa säkerhetskopia av krypteringsnyckel utanför kortet? (J/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Ersätt existerande nycklar? (j/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -575,122 +575,122 @@ msgstr "" " PIN-kod = \"%s\" Admin PIN-kod = \"%s\"\n" "Du bör ändra dem med kommandot --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Välj vilken typ av nyckel som ska genereras:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) Signeringsnyckel\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsnyckel\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Autentiseringsnyckel\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Ogiltigt val.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Välj var nyckeln ska sparas:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "okänd nyckelskyddsalgoritm\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "hemliga delar av nyckeln är inte tillgängliga.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "hemlig nyckel redan lagrad på ett kort\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "avsluta denna meny" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "visa administratörskommandon" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "visa denna hjälp" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "lista allt tillgängligt data" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "ändra kortinnehavarens namn" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "ändra url för att hämta nyckel" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "hämta nyckel som anges i kortets url" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "ändra inloggningsnamnet" # originalet borde ha ett value -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "ändra språkinställningarna" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "ändra kortinnehavarens kön" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "ändra ett CA-fingeravtryck" # den låter skum -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "växla flagga för att tvinga signatur-PIN-kod" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "generera nya nycklar" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "meny för att ändra eller avblockera PIN-koden" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "validera PIN-koden och lista allt data" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Kommando> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Kommandon endast för administratör\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Administrationskommandon tillåts\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Administrationskommandon tillåts inte\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Ogiltigt kommando (försök med \"help\")\n" @@ -745,7 +745,7 @@ msgid "PIN not correctly repeated; try again" msgstr "PIN-kod repeterades inte korrekt; försök igen" # se förra kommentaren -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -761,7 +761,7 @@ msgstr "--output kan inte användas för detta kommando\n" msgid "key \"%s\" not found: %s\n" msgstr "nyckeln \"%s\" hittades inte: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1409,441 +1409,441 @@ msgstr "visa nyckelringens namn i nyckellistningar" msgid "show expiration dates during signature listings" msgstr "visa utgångsdatum vid signaturlistningar" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "OBS: den gamla inställningsfilen \"%s\" används inte\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "OBS: inställningsfilen \"%s\" saknas\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "inställningsfil \"%s\": %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "läser inställningar från \"%s\"\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "OBS: %s är inte för normal användning!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "" "chiffertillägget \"%s\" lästes inte in på grund av osäkra rättigheter\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "\"%s\" är inte ett giltigt utgångsdatum för en signatur\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "\"%s\" är ingen giltig teckentabell\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "kunde inte tolka url till nyckelserver\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ogiltiga importeringsflaggor\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "ogiltiga importflaggor\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ogiltiga exportflaggor\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "ogiltiga exportinställningar\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ogiltiga listflaggor\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "ogiltiga listflaggor\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "visa foto-id vid signaturvalidering" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "visa policy-url:er vid signaturvalidering" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "visa alla notationer vid signaturvalidering" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "visa IETF-standardnotationer vid signaturvalidering" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "visa användarangivna notationer vid signaturvalidering" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "visa url:er till föredragna nyckelserver vid signaturvalidering" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "visa giltighet för användaridentitet vid signaturvalidering" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "visa spärrade och utgångna användaridentiteter i signaturvalidering" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "visa spärrade och utgångna användaridentiteter i signaturvalidering" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "validera signaturer med PKA-data" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "öka tillit på signaturer med giltigt PKA-data" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ogiltiga flaggor för validering\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "ogiltiga flaggor för validering\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunde inte ställa in exec-path till %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ogiltig auto-key-locate-lista\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "ogiltig auto-key-locate-lista\n" # Programmet skapar en avbildning (image) av minnet för att lättare kunna spåra fel. -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "VARNING: programmet kan komma att skapa en minnesavbild!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VARNING: %s gäller istället för %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s är inte tillåten tillsammans med %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "det är ingen poäng att använda %s tillsammans med %s!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "OBSERVERA: %s är inte tillgänglig i den här versionen\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kommer inte att köra med osäkert minne på grund av %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "du kan bara göra signaturer i en separat fil eller klartextsignaturer\n" "i --pgp2-läge\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "du kan inte signera och kryptera samtidigt i --pgp2-läge\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "du måste använda filer (och inte rör) i --pgp2-läge\n" # IDEA-algoritmen är patenterat i flera länder och finns därför inte med i GnuPG som standard. -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "kryptering av meddelanden i --pgp2-läge kräver IDEA-chiffret\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "den valda chifferalgoritmen är ogiltig\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "vald sammandragsalgoritm är ogiltig\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "vald komprimeringsalgoritm är ogiltig\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "vald algoritm för certifieringssammandrag är felaktig\n" # antalet betrodda signaturer som behövs (1-3) för att du ska lita på en nyckel du inte själv verifierat. -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "variabeln \"completes-needed\" måste ha ett värde som är större än 0\n" # antalet delvis betrodda signaturer som behövs (1-3) för att du ska lita på en nyckel du inte själv verifierat. -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "variabeln \"marginals-needed\" måste vara större än 1\n" # Hur djupt GnuPG ska leta i Web-of-trust. -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth måste vara inom intervallet från 1 till 255\n" # Det är nivån för hurväl du har kontrollerat att nyckeln tillhör innehavaren. -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "ogiltigt standardvärde för certifieringsnivån; måste vara 0, 1, 2 eller 3\n" # Det är nivån för hurväl du har kontrollerat att nyckeln tillhör innehavaren. -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ogiltigt minimivärde för certifieringsnivån; måste vara 1, 2 eller 3\n" # S2K har med krypteringen av hemliga nyckeln att göra -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "OBS: enkelt S2K-läge (0) rekommenderas inte\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ogiltigt S2K-läge; måste vara 0, 1 eller 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "ogiltiga standardinställningar\n" # Du kan ange de algoritmer du föredrar i prioritetsordning. Då avgör inte enbart standard (symmetrisk kryptering) eller mottagarens preferenser (kryptering till öppen nyckel). -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "ogiltig inställning av föredragna krypteringsalgoritmer\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "ogiltig inställning av föredragna kontrollsummealgoritmer\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "ogiltig inställning av föredragna kompressionsalgoritmer\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s fungerar ännu inte med %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "du får inte använda chifferalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "du får inte använda sammandragsalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "du får inte använda komprimeringsalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VARNING: mottagare (-r) angivna utan att använda publik nyckel-kryptering\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [filnamn]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [filnamn]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av \"%s\" misslyckades: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [filnamn]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnamn]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "du kan inte använda --symmetric --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "du kan inte använda --symmetric --encrypt i %s-läget\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [filnamn]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnamn]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnamn]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "du kan inte använda --symmetric --sign --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "du kan inte använda --symmetric --sign --encrypt när du är i %s-läget\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnamn]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [filnamn]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [filnamn]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key användaridentitet" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key användaridentitet" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key användaridentitet [kommandon]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [användaridentitet] [nyckelring]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "sändning till nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "hämtning från nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "export av nyckeln misslyckades: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "sökning på nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "uppdatering av nyckeln från en nyckelserver misslyckades: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "misslyckades med att ta bort ASCII-skalet: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "misslyckades med att skapa ASCII-skal: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ogiltig kontrollsummealgoritm \"%s\"\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[filnamn]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Skriv ditt meddelande här ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "den angivna URL som beskriver certifieringsspolicy är ogiltig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "den angivna URL som beskriver signaturpolicy är ogiltig\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angivna föredragna nyckelserver-url:n är ogiltig\n" @@ -2467,7 +2467,7 @@ msgid "writing to `%s'\n" msgstr "skriver till \"%s\"\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "fel vid skrivning av nyckelringen \"%s\": %s\n" @@ -2557,7 +2557,7 @@ msgstr "nyckel %s: hemlig nyckel med ogiltigt chiffer %d - hoppade över\n" msgid "importing secret keys not allowed\n" msgstr "import av hemliga nycklar tillåts inte\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "ingen hemlig nyckelring angiven som standard: %s\n" @@ -2682,42 +2682,42 @@ msgstr "nyckel %s: signatur på undernyckel på fel plats - hoppade över\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "nyckel %s: oväntad signaturklass (0x%02X) - hoppade över\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "" "nyckel %s: dubblett av användaridentiteten hittades - slog samman dem\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "VARNING: nyckeln %s kan ha spärrats: hämtar spärrnyckeln %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "VARNING: nyckeln %s kan ha spärrats: spärrnyckeln %s saknas.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "nyckel %s: \"%s\" spärrcertifikat lades till\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "nyckel %s: lade till direkt nyckelsignatur\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "" "OBSERVERA: serienumret för en nyckel stämmer inte med kortets serienummer\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "OBSERVERA: primärnyckeln är ansluten och lagrad på kort\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "OBSERVERA: sekundärnyckeln är ansluten och lagrad på kort\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.1\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2005-03-16 07:30+0300\n" "Last-Translator: Nilgün Belma Bugüner <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" @@ -39,9 +39,9 @@ msgstr "`%s' kiltlenemedi\n" msgid "waiting for lock on `%s'...\n" msgstr "gizli anahtarı `%s'e yazıyor\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -383,7 +383,7 @@ msgstr "" "zırh içinde uluslararası karakterler - büyük olasılıkla hatalı bir e-posta " "sunucusu kullanılmış\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP anahtarı kullanılabilir değil: %s\n" @@ -393,153 +393,153 @@ msgstr "OpenPGP anahtarı kullanılabilir değil: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "%s numaralı OpenPGP kartı saptandı\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "bu önceden betik kipinde yapılamaz\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "Seçiminiz? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[belirtilmedi]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "erkek" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "dişi" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "belirtilmemiş" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "zorlanmadı" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "zorlandı" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Hata: Şimdilik sadece US-ASCII mümkün.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "Hata: \"<\" karakteri kullanılmamalı.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Hata: Çift boşluğa izin verilmez.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Kart sahibinin soyadı: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Kart sahibinin adı: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Hata: İsimler birlikte çok uzun oluyor (sınır: %d karakter).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "genel anahtarın alınacağı URL: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Hata: URL çok uzun (sınır: %d karakter).\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "\"%s\" okunurken hata: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Oturum açma verisi (hesap adı): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Hata: Oturum açma verisi çok uzun (sınır: %d karakter).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Özel DO verisi: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Hata: Özel DO çok uzun (sınır: %d karakter).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Dil tercihleri: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Hata: tercih dizgesinin uzunluğu geçersiz.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Hata: tercih dizgesindeki karakterler geçersiz.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Cinsiyet ((E)rkek, (D)işi veya boşluk): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Hata: yanıt geçersiz.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA parmak izi: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "Hata: biçimli parmakizi geçersiz\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "anahtar işlemi mümkün değil: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "bir OpenPGP kartı değil" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "geçerli anahtar bilgisi alınırken hata: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Mevcut anahtar değiştirilsin mi? (e/H ya da y/N) " -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Şifreli anahtarın kartsız yedeği yapılsın mı? (E/h ya da Y/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Mevcut anahtarlar değiştirilsin mi? (e/H ya da y/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -550,120 +550,120 @@ msgstr "" " PIN = `%s' Admin PIN = `%s'\n" "Bunları --change-pin komutunu kullanarak değiştirmelisiniz\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Lütfen üretilecek anahtar türünü seçiniz:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) İmzalama anahtarı\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) Şifreleme anahtarı\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) Kimlik kanıtlama anahtarı\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "Seçim geçersiz.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Lütfen anahtarın saklanacağı yeri seçiniz:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "bilinmeyen anahtar koruma algoritması\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "anahtarın gizli parçaları kullanılabilir değil\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "gizli anahtar zaten bir kartın üzerinde saklı\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "bu menüden çık" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "yönetici komutlarını gösterir" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "bunu gösterir" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "tüm kullanılabilir veriyi listeler" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "kart sahibinin ismini değiştirir" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "anahtarın alınacağı URL değiştirilir" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "kart URL'sinde belirtilmiş anahtarı alır" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "oturum açma ismini değiştirir" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "dil tercihlerini değiştirir" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "kart sahibinin cinsiyetini değiştirir" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "bir CA parmakizini değiştirir" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "imza zorlama PIN'i bayrağını değiştirir" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "yeni anahtarlar üretir" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "PIN değiştirmek için menü" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Komut> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "Yöneticiye özel komut\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "Yönetici komutlarına izin verilir\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "Yönetici komutlarına izin verilmez\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "Komut geçersiz (\"help\" komutunu deneyin)\n" @@ -720,7 +720,7 @@ msgstr "Bu PIN'i tekrarlayın: " msgid "PIN not correctly repeated; try again" msgstr "PIN doğru tekrarlanmadı; tekrar deneyin" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -736,7 +736,7 @@ msgstr "--output seçeneği bu komutla çalışmaz\n" msgid "key \"%s\" not found: %s\n" msgstr "anahtar \"%s\" yok: %s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1374,428 +1374,428 @@ msgstr "listedeki bir anahtarın hangi anahtar zincirinde olduğunu gösterir" msgid "show expiration dates during signature listings" msgstr "Gizli anahtar demetinde uygun/benzer imza yok\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "BİLGİ: eski öntanımlı seçenekler dosyası `%s' yoksayıldı\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "BİLGİ: \"%s\" öntanımlı seçenek dosyası yok\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "seçenek dosyası \"%s\": %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "\"%s\"den seçenekler okunuyor\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "BİLGİ: %s normal kullanım için değil!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "şifre eklentisi '%s' güvensiz izinlerden dolayı yüklenmedi\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "anahtar sunucusunun adresi çözümlenemedi\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: geçersiz içselleştirme seçenekleri\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "içselleştirme seçenekleri geçersiz\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d geçersiz dışsallaştırma seçenekleri\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "dışsallaştırma seçenekleri geçersiz\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: liste seçenekleri geçersiz\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "liste seçenekleri geçersiz\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 #, fuzzy msgid "show all notations during signature verification" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "belirtilen anahtar sunucusu adresi geçersiz\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "çalıştırılabilirlerin patikası %s yapılamıyor\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "UYARI: program bir \"core\" dosyası oluşturabilir!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "UYARI: %s %s'i aşıyor\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ile %s birlikte kullanılmaz!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s, %s ile etkisiz olur!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, fuzzy, c-format msgid "NOTE: %s is not available in this version\n" msgstr "gpg-agent bu oturumda kullanılamaz\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%s olmasından dolayı güvensiz bellekle çalıştırılmayacak\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "--pgp2 kipindeyken sadece ayrık veya sade imzalar yapabilirsiniz\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2 kipinde aynı anda hem imzalama hem de şifreleme yapamazsınız\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2 ile çalışırken veri yolu yerine dosyaları kullanmalısınız.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2 kipinde ileti şifrelemesi IDEA şifresi gerektirir\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "seçilen özümleme algoritması geçersiz\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "seçilen sertifikalama özümleme algoritması geçersiz\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "\"completes-needed\" 0 dan büyük olmalı\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "\"marginals-needed\" 1 den büyük olmalı\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "\"max-cert-depth\" 1 ile 255 arasında olmalı\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "öntanımlı sertifika seviyesi geçersiz; 0, 1, 2, ya da 3 olabilir\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "asgari sertifika seviyesi geçersiz; 1, 2, ya da 3 olabilir\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "BİLGİ: basit S2K kipi (0) kesinlikle tavsiye edilmez\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "S2K kipi geçersiz; 0, 1 veya 3 olmalı\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "öntanımlı tercihler geçersiz\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "kişisel şifre tercihleri geçersiz\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "kişisel özümleme tercihleri geçersiz\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "kişisel sıkıştırma tercihleri geçersiz\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s, %s ile henüz çalışmıyor\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' şifreleme algoritması kullanılamaz\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' özümleme algoritması kullanılamaz\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' sıkıştırma algoritması kullanılamaz\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "\"TrustDB\" güvence veritabanı başlangıç aşamasında başarısız: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "UYARI: alıcılar (-r) genel anahtar şifrelemesi kullanılmadan belirtilmiş\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [dosyaismi]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [dosyaismi]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "`%s' için simetrik şifreleme başarısız: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [dosyaismi]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [dosyaismi]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--s2k-mode 0 ile --symmetric --encrypt kullanamazsınız\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "%s kipindeyken --symmetric --encrypt kullanamazsınız\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [dosyaismi]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosyaismi]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [dosyaismi]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--s2k-mode 0 ile --symmetric --sign --encrypt kullanamazsınız\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "%s kipindeyken --symmetric --sign --encrypt kullanamazsınız.\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [DOSYA]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [dosyaismi]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [dosyaismi]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key kullanıcı-kimliği" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key kullanıcı-kimliği" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key kullanıcı-kimliği [komutlar]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [kullanıcı-kimliği] [anahtar-zinciri]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "anahtar sunucusuna gönderim başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "anahtar sunucusundan alım başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "anahtar ihracı başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "anahtar sunucusunda arama başarısız: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "anahtar sunucusunda tazeleme başarısız: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "zırhın kaldırılması başarısız: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "zırhlama başarısız: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "`%s' hash algoritması geçersiz\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[dosyaismi]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "İletinizi yazın ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "belirtilen sertifika güvence adresi geçersiz\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "belirtilen imza güvence adresi geçersiz\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "belirtilen anahtar sunucusu adresi geçersiz\n" @@ -2391,7 +2391,7 @@ msgid "writing to `%s'\n" msgstr "\"%s\"e yazıyor\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "\"%s\" anahtar zincirine yazarken hata oluştu: %s\n" @@ -2480,7 +2480,7 @@ msgstr "anahtar %s: geçersiz şifreli (%d) gizli anahtar - atlandı\n" msgid "importing secret keys not allowed\n" msgstr "gizli anahtarı alımına izin verilmez\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "öntanımlı gizli anahtar zinciri yok: %s\n" @@ -2606,44 +2606,44 @@ msgstr "anahtar %s: yardımcı anahtar imzası yanlış yerde - atlandı\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "anahtar %s: umulmayan imza sınıfı (0x%02X) - atlandı\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "anahtar %s: çift kullanıcı kimliği saptandı - birleştirildi\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "UYARI: anahtar %s yürürlükten kaldırılmış olmalı: yürürlükten kaldırma " "anahtarı %s alınıyor\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "UYARI: anahtar %s yürürlükten kaldırılmış olabilir: yürürlükten kaldırma " "anahtarı %s mevcut değil.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "anahtar %s: \"%s\" yürürlükten kaldırma sertifikası eklendi\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "anahtar %s: doğrudan anahtar imzası eklendi\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "BİLGİ: bir anahtarın seri numarası kartlardan biriyle uyuşmuyor\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "BİLGİ: asıl anahtar kart üzerinde saklı ve kullanılabilir\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "BİLGİ: ikincil anahtar kart üzerinde saklı ve kullanılabilir\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7b3f2fb63..0c214625c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.7\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-11-26 13:41+0800\n" "Last-Translator: Meng Jie <[email protected]>\n" "Language-Team: Chinese (simplified) <translation-team-zh-cn@lists." @@ -44,9 +44,9 @@ msgstr "无法锁定‘%s’:%s\n" msgid "waiting for lock on `%s'...\n" msgstr "等待‘%s’上的锁\n" -#: cipher/random.c:446 g10/card-util.c:676 g10/card-util.c:745 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 #: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 -#: g10/gpg.c:1015 g10/gpg.c:3583 g10/import.c:193 g10/keygen.c:2403 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 #: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 #: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 #: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 @@ -384,7 +384,7 @@ msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "封装里出现括上的可打印字符――可能是有缺陷的信件传输程序造成的\n" -#: g10/card-util.c:61 g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP 卡不可用:%s\n" @@ -394,153 +394,153 @@ msgstr "OpenPGP 卡不可用:%s\n" msgid "OpenPGP card no. %s detected\n" msgstr "检测到 OpenPGP 卡号 %s\n" -#: g10/card-util.c:74 g10/card-util.c:1404 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 #: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "在批处理模式中无法完成此操作\n" -#: g10/card-util.c:101 g10/card-util.c:1130 g10/card-util.c:1213 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 #: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "您的选择? " -#: g10/card-util.c:214 g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[未设定]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "男性" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "女性" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "未定义" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "可选" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "必须" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "错误:目前只允许使用 ASCII 字符。\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "错误:不能使用字符“<”。\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "错误:不允许出现两个空格。\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "智能卡持有人的姓:" -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "智能卡持有人的名:" -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "错误:合成的姓名太长(至多 %d 个字符)。\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "获取公钥的 URL:" -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "错误:URL 太长(至多 %d 个字符)\n" -#: g10/card-util.c:685 g10/card-util.c:754 g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "读取‘%s’时出错:%s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "登录数据(帐号名):" -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "错误:登录数据太长(至多 %d 个字符)。\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "个人 DO 数据:" -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "错误:个人 DO 太长(至多 %d 个字符)。\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "首选语言:" -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "错误:首选项字符串长度无效。\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "错误:首选项字符串里有无效字符。\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "性别(男性输入 M,女性输入 F,不指定输入空格):" -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "错误:无效的响应。\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "CA 指纹:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "错误:指纹格式无效。\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "针对密钥的操作无法实现:%s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "不是一个 OpenPGP 卡" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "取得当前密钥信息时出错:%s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "替换已有的密钥?(y/N)" -#: g10/card-util.c:1052 g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "是否为加密密钥创建智能卡外的备份?(Y/n)" -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "替换已有的密钥?(y/N)" -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -551,120 +551,120 @@ msgstr "" " PIN = ‘%s’ 管理员 PIN = ‘%s’\n" "您应当使用 --change-pin 命令来更改它们\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "请选择您要使用的密钥种类:\n" -#: g10/card-util.c:1123 g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) 签名密钥\n" -#: g10/card-util.c:1124 g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) 加密密钥\n" -#: g10/card-util.c:1125 g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) 认证密钥\n" -#: g10/card-util.c:1141 g10/card-util.c:1224 g10/keyedit.c:938 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 #: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "无效的选择。\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "请选择在哪里存储密钥:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "不支持的密钥保护算法\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "私钥部分不可用\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "私钥已存储在智能卡上\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "离开这个菜单" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "显示管理员命令" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "显示这份在线说明" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "列出所有可用数据" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "更改智能卡持有人的姓名" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "更改获取密钥的 URL" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "根据智能卡中指定的 URL 获取密钥" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "更改登录名" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "更改首选语言首选" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "更改智能卡持有人的性别" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "更改一个 CA 指纹" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "设定 PIN 签名是否必须" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "生成新的密钥" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "更改或解锁 PIN 的菜单" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "验证 PIN 并列出所有数据" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "命令> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "仅供管理员使用的命令\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "允许使用管理员命令\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "不允许使用管理员命令\n" -#: g10/card-util.c:1600 g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "无效的指令(尝试“help”)\n" @@ -718,7 +718,7 @@ msgstr "再次输入此 PIN:" msgid "PIN not correctly repeated; try again" msgstr "PIN 再次输入时与首次输入不符;请再试一次" -#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3948 g10/keyring.c:375 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 #: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" @@ -734,7 +734,7 @@ msgstr "--output 在这个命令中不起作用\n" msgid "key \"%s\" not found: %s\n" msgstr "密钥‘%s’找不到:%s\n" -#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2361 g10/keyserver.c:1725 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 #: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" @@ -1355,423 +1355,423 @@ msgstr "列出密钥时显示钥匙环的名称" msgid "show expiration dates during signature listings" msgstr "列出签名时显示过期日期" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "注意:旧式的默认配置文件‘%s’已被忽略\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "注意:没有默认配置文件‘%s’\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "配置文件‘%s’:%s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "从‘%s’读取选项\n" -#: g10/gpg.c:2265 g10/gpg.c:2933 g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "注意:一般情况下不会用到 %s!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "对称加算密法扩展模块‘%s’因为权限不安全而未被载入\n" -#: g10/gpg.c:2467 g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "‘%s’不是一个有效的签名过期日期\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "‘%s’不是一个有效的字符集\n" -#: g10/gpg.c:2580 g10/gpg.c:2769 g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "无法解析公钥服务器 URL\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d:无效的公钥服务器选项\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "无效的公钥服务器选项\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d:无效的导入选项\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "无效的导入选项\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d:无效的导出选项\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "无效的导出选项\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d:无效的列表选项\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "无效的列表选项\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "验证签名时显示照片标识" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "验证签名时显示策略 URL" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "验证签名时显示所有注记" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "验证签名时显示 IETF 标准注记" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "验证签名时显示用户提供的注记" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "验证签名时显示首选公钥服务器 URL" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "验证签名时显示用户标识的有效性" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 msgid "show only the primary user ID in signature verification" msgstr "在签名验证中只显示主用户标识" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "使用 PKA 数据验证签名的有效性" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "提升带有有效 PKA 数据的签名的信任度" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d:无效的校验选项\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "无效的校验选项\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "无法把运行路径设成 %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d:无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "警告:程序可能会创建核心内存转储!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告:%s 会使得 %s 失效\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不可与 %s 并用\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 与 %s 并用无意义!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "注意:%s 本版本中不可用\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "不会在内存不安全的情况下运行,原因是 %s\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "您只有在 --pgp2 模式下才能做分离式或明文签名\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "您在 --pgp2 模式下时,不能同时签名和加密\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "启用 --pgp2 时您应该只使用文件,而非管道\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密报文需要 IDEA 算法\n" -#: g10/gpg.c:3066 g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "所选的对称加密算法无效\n" -#: g10/gpg.c:3072 g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "所选的散列算法无效\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "所选的压缩算法无效\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "所选的证书散列算法无效\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "需要的完全可信签名数一定要大于 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "需要的勉强可信签名数一定要大于 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "最大验证深度一定要介于 1 和 255 之间\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "无效的默认验证级别;一定要是 0,1,2 或 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "无效的最小验证级别;一定要是 1,2 或 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "注意:强烈不建议使用简单的 S2K 模式(0)\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "无效的 S2K 模式;必须是 0,1 或 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "无效的默认首选项\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "无效的个人对称加密算法首选项\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "无效的个人散列算法首选项\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "无效的个人压缩算法首选项\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 尚不能和 %s 并用\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’对称加密算法\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’散列算法\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’压缩算法\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "初始化信任度数据库失败:%s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告:给定了收件人(-r)但并未使用公钥加密\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [文件名]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [文件名]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "对称加密‘%s’失败:%s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [文件名]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [文件名]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric -encrypt\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [文件名]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [文件名]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [文件名]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --sign --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric --sign -encrypt\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [文件名]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [文件名]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [文件名]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key 用户标识" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key 用户标识" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key 用户标识 [指令]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [用户标识] [钥匙环]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "上传至公钥服务器失败:%s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "从公钥服务器接收失败:%s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "导出密钥失败:%s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "搜寻公钥服务器失败:%s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "从公钥服务器更新失败:%s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "解开 ASCII 封装失败:%s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "进行 ASCII 封装失败:%s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "无效的‘%s’散列算法\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[文件名]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "请开始键入您的报文……\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "给定的的验证策略 URL 无效\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "给定的签名策略 URL 无效\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "给定的首选公钥服务器 URL 无效\n" @@ -2341,7 +2341,7 @@ msgid "writing to `%s'\n" msgstr "正在写入‘%s’\n" #: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 -#: g10/import.c:2375 g10/import.c:2397 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "写入钥匙环‘%s’时出错: %s\n" @@ -2430,7 +2430,7 @@ msgstr "密钥 %s:私钥使用了无效的加密算法 %d――已跳过\n" msgid "importing secret keys not allowed\n" msgstr "不允许导入私钥\n" -#: g10/import.c:1151 g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "没有默认的私钥钥匙环: %s\n" @@ -2554,40 +2554,40 @@ msgstr "密钥 %s:子钥签名位置错误――已跳过\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "密钥 %s:与预期不符的签名验证级别(0x%02X)――已跳过\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "密钥 %s:检测到重复的用户标识――已合并\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "警告:密钥 %s 可能已被吊销:正在取回吊销密钥 %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "警告:密钥 %s 可能已被吊销:吊销密钥 %s 不存在。\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "密钥 %s:已新增吊销证书“%s”\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "密钥 %s:已新增直接密钥签名\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "注意:密钥的序列号与智能卡的不符\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "注意:主钥在线,存储在智能卡上\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "注意:子钥在线,存储在智能卡上\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 365c402a2..225df0e7b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2007-12-14 11:58+0100\n" +"POT-Creation-Date: 2008-03-25 09:52+0100\n" "PO-Revision-Date: 2007-12-29 20:48+0800\n" "Last-Translator: Jedi <[email protected]>\n" "Language-Team: Chinese (traditional) <[email protected]>\n" @@ -42,28 +42,12 @@ msgstr "無法鎖定 `%s': %s\n" msgid "waiting for lock on `%s'...\n" msgstr "正在等候 `%s' 鎖定...\n" -#: cipher/random.c:446 -#: g10/card-util.c:676 -#: g10/card-util.c:745 -#: g10/dearmor.c:59 -#: g10/dearmor.c:108 -#: g10/encode.c:182 -#: g10/encode.c:472 -#: g10/gpg.c:1015 -#: g10/gpg.c:3583 -#: g10/import.c:193 -#: g10/keygen.c:2403 -#: g10/keyring.c:1523 -#: g10/openfile.c:188 -#: g10/openfile.c:356 -#: g10/plaintext.c:490 -#: g10/sign.c:776 -#: g10/sign.c:969 -#: g10/sign.c:1083 -#: g10/sign.c:1234 -#: g10/tdbdump.c:139 -#: g10/tdbdump.c:147 -#: g10/tdbio.c:538 +#: cipher/random.c:446 g10/card-util.c:681 g10/card-util.c:750 +#: g10/dearmor.c:59 g10/dearmor.c:108 g10/encode.c:182 g10/encode.c:472 +#: g10/gpg.c:1015 g10/gpg.c:3605 g10/import.c:193 g10/keygen.c:2403 +#: g10/keyring.c:1523 g10/openfile.c:188 g10/openfile.c:356 +#: g10/plaintext.c:490 g10/sign.c:776 g10/sign.c:969 g10/sign.c:1083 +#: g10/sign.c:1234 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:538 #: g10/tdbio.c:603 #, c-format msgid "can't open `%s': %s\n" @@ -96,24 +80,14 @@ msgstr "無法讀取 `%s': %s\n" msgid "note: random_seed file not updated\n" msgstr "請注意: random_seed 檔案未更新\n" -#: cipher/random.c:542 -#: g10/exec.c:479 -#: g10/gpg.c:1014 -#: g10/keygen.c:2889 -#: g10/keygen.c:2919 -#: g10/keyring.c:1199 -#: g10/keyring.c:1499 -#: g10/openfile.c:277 -#: g10/openfile.c:371 -#: g10/sign.c:794 -#: g10/sign.c:1099 -#: g10/tdbio.c:534 +#: cipher/random.c:542 g10/exec.c:479 g10/gpg.c:1014 g10/keygen.c:2889 +#: g10/keygen.c:2919 g10/keyring.c:1199 g10/keyring.c:1499 g10/openfile.c:277 +#: g10/openfile.c:371 g10/sign.c:794 g10/sign.c:1099 g10/tdbio.c:534 #, c-format msgid "can't create `%s': %s\n" msgstr "無法建立 `%s': %s\n" -#: cipher/random.c:554 -#: cipher/random.c:564 +#: cipher/random.c:554 cipher/random.c:564 #, c-format msgid "can't write `%s': %s\n" msgstr "無法寫入 `%s': %s\n" @@ -176,40 +150,30 @@ msgstr "存放創生日期失敗: %s\n" msgid "reading public key failed: %s\n" msgstr "讀取公鑰時失敗: %s\n" -#: g10/app-openpgp.c:983 -#: g10/app-openpgp.c:1908 +#: g10/app-openpgp.c:983 g10/app-openpgp.c:1908 msgid "response does not contain the public key data\n" msgstr "回應中未包含公鑰資料\n" -#: g10/app-openpgp.c:991 -#: g10/app-openpgp.c:1916 +#: g10/app-openpgp.c:991 g10/app-openpgp.c:1916 msgid "response does not contain the RSA modulus\n" msgstr "回應中未包含 RSA 系數\n" -#: g10/app-openpgp.c:1000 -#: g10/app-openpgp.c:1926 +#: g10/app-openpgp.c:1000 g10/app-openpgp.c:1926 msgid "response does not contain the RSA public exponent\n" msgstr "回應中未包含 RSA 公用指數\n" -#: g10/app-openpgp.c:1256 -#: g10/app-openpgp.c:1344 -#: g10/app-openpgp.c:2152 +#: g10/app-openpgp.c:1256 g10/app-openpgp.c:1344 g10/app-openpgp.c:2152 #, c-format msgid "PIN callback returned error: %s\n" msgstr "收回個人識別碼 (PIN) 時傳回錯誤: %s\n" -#: g10/app-openpgp.c:1262 -#: g10/app-openpgp.c:1350 -#: g10/app-openpgp.c:2158 +#: g10/app-openpgp.c:1262 g10/app-openpgp.c:1350 g10/app-openpgp.c:2158 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "用於 CHV%d 的個人識別碼 (PIN) 太短; 長度最少要有 %d\n" -#: g10/app-openpgp.c:1271 -#: g10/app-openpgp.c:1285 -#: g10/app-openpgp.c:1360 -#: g10/app-openpgp.c:2167 -#: g10/app-openpgp.c:2181 +#: g10/app-openpgp.c:1271 g10/app-openpgp.c:1285 g10/app-openpgp.c:1360 +#: g10/app-openpgp.c:2167 g10/app-openpgp.c:2181 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "驗證 CHV%d 失敗: %s\n" @@ -218,13 +182,11 @@ msgstr "驗證 CHV%d 失敗: %s\n" msgid "access to admin commands is not configured\n" msgstr "管理者指令存取權限尚未組態\n" -#: g10/app-openpgp.c:1323 -#: g10/app-openpgp.c:2428 +#: g10/app-openpgp.c:1323 g10/app-openpgp.c:2428 msgid "error retrieving CHV status from card\n" msgstr "從卡片取回 CHV 狀態時出錯\n" -#: g10/app-openpgp.c:1329 -#: g10/app-openpgp.c:2437 +#: g10/app-openpgp.c:1329 g10/app-openpgp.c:2437 msgid "card is permanently locked!\n" msgstr "卡片永久鎖定了!!\n" @@ -256,13 +218,11 @@ msgstr "|N|新增 PIN" msgid "error getting new PIN: %s\n" msgstr "取得新的個人識別碼 (PIN) 時出錯: %s\n" -#: g10/app-openpgp.c:1544 -#: g10/app-openpgp.c:1994 +#: g10/app-openpgp.c:1544 g10/app-openpgp.c:1994 msgid "error reading application data\n" msgstr "讀取應用程式資料時出錯\n" -#: g10/app-openpgp.c:1550 -#: g10/app-openpgp.c:2001 +#: g10/app-openpgp.c:1550 g10/app-openpgp.c:2001 msgid "error reading fingerprint DO\n" msgstr "讀取指紋 DO 時出錯\n" @@ -292,8 +252,7 @@ msgstr "RSA 模組缺漏或者並非 %d 位元大\n" msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA 公用指數缺漏或者大於 %d 位元\n" -#: g10/app-openpgp.c:1755 -#: g10/app-openpgp.c:1762 +#: g10/app-openpgp.c:1755 g10/app-openpgp.c:1762 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA 質數 %s 缺漏或者並非 %d 位元大\n" @@ -336,11 +295,11 @@ msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||請輸入 PIN%%0A[簽署完成: %lu]" #: g10/app-openpgp.c:2442 -msgid "verification of Admin PIN is currently prohibited through this command\n" +msgid "" +"verification of Admin PIN is currently prohibited through this command\n" msgstr "目前在此指令中的管理者個人識別碼 (PIN) 驗證被禁止了\n" -#: g10/app-openpgp.c:2513 -#: g10/app-openpgp.c:2523 +#: g10/app-openpgp.c:2513 g10/app-openpgp.c:2523 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "無法存取 %s - 無效的 OpenPGP 卡片?\n" @@ -378,8 +337,7 @@ msgstr "未預期的封裝: " msgid "invalid dash escaped line: " msgstr "無效的破折號逸出列: " -#: g10/armor.c:813 -#: g10/armor.c:1423 +#: g10/armor.c:813 g10/armor.c:1423 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "無效的 64 進位字符 %02x 已跳過\n" @@ -396,8 +354,7 @@ msgstr "檔案未預期的結束 (CRC 的部分未結束)\n" msgid "malformed CRC\n" msgstr "CRC 被變造過\n" -#: g10/armor.c:902 -#: g10/armor.c:1460 +#: g10/armor.c:902 g10/armor.c:1460 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC 錯誤; %06lX - %06lX\n" @@ -420,11 +377,11 @@ msgid "invalid armor: line longer than %d characters\n" msgstr "無效的封裝: 列長超出 %d 字符\n" #: g10/armor.c:1246 -msgid "quoted printable character in armor - probably a buggy MTA has been used\n" +msgid "" +"quoted printable character in armor - probably a buggy MTA has been used\n" msgstr "封裝裡出現被引號括住的可列印字符 - 可能是有瑕疵的送信程式造成的\n" -#: g10/card-util.c:61 -#: g10/card-util.c:304 +#: g10/card-util.c:61 g10/card-util.c:309 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "沒有可用的 OpenPGP 卡片: %s\n" @@ -434,167 +391,153 @@ msgstr "沒有可用的 OpenPGP 卡片: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "偵測到 OpenPGP 卡片編號 %s\n" -#: g10/card-util.c:74 -#: g10/card-util.c:1404 -#: g10/delkey.c:126 -#: g10/keyedit.c:1516 -#: g10/keygen.c:2587 -#: g10/revoke.c:216 -#: g10/revoke.c:454 +#: g10/card-util.c:74 g10/card-util.c:1409 g10/delkey.c:126 g10/keyedit.c:1516 +#: g10/keygen.c:2587 g10/revoke.c:216 g10/revoke.c:454 msgid "can't do this in batch mode\n" msgstr "無法在批次模式中這樣做\n" -#: g10/card-util.c:101 -#: g10/card-util.c:1130 -#: g10/card-util.c:1213 -#: g10/keyedit.c:423 -#: g10/keyedit.c:444 -#: g10/keyedit.c:458 -#: g10/keygen.c:1400 +#: g10/card-util.c:101 g10/card-util.c:1135 g10/card-util.c:1218 +#: g10/keyedit.c:423 g10/keyedit.c:444 g10/keyedit.c:458 g10/keygen.c:1400 #: g10/keygen.c:1467 msgid "Your selection? " msgstr "妳要選哪一個? " -#: g10/card-util.c:214 -#: g10/card-util.c:264 +#: g10/card-util.c:219 g10/card-util.c:269 msgid "[not set]" msgstr "[未設定]" -#: g10/card-util.c:411 +#: g10/card-util.c:416 msgid "male" msgstr "男性" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "female" msgstr "女性" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "未特定" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "not forced" msgstr "不強迫使用" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "強迫使用" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "錯誤: 目前祇允許使用單純的 ASCII 字符.\n" -#: g10/card-util.c:519 +#: g10/card-util.c:524 msgid "Error: The \"<\" character may not be used.\n" msgstr "錯誤: 不能使用 \"<\" 字符.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "錯誤: 並不允許使用連續兩個以上的空格.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "卡片持有者的姓氏: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "卡片持有者的名字: " -#: g10/card-util.c:558 +#: g10/card-util.c:563 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "錯誤: 合併後的名字太長 (上限是 %d 個字符).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "取回公鑰的 URL: " -#: g10/card-util.c:587 +#: g10/card-util.c:592 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "錯誤: URL 太長 (上限是 %d 個字符).\n" -#: g10/card-util.c:685 -#: g10/card-util.c:754 -#: g10/import.c:279 +#: g10/card-util.c:690 g10/card-util.c:759 g10/import.c:279 #, c-format msgid "error reading `%s': %s\n" msgstr "讀取 `%s' 時出錯: %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "登入資料 (帳號名稱): " -#: g10/card-util.c:703 +#: g10/card-util.c:708 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "錯誤: 登入資料太長 (上限是 %d 個字符).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "私人的 DO 資料: " -#: g10/card-util.c:772 +#: g10/card-util.c:777 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "錯誤: 私人的 DO 太長 (上限是 %d 個字符).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "介面語言偏好設定: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "錯誤: 無效的偏好設定字串長度\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "錯誤: 偏好設定字串中含有無效的字符\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "性別 ((M)男性, (F)女性或留空): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "錯誤: 無效的回應.\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 msgid "CA fingerprint: " msgstr "憑證中心 (CA) 指紋: " -#: g10/card-util.c:888 +#: g10/card-util.c:893 msgid "Error: invalid formatted fingerprint.\n" msgstr "錯誤: 無效的格式化指紋.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "不可能進行金鑰操作: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 msgid "not an OpenPGP card" msgstr "這不是 OpenPGP 卡片" -#: g10/card-util.c:946 +#: g10/card-util.c:951 #, c-format msgid "error getting current key info: %s\n" msgstr "取得現用金鑰資訊時出錯: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "是否要取代既有的金鑰? (y/N) " -#: g10/card-util.c:1052 -#: g10/card-util.c:1061 +#: g10/card-util.c:1057 g10/card-util.c:1066 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "是否要為加密用金鑰建立卡外備份? (Y/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "是否要取代既有的金鑰? (y/N) " -#: g10/card-util.c:1082 +#: g10/card-util.c:1087 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -605,132 +548,120 @@ msgstr "" " PIN = `%s' 管理者 (Admin) PIN = `%s'\n" "妳應該用 --change-pin 指令來加以變更\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "請選擇妳要產生的金鑰種類:\n" -#: g10/card-util.c:1123 -#: g10/card-util.c:1204 +#: g10/card-util.c:1128 g10/card-util.c:1209 msgid " (1) Signature key\n" msgstr " (1) 簽署用金鑰\n" -#: g10/card-util.c:1124 -#: g10/card-util.c:1206 +#: g10/card-util.c:1129 g10/card-util.c:1211 msgid " (2) Encryption key\n" msgstr " (2) 加密用金鑰\n" -#: g10/card-util.c:1125 -#: g10/card-util.c:1208 +#: g10/card-util.c:1130 g10/card-util.c:1213 msgid " (3) Authentication key\n" msgstr " (3) 憑證用金鑰\n" -#: g10/card-util.c:1141 -#: g10/card-util.c:1224 -#: g10/keyedit.c:938 -#: g10/keygen.c:1404 -#: g10/keygen.c:1432 -#: g10/keygen.c:1506 -#: g10/revoke.c:683 +#: g10/card-util.c:1146 g10/card-util.c:1229 g10/keyedit.c:938 +#: g10/keygen.c:1404 g10/keygen.c:1432 g10/keygen.c:1506 g10/revoke.c:683 msgid "Invalid selection.\n" msgstr "無效的選擇.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "請選擇要把金鑰存放在哪裡:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "未知的金鑰保護演算法\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "私鑰部分無法取用\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 msgid "secret key already stored on a card\n" msgstr "私鑰已經存放在卡片上了\n" -#: g10/card-util.c:1317 -#: g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "離開這個選單" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "顯示管理者指令" -#: g10/card-util.c:1320 -#: g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "顯示這份線上說明" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "列出所有可用的資料" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "變更卡片持有人的名字" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "變更取回金鑰的 URL" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "從卡片 URL 取回指定的金鑰" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "變更登入名稱" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "變更介面語言偏好設定" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "變更卡片持有者的性別" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "變更某個憑證中心 (CA) 的指紋" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "切換簽章是否強制使用個人識別碼 (PIN) 的旗標" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "產生新的金鑰" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "變更或解凍個人識別碼 (PIN) 的選單" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "驗證個人識別碼 (PIN) 並列出所有的資料" -#: g10/card-util.c:1455 -#: g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "指令> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "限管理者使用的指令\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "允許使用管理者指令\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "未允許使用管理者指令\n" -#: g10/card-util.c:1600 -#: g10/keyedit.c:2240 +#: g10/card-util.c:1605 g10/keyedit.c:2240 msgid "Invalid command (try \"help\")\n" msgstr "無效的指令 (試試看 \"help\")\n" @@ -784,43 +715,29 @@ msgstr "請再次輸入個人識別碼 (PIN): " msgid "PIN not correctly repeated; try again" msgstr "前後兩次輸入的個人識別碼 (PIN) 不一致; 請再試一次" -#: g10/decrypt.c:67 -#: g10/decrypt.c:158 -#: g10/gpg.c:3948 -#: g10/keyring.c:375 -#: g10/keyring.c:661 -#: g10/verify.c:101 -#: g10/verify.c:156 +#: g10/decrypt.c:67 g10/decrypt.c:158 g10/gpg.c:3970 g10/keyring.c:375 +#: g10/keyring.c:661 g10/verify.c:101 g10/verify.c:156 #, c-format msgid "can't open `%s'\n" msgstr "無法開啟 `%s'\n" -#: g10/decrypt.c:103 -#: g10/encode.c:823 +#: g10/decrypt.c:103 g10/encode.c:823 msgid "--output doesn't work for this command\n" msgstr "--output 在這個指令中沒有作用\n" -#: g10/delkey.c:73 -#: g10/export.c:309 -#: g10/keyedit.c:3388 -#: g10/keyserver.c:1711 +#: g10/delkey.c:73 g10/export.c:309 g10/keyedit.c:3388 g10/keyserver.c:1711 #: g10/revoke.c:226 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "找不到金鑰 \"%s\": %s\n" -#: g10/delkey.c:81 -#: g10/export.c:339 -#: g10/import.c:2361 -#: g10/keyserver.c:1725 -#: g10/revoke.c:232 -#: g10/revoke.c:476 +#: g10/delkey.c:81 g10/export.c:339 g10/import.c:2378 g10/keyserver.c:1725 +#: g10/revoke.c:232 g10/revoke.c:476 #, c-format msgid "error reading keyblock: %s\n" msgstr "讀取金鑰區塊時出錯: %s\n" -#: g10/delkey.c:127 -#: g10/delkey.c:134 +#: g10/delkey.c:127 g10/delkey.c:134 msgid "(unless you specify the key by fingerprint)\n" msgstr "(除非妳用指紋指定了金鑰)\n" @@ -854,8 +771,7 @@ msgstr "公鑰 \"%s\" 有相對應的私鑰!\n" msgid "use option \"--delete-secret-keys\" to delete it first.\n" msgstr "請先以 \"--delete-secret-keys\" 選項來刪除它.\n" -#: g10/encode.c:211 -#: g10/sign.c:1254 +#: g10/encode.c:211 g10/sign.c:1254 #, c-format msgid "error creating passphrase: %s\n" msgstr "建立密語時出錯: %s\n" @@ -869,15 +785,12 @@ msgstr "因處於 S2K 模式下而無法使用對稱式 ESK 封包\n" msgid "using cipher %s\n" msgstr "正在使用 %s 編密法\n" -#: g10/encode.c:239 -#: g10/encode.c:534 +#: g10/encode.c:239 g10/encode.c:534 #, c-format msgid "`%s' already compressed\n" msgstr "`%s' 已經被壓縮了\n" -#: g10/encode.c:290 -#: g10/encode.c:568 -#: g10/sign.c:559 +#: g10/encode.c:290 g10/encode.c:568 g10/sign.c:559 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "警告: `%s' 是個空檔案\n" @@ -892,18 +805,21 @@ msgid "reading from `%s'\n" msgstr "正在從 `%s' 讀取中\n" #: g10/encode.c:506 -msgid "unable to use the IDEA cipher for all of the keys you are encrypting to.\n" +msgid "" +"unable to use the IDEA cipher for all of the keys you are encrypting to.\n" msgstr "妳正要用來加密的所有金鑰都不能使用 IDEA 編密法.\n" #: g10/encode.c:516 #, c-format -msgid "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" +msgid "" +"WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "警告: 強迫使用 %s (%d) 對稱式編密法會違反收件者偏好設定\n" -#: g10/encode.c:612 -#: g10/sign.c:931 +#: g10/encode.c:612 g10/sign.c:931 #, c-format -msgid "WARNING: forcing compression algorithm %s (%d) violates recipient preferences\n" +msgid "" +"WARNING: forcing compression algorithm %s (%d) violates recipient " +"preferences\n" msgstr "警告: 強迫使用 %s (%d) 壓縮演算法會違反收件者偏好設定\n" #: g10/encode.c:699 @@ -911,9 +827,7 @@ msgstr "警告: 強迫使用 %s (%d) 壓縮演算法會違反收件者偏好設� msgid "forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "強迫使用 %s (%d) 對稱式編密法會違反收件者偏好設定\n" -#: g10/encode.c:769 -#: g10/pkclist.c:804 -#: g10/pkclist.c:852 +#: g10/encode.c:769 g10/pkclist.c:804 g10/pkclist.c:852 #, c-format msgid "you may not use %s while in %s mode\n" msgstr "妳不能夠將 %s 用於 %s 模式中\n" @@ -923,20 +837,19 @@ msgstr "妳不能夠將 %s 用於 %s 模式中\n" msgid "%s/%s encrypted for: \"%s\"\n" msgstr "%s/%s 已加密給: \"%s\"\n" -#: g10/encr-data.c:89 -#: g10/mainproc.c:296 +#: g10/encr-data.c:89 g10/mainproc.c:296 #, c-format msgid "%s encrypted data\n" msgstr "%s 已加密的資料\n" -#: g10/encr-data.c:91 -#: g10/mainproc.c:300 +#: g10/encr-data.c:91 g10/mainproc.c:300 #, c-format msgid "encrypted with unknown algorithm %d\n" msgstr "以 %d 未知演算法所加密\n" #: g10/encr-data.c:115 -msgid "WARNING: message was encrypted with a weak key in the symmetric cipher.\n" +msgid "" +"WARNING: message was encrypted with a weak key in the symmetric cipher.\n" msgstr "警告: 訊息已用對稱式編密法的弱金鑰加密了.\n" #: g10/encr-data.c:126 @@ -947,14 +860,14 @@ msgstr "處理已加密封包有問題\n" msgid "no remote program execution supported\n" msgstr "沒有支援的遠端程式執行\n" -#: g10/exec.c:174 -#: g10/openfile.c:429 +#: g10/exec.c:174 g10/openfile.c:429 #, c-format msgid "can't create directory `%s': %s\n" msgstr "無法建立目錄 `%s': %s\n" #: g10/exec.c:315 -msgid "external program calls are disabled due to unsafe options file permissions\n" +msgid "" +"external program calls are disabled due to unsafe options file permissions\n" msgstr "因為不安全的檔案權限選項, 而禁用了外部程式叫用\n" #: g10/exec.c:345 @@ -976,8 +889,7 @@ msgstr "無法執行 shell `%s': %s\n" msgid "system error while calling external program: %s\n" msgstr "叫用外部程式時發生系統錯誤: %s\n" -#: g10/exec.c:522 -#: g10/exec.c:588 +#: g10/exec.c:522 g10/exec.c:588 msgid "unnatural exit of external program\n" msgstr "外部程式不自然地離開\n" @@ -990,8 +902,7 @@ msgstr "無法執行外部程式\n" msgid "unable to read external program response: %s\n" msgstr "無法讀取外部程式回應: %s\n" -#: g10/exec.c:599 -#: g10/exec.c:606 +#: g10/exec.c:599 g10/exec.c:606 #, c-format msgid "WARNING: unable to remove tempfile (%s) `%s': %s\n" msgstr "警告: 無法移除暫存檔 (%s) `%s': %s\n" @@ -1191,8 +1102,7 @@ msgstr "更新信任資料庫" msgid "|algo [files]|print message digests" msgstr "|演算法 [檔案]|印出訊息摘要" -#: g10/gpg.c:444 -#: g10/gpgv.c:68 +#: g10/gpg.c:444 g10/gpgv.c:68 msgid "" "@\n" "Options:\n" @@ -1226,8 +1136,7 @@ msgstr "使用標準的文字模式" msgid "use as output file" msgstr "當作輸出檔案來使用" -#: g10/gpg.c:481 -#: g10/gpgv.c:70 +#: g10/gpg.c:481 g10/gpgv.c:70 msgid "verbose" msgstr "囉唆模式" @@ -1275,10 +1184,10 @@ msgstr "" " --list-keys [名字] 顯示金鑰\n" " --fingerprint [名字] 顯示指紋\n" -#: g10/gpg.c:769 -#: g10/gpgv.c:95 +#: g10/gpg.c:769 g10/gpgv.c:95 msgid "Please report bugs to <[email protected]>.\n" -msgstr "請向 <[email protected]> 回報程式瑕疵, 向 <[email protected]> 回報翻譯瑕疵.\n" +msgstr "" +"請向 <[email protected]> 回報程式瑕疵, 向 <[email protected]> 回報翻譯瑕疵.\n" #: g10/gpg.c:786 msgid "Usage: gpg [options] [files] (-h for help)" @@ -1306,8 +1215,7 @@ msgstr "" msgid "Pubkey: " msgstr "公鑰: " -#: g10/gpg.c:809 -#: g10/keyedit.c:2306 +#: g10/gpg.c:809 g10/keyedit.c:2306 msgid "Cipher: " msgstr "編密法: " @@ -1315,8 +1223,7 @@ msgstr "編密法: " msgid "Hash: " msgstr "雜湊: " -#: g10/gpg.c:821 -#: g10/keyedit.c:2352 +#: g10/gpg.c:821 g10/keyedit.c:2352 msgid "Compression: " msgstr "壓縮: " @@ -1370,7 +1277,8 @@ msgstr "警告: 家目錄 `%s' 的封入目錄所有權並不安全\n" #: g10/gpg.c:1294 #, c-format -msgid "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" +msgid "" +"WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的封入目錄所有權並不安全\n" #: g10/gpg.c:1297 @@ -1385,7 +1293,8 @@ msgstr "警告: 家目錄 `%s' 的封入目錄權限並不安全\n" #: g10/gpg.c:1306 #, c-format -msgid "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" +msgid "" +"WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的封入目錄權限並不安全\n" #: g10/gpg.c:1309 @@ -1442,430 +1351,423 @@ msgstr "在金鑰清單中顯示鑰匙圈名稱" msgid "show expiration dates during signature listings" msgstr "列出簽章時顯示有效期限" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "請注意: 已忽略舊有的預設選項檔 `%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "請注意: 沒有預設選項檔 `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "選項檔 `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "從 `%s' 讀取選項中\n" -#: g10/gpg.c:2265 -#: g10/gpg.c:2933 -#: g10/gpg.c:2952 +#: g10/gpg.c:2286 g10/gpg.c:2955 g10/gpg.c:2974 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "請注意: 一般情況下不會用到 %s!\n" -#: g10/gpg.c:2278 +#: g10/gpg.c:2299 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" msgstr "編密法延伸模組 `%s' 因為權限不安全而未載入\n" -#: g10/gpg.c:2467 -#: g10/gpg.c:2479 +#: g10/gpg.c:2488 g10/gpg.c:2500 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' 不是個有效的簽章使用期限\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' 不是個有效的字元集\n" -#: g10/gpg.c:2580 -#: g10/gpg.c:2769 -#: g10/keyedit.c:4076 +#: g10/gpg.c:2601 g10/gpg.c:2790 g10/keyedit.c:4076 msgid "could not parse keyserver URL\n" msgstr "無法剖析金鑰伺服器 URL\n" -#: g10/gpg.c:2592 +#: g10/gpg.c:2613 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: 無效的金鑰伺服器選項\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "無效的金鑰伺服器選項\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: 無效的匯入選項\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "無效的匯入選項\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: 無效的匯出選項\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "無效的匯出選項\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: 無效的清單選項\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "無效的清單選項\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2654 msgid "display photo IDs during signature verification" msgstr "驗證簽章時顯示照片 ID" -#: g10/gpg.c:2635 +#: g10/gpg.c:2656 msgid "show policy URLs during signature verification" msgstr "驗證簽章時顯示原則 URL" -#: g10/gpg.c:2637 +#: g10/gpg.c:2658 msgid "show all notations during signature verification" msgstr "驗證簽章時顯示所有的註記" -#: g10/gpg.c:2639 +#: g10/gpg.c:2660 msgid "show IETF standard notations during signature verification" msgstr "驗證簽章時顯示 IETF 標準註記" -#: g10/gpg.c:2643 +#: g10/gpg.c:2664 msgid "show user-supplied notations during signature verification" msgstr "驗證簽章時顯示使用者提供的註記" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "驗證簽章時顯示偏好的金鑰伺服器 URL" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "驗證簽章時顯示使用者 ID 有效性" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "驗證簽章時顯示已撤銷或過期的使用者 ID" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 msgid "show only the primary user ID in signature verification" msgstr "驗證簽章時祇顯示主要的使用者 ID" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "以 PKA 資料驗證簽章" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "提高對持有有效 PKA 資料之簽章的信任" -#: g10/gpg.c:2662 +#: g10/gpg.c:2683 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "無效的驗證選項\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "無法把執行檔路徑設成 %s\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: 無效的自動金鑰定址清單\n" -#: g10/gpg.c:2838 +#: g10/gpg.c:2859 msgid "invalid auto-key-locate list\n" msgstr "無效的自動金鑰定址清單\n" -#: g10/gpg.c:2922 +#: g10/gpg.c:2944 msgid "WARNING: program may create a core file!\n" msgstr "警告: 程式可能會傾印出核心檔!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告: %s 會推翻 %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不允許跟 %s 併用!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 跟 %s 放在一起沒有意義!\n" -#: g10/gpg.c:2945 +#: g10/gpg.c:2967 #, c-format msgid "NOTE: %s is not available in this version\n" msgstr "請注意: %s 在本版中無法使用\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2982 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "因為 %s 而不會在不安全的記憶體中執行\n" -#: g10/gpg.c:2974 +#: g10/gpg.c:2996 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "妳祇有在 --pgp2 模式下纔能做出分離式或明文簽章\n" -#: g10/gpg.c:2980 +#: g10/gpg.c:3002 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "妳在 --pgp2 模式下時, 不能同時簽署和加密\n" -#: g10/gpg.c:2986 +#: g10/gpg.c:3008 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "啟用 --pgp2 時妳祇應該使用檔案, 而非管道\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密訊息需要 IDEA 編密法\n" -#: g10/gpg.c:3066 -#: g10/gpg.c:3090 +#: g10/gpg.c:3088 g10/gpg.c:3112 msgid "selected cipher algorithm is invalid\n" msgstr "所選的編密演算法無效\n" -#: g10/gpg.c:3072 -#: g10/gpg.c:3096 +#: g10/gpg.c:3094 g10/gpg.c:3118 msgid "selected digest algorithm is invalid\n" msgstr "所選的摘要演算法無效\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "所選的壓縮演算法無效\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "所選的憑證摘要演算法無效\n" -#: g10/gpg.c:3099 +#: g10/gpg.c:3121 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 一定要大於 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 一定要大於 1\n" -#: g10/gpg.c:3103 +#: g10/gpg.c:3125 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 一定要介於 1 和 255 之間\n" -#: g10/gpg.c:3105 +#: g10/gpg.c:3127 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "無效的 default-cert-level; 一定要是 0, 1, 2 或 3\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "無效的 min-cert-level; 一定要是 1, 2 或 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "請注意: 強烈不建議使用單純的 S2K 模式 (0)\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "無效的 S2K 模式; 一定要是 0, 1 或 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "無效的預設偏好\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "無效的個人編密法偏好\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "無效的個人摘要偏好\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "無效的個人壓縮偏好\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 還沒辦法跟 %s 一起運作\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3240 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "妳不該將 `%s' 編密演算法用於 %s 模式中\n" -#: g10/gpg.c:3223 +#: g10/gpg.c:3245 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "妳不該將 `%s' 摘要演算法用於 %s 模式中\n" -#: g10/gpg.c:3228 +#: g10/gpg.c:3250 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "妳不該將 `%s' 壓縮演算法用於 %s 模式中\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "信任資料庫啟始失敗: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告: 給定的收件者 (-r) 未使用公鑰加密\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [檔名]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [檔名]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "`%s' 對稱式加密失敗: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [檔名]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [檔名]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "妳不能在 --s2k-mode 0 中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3389 +#: g10/gpg.c:3411 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "妳不能在 %s 模式中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [檔名]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [檔名]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [檔名]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "妳不能在 --s2k-mode 0 中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3440 +#: g10/gpg.c:3462 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "妳不能在 %s 模式中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [檔名]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [檔名]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [檔名]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key 使用者ID" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key 使用者ID" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key 使用者ID [指令]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [使用者ID] [鑰匙圈]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "送至金鑰伺服器失敗: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "從金鑰伺服器接收失敗: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "金鑰匯出失敗: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "用金鑰伺服器搜尋失敗: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "從金鑰伺服器更新失敗: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "解開封裝失敗: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "進行封裝失敗: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "無效的 `%s' 雜湊演算法\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[檔名]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "請開始輸入妳的訊息 ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "給定的的憑證原則 URL 無效\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "給定的簽章原則 URL 無效\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 msgid "the given preferred keyserver URL is invalid\n" msgstr "給定的偏好金鑰伺服器 URL 無效\n" @@ -1877,10 +1779,7 @@ msgstr "pk 快取裡有太多項目 - 已禁用\n" msgid "[User ID not found]" msgstr "[找不到使用者 ID]" -#: g10/getkey.c:946 -#: g10/getkey.c:956 -#: g10/getkey.c:966 -#: g10/getkey.c:982 +#: g10/getkey.c:946 g10/getkey.c:956 g10/getkey.c:966 g10/getkey.c:982 #: g10/getkey.c:997 #, c-format msgid "automatically retrieved `%s' via %s\n" @@ -1891,8 +1790,7 @@ msgstr "已自動取回 `%s' (經由 %s )\n" msgid "Invalid key %s made valid by --allow-non-selfsigned-uid\n" msgstr "無效的金鑰 %s 可以藉由 --allow-non-selfsigned-uid 而生效\n" -#: g10/getkey.c:2389 -#: g10/keyedit.c:3719 +#: g10/getkey.c:2389 g10/keyedit.c:3719 #, c-format msgid "no secret subkey for public subkey %s - ignoring\n" msgstr "公鑰 %s 沒有相對應的私鑰 - 正在忽略\n" @@ -1960,7 +1858,8 @@ msgid "If you want to use this untrusted key anyway, answer \"yes\"." msgstr "如果妳無論如何都想要用這把未被信任的金鑰, 請回答 \"yes\"." #: g10/helptext.c:64 -msgid "Enter the user ID of the addressee to whom you want to send the message." +msgid "" +"Enter the user ID of the addressee to whom you want to send the message." msgstr "輸入妳要遞送的訊息接收者的使用者 ID." #: g10/helptext.c:68 @@ -2001,13 +1900,8 @@ msgstr "" msgid "Enter the size of the key" msgstr "請輸入金鑰尺寸" -#: g10/helptext.c:93 -#: g10/helptext.c:98 -#: g10/helptext.c:110 -#: g10/helptext.c:142 -#: g10/helptext.c:170 -#: g10/helptext.c:175 -#: g10/helptext.c:180 +#: g10/helptext.c:93 g10/helptext.c:98 g10/helptext.c:110 g10/helptext.c:142 +#: g10/helptext.c:170 g10/helptext.c:175 g10/helptext.c:180 msgid "Answer \"yes\" or \"no\"" msgstr "請回答 \"yes\" 或 \"no\"" @@ -2058,26 +1952,36 @@ msgid "" "belongs to the person named in the user ID. It is useful for others to\n" "know how carefully you verified this.\n" "\n" -"\"0\" means you make no particular claim as to how carefully you verified the\n" +"\"0\" means you make no particular claim as to how carefully you verified " +"the\n" " key.\n" "\n" "\"1\" means you believe the key is owned by the person who claims to own it\n" -" but you could not, or did not verify the key at all. This is useful for\n" -" a \"persona\" verification, where you sign the key of a pseudonymous user.\n" +" but you could not, or did not verify the key at all. This is useful " +"for\n" +" a \"persona\" verification, where you sign the key of a pseudonymous " +"user.\n" "\n" -"\"2\" means you did casual verification of the key. For example, this could\n" -" mean that you verified the key fingerprint and checked the user ID on the\n" +"\"2\" means you did casual verification of the key. For example, this " +"could\n" +" mean that you verified the key fingerprint and checked the user ID on " +"the\n" " key against a photo ID.\n" "\n" -"\"3\" means you did extensive verification of the key. For example, this could\n" +"\"3\" means you did extensive verification of the key. For example, this " +"could\n" " mean that you verified the key fingerprint with the owner of the key in\n" -" person, and that you checked, by means of a hard to forge document with a\n" -" photo ID (such as a passport) that the name of the key owner matches the\n" -" name in the user ID on the key, and finally that you verified (by exchange\n" +" person, and that you checked, by means of a hard to forge document with " +"a\n" +" photo ID (such as a passport) that the name of the key owner matches " +"the\n" +" name in the user ID on the key, and finally that you verified (by " +"exchange\n" " of email) that the email address on the key belongs to the key owner.\n" "\n" "Note that the examples given above for levels 2 and 3 are *only* examples.\n" -"In the end, it is up to you to decide just what \"casual\" and \"extensive\"\n" +"In the end, it is up to you to decide just what \"casual\" and \"extensive" +"\"\n" "mean to you when you sign other keys.\n" "\n" "If you don't know what the right answer is, answer \"0\"." @@ -2400,8 +2304,7 @@ msgstr "散佈此金鑰, 以避免潛在的演算法不一致問題.\n" msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "妳可以像這樣來更新偏好設定: gpg --edit-key %s updpref save\n" -#: g10/import.c:719 -#: g10/import.c:1117 +#: g10/import.c:719 g10/import.c:1117 #, c-format msgid "key %s: no user ID\n" msgstr "金鑰 %s: 沒有使用者 ID\n" @@ -2425,8 +2328,7 @@ msgstr "金鑰 %s: 沒有有效的使用者 ID\n" msgid "this may be caused by a missing self-signature\n" msgstr "這可能肇因於遺失自我簽章所致\n" -#: g10/import.c:781 -#: g10/import.c:1239 +#: g10/import.c:781 g10/import.c:1239 #, c-format msgid "key %s: public key not found: %s\n" msgstr "金鑰 %s: 找不到公鑰: %s\n" @@ -2441,20 +2343,13 @@ msgstr "金鑰 %s: 新的金鑰 - 已跳過\n" msgid "no writable keyring found: %s\n" msgstr "找不到可寫入的鑰匙圈: %s\n" -#: g10/import.c:801 -#: g10/openfile.c:281 -#: g10/sign.c:799 -#: g10/sign.c:1104 +#: g10/import.c:801 g10/openfile.c:281 g10/sign.c:799 g10/sign.c:1104 #, c-format msgid "writing to `%s'\n" msgstr "寫入 `%s' 中\n" -#: g10/import.c:805 -#: g10/import.c:900 -#: g10/import.c:1157 -#: g10/import.c:1300 -#: g10/import.c:2375 -#: g10/import.c:2397 +#: g10/import.c:805 g10/import.c:900 g10/import.c:1157 g10/import.c:1300 +#: g10/import.c:2392 g10/import.c:2414 #, c-format msgid "error writing keyring `%s': %s\n" msgstr "寫入鑰匙圈 `%s' 時出錯: %s\n" @@ -2469,14 +2364,12 @@ msgstr "金鑰 %s: 公鑰 \"%s\" 已匯入\n" msgid "key %s: doesn't match our copy\n" msgstr "金鑰 %s: 跟我們的副本不吻合\n" -#: g10/import.c:865 -#: g10/import.c:1257 +#: g10/import.c:865 g10/import.c:1257 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "金鑰 %s: 無法定址原始的金鑰區塊: %s\n" -#: g10/import.c:873 -#: g10/import.c:1264 +#: g10/import.c:873 g10/import.c:1264 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "金鑰 %s: 無法讀取原始的金鑰區塊: %s\n" @@ -2545,8 +2438,7 @@ msgstr "金鑰 %s: 私鑰使用了無效的 %d 編密法 - 已跳過\n" msgid "importing secret keys not allowed\n" msgstr "未允許匯入私鑰\n" -#: g10/import.c:1151 -#: g10/import.c:2390 +#: g10/import.c:1151 g10/import.c:2407 #, c-format msgid "no default secret keyring: %s\n" msgstr "沒有預設的私鑰鑰匙圈: %s\n" @@ -2601,8 +2493,7 @@ msgstr "金鑰 %s: 使用者 ID \"%s\" 的自我簽章無效\n" msgid "key %s: no subkey for key binding\n" msgstr "金鑰 %s: 沒有可供附帶的子鑰\n" -#: g10/import.c:1419 -#: g10/import.c:1469 +#: g10/import.c:1419 g10/import.c:1469 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "金鑰 %s: 未支援的公鑰演算法\n" @@ -2671,40 +2562,40 @@ msgstr "金鑰 %s: 子鑰簽章在錯誤的地方 - 已跳過\n" msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "金鑰 %s: 非預期的簽章等級 (0x%02X) - 已跳過\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "金鑰 %s: 偵測到重複的使用者 ID - 已合併\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "警告: 金鑰 %s 可能被撤銷了: 正在取回撤銷金鑰 %s\n" -#: g10/import.c:1813 +#: g10/import.c:1830 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "警告: 金鑰 %s 可能被撤銷了: 撤銷金鑰 %s 未出現.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "金鑰 %s: 已新增 \"%s\" 撤銷憑證\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "金鑰 %s: 已新增直接金鑰簽章\n" -#: g10/import.c:2295 +#: g10/import.c:2312 msgid "NOTE: a key's S/N does not match the card's one\n" msgstr "請注意: 金鑰的序號 (S/N) 與卡片上的並不一致\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "請注意: 主鑰在線上且已存放於卡片上了\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "請注意: 子鑰在線上且已存放於卡片上了\n" @@ -2718,8 +2609,7 @@ msgstr "建立 `%s' 鑰匙圈時出錯: %s\n" msgid "keyring `%s' created\n" msgstr "`%s' 鑰匙圈已建立\n" -#: g10/keydb.c:314 -#: g10/keydb.c:317 +#: g10/keydb.c:314 g10/keydb.c:317 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "`%s' 金鑰區塊資源: %s\n" @@ -2737,35 +2627,29 @@ msgstr "[撤銷]" msgid "[self-signature]" msgstr "[自我簽章]" -#: g10/keyedit.c:343 -#: g10/keylist.c:388 +#: g10/keyedit.c:343 g10/keylist.c:388 msgid "1 bad signature\n" msgstr "1 份損壞的簽章\n" -#: g10/keyedit.c:345 -#: g10/keylist.c:390 +#: g10/keyedit.c:345 g10/keylist.c:390 #, c-format msgid "%d bad signatures\n" msgstr "%d 份損壞的簽章\n" -#: g10/keyedit.c:347 -#: g10/keylist.c:392 +#: g10/keyedit.c:347 g10/keylist.c:392 msgid "1 signature not checked due to a missing key\n" msgstr "有 1 份簽章因為遺失金鑰而未被檢查\n" -#: g10/keyedit.c:349 -#: g10/keylist.c:394 +#: g10/keyedit.c:349 g10/keylist.c:394 #, c-format msgid "%d signatures not checked due to missing keys\n" msgstr "有 %d 份簽章因為遺失金鑰而未被檢查\n" -#: g10/keyedit.c:351 -#: g10/keylist.c:396 +#: g10/keyedit.c:351 g10/keylist.c:396 msgid "1 signature not checked due to an error\n" msgstr "有 1 份簽章因錯誤而未被檢查\n" -#: g10/keyedit.c:353 -#: g10/keylist.c:398 +#: g10/keyedit.c:353 g10/keylist.c:398 #, c-format msgid "%d signatures not checked due to errors\n" msgstr "有 %d 份簽章因錯誤而未被檢查\n" @@ -2779,23 +2663,22 @@ msgstr "偵測到 1 個沒有有效自我簽章的使用者 ID\n" msgid "%d user IDs without valid self-signatures detected\n" msgstr "偵測到 %d 個沒有有效自我簽章的使用者 ID\n" -#: g10/keyedit.c:413 -#: g10/pkclist.c:264 +#: g10/keyedit.c:413 g10/pkclist.c:264 msgid "" -"Please decide how far you trust this user to correctly verify other users' keys\n" -"(by looking at passports, checking fingerprints from different sources, etc.)\n" +"Please decide how far you trust this user to correctly verify other users' " +"keys\n" +"(by looking at passports, checking fingerprints from different sources, " +"etc.)\n" msgstr "" "請判斷妳有多信任這位使用者確實驗證其他使用者的金鑰\n" "(像是查對身份證, 或從不同的來源檢查指紋等...)的能力\n" -#: g10/keyedit.c:417 -#: g10/pkclist.c:276 +#: g10/keyedit.c:417 g10/pkclist.c:276 #, c-format msgid " %d = I trust marginally\n" msgstr " %d = 我勉強信任\n" -#: g10/keyedit.c:418 -#: g10/pkclist.c:278 +#: g10/keyedit.c:418 g10/pkclist.c:278 #, c-format msgid " %d = I trust fully\n" msgstr " %d = 我完全信任\n" @@ -2819,19 +2702,12 @@ msgstr "請輸入約束此簽章的網域, 若無請直接按下 [Enter].\n" msgid "User ID \"%s\" is revoked." msgstr "使用者 ID \"%s\" 已撤銷." -#: g10/keyedit.c:607 -#: g10/keyedit.c:635 -#: g10/keyedit.c:662 -#: g10/keyedit.c:828 -#: g10/keyedit.c:888 -#: g10/keyedit.c:1738 +#: g10/keyedit.c:607 g10/keyedit.c:635 g10/keyedit.c:662 g10/keyedit.c:828 +#: g10/keyedit.c:888 g10/keyedit.c:1738 msgid "Are you sure you still want to sign it? (y/N) " msgstr "妳仍然想要簽署它嗎? (y/N) " -#: g10/keyedit.c:621 -#: g10/keyedit.c:649 -#: g10/keyedit.c:676 -#: g10/keyedit.c:834 +#: g10/keyedit.c:621 g10/keyedit.c:649 g10/keyedit.c:676 g10/keyedit.c:834 #: g10/keyedit.c:1744 msgid " Unable to sign.\n" msgstr " 無法簽署.\n" @@ -2927,7 +2803,9 @@ msgid "Do you want your signature to expire at the same time? (Y/n) " msgstr "妳想要讓妳的簽章也在同一個時候過期嗎? (Y/n) " #: g10/keyedit.c:881 -msgid "You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 mode.\n" +msgid "" +"You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 " +"mode.\n" msgstr "妳不能在 --pgp2 模式下, 拿 PGP 2.x 金鑰做出 OpenPGP 簽章.\n" #: g10/keyedit.c:883 @@ -2936,7 +2814,8 @@ msgstr "這會讓這把金鑰在 PGP 2.x 模式下無法使用.\n" #: g10/keyedit.c:908 msgid "" -"How carefully have you verified the key you are about to sign actually belongs\n" +"How carefully have you verified the key you are about to sign actually " +"belongs\n" "to the person named above? If you don't know what to answer, enter \"0\".\n" msgstr "" "妳有多謹慎檢查正要簽署的金鑰確實屬於上面那個人的名字呢?\n" @@ -3011,12 +2890,8 @@ msgstr "我非常小心地檢查過這把金鑰了.\n" msgid "Really sign? (y/N) " msgstr "真的要簽署嗎? (y/N)" -#: g10/keyedit.c:1059 -#: g10/keyedit.c:4795 -#: g10/keyedit.c:4886 -#: g10/keyedit.c:4950 -#: g10/keyedit.c:5011 -#: g10/sign.c:317 +#: g10/keyedit.c:1059 g10/keyedit.c:4795 g10/keyedit.c:4886 g10/keyedit.c:4950 +#: g10/keyedit.c:5011 g10/sign.c:317 #, c-format msgid "signing failed: %s\n" msgstr "簽署時失敗: %s\n" @@ -3025,24 +2900,19 @@ msgstr "簽署時失敗: %s\n" msgid "Key has only stub or on-card key items - no passphrase to change.\n" msgstr "金鑰祇剩下殘骸或者祇含有卡上金鑰項目 - 沒有可變更的密語.\n" -#: g10/keyedit.c:1135 -#: g10/keygen.c:3226 +#: g10/keyedit.c:1135 g10/keygen.c:3226 msgid "This key is not protected.\n" msgstr "這把金鑰未被保護.\n" -#: g10/keyedit.c:1139 -#: g10/keygen.c:3214 -#: g10/revoke.c:537 +#: g10/keyedit.c:1139 g10/keygen.c:3214 g10/revoke.c:537 msgid "Secret parts of primary key are not available.\n" msgstr "主鑰的私鑰部分無法取用.\n" -#: g10/keyedit.c:1143 -#: g10/keygen.c:3229 +#: g10/keyedit.c:1143 g10/keygen.c:3229 msgid "Secret parts of primary key are stored on-card.\n" msgstr "主鑰的私鑰部分存放於卡上.\n" -#: g10/keyedit.c:1147 -#: g10/keygen.c:3233 +#: g10/keyedit.c:1147 g10/keygen.c:3233 msgid "Key is protected.\n" msgstr "金鑰已保護.\n" @@ -3059,8 +2929,7 @@ msgstr "" "請輸入要給這把私鑰用的新密語.\n" "\n" -#: g10/keyedit.c:1186 -#: g10/keygen.c:1906 +#: g10/keyedit.c:1186 g10/keygen.c:1906 msgid "passphrase not correctly repeated; try again" msgstr "前後兩次輸入的密語不一致; 請再試一次" @@ -3251,7 +3120,8 @@ msgstr "請先使用 \"toggle\" 指令.\n" #: g10/keyedit.c:1692 msgid "" -"* The `sign' command may be prefixed with an `l' for local signatures (lsign),\n" +"* The `sign' command may be prefixed with an `l' for local signatures " +"(lsign),\n" " a `t' for trust signatures (tsign), an `nr' for non-revocable signatures\n" " (nrsign), or any combination thereof (ltsign, tnrsign, etc.).\n" msgstr "" @@ -3281,9 +3151,7 @@ msgstr "未知的 `%s' 簽章種類\n" msgid "This command is not allowed while in %s mode.\n" msgstr "在 %s 模式中不允許使用這個指令.\n" -#: g10/keyedit.c:1812 -#: g10/keyedit.c:1832 -#: g10/keyedit.c:1998 +#: g10/keyedit.c:1812 g10/keyedit.c:1832 g10/keyedit.c:1998 msgid "You must select at least one user ID.\n" msgstr "妳至少得選擇一個使用者 ID.\n" @@ -3403,13 +3271,11 @@ msgstr "特點: " msgid "Keyserver no-modify" msgstr "金鑰伺服器無修改" -#: g10/keyedit.c:2407 -#: g10/keylist.c:306 +#: g10/keyedit.c:2407 g10/keylist.c:306 msgid "Preferred keyserver: " msgstr "偏好的金鑰伺服器: " -#: g10/keyedit.c:2415 -#: g10/keyedit.c:2416 +#: g10/keyedit.c:2415 g10/keyedit.c:2416 msgid "Notations: " msgstr "註記: " @@ -3431,45 +3297,27 @@ msgstr "這把金鑰可能被 %s 金鑰 %s 所撤銷" msgid "(sensitive)" msgstr "(機密)" -#: g10/keyedit.c:2728 -#: g10/keyedit.c:2784 -#: g10/keyedit.c:2845 -#: g10/keyedit.c:2860 -#: g10/keylist.c:192 -#: g10/keyserver.c:517 +#: g10/keyedit.c:2728 g10/keyedit.c:2784 g10/keyedit.c:2845 g10/keyedit.c:2860 +#: g10/keylist.c:192 g10/keyserver.c:517 #, c-format msgid "created: %s" msgstr "建立: %s" -#: g10/keyedit.c:2731 -#: g10/keylist.c:769 -#: g10/keylist.c:863 -#: g10/mainproc.c:997 +#: g10/keyedit.c:2731 g10/keylist.c:769 g10/keylist.c:863 g10/mainproc.c:997 #, c-format msgid "revoked: %s" msgstr "撤銷: %s" # of subkey -#: g10/keyedit.c:2733 -#: g10/keylist.c:740 -#: g10/keylist.c:775 -#: g10/keylist.c:869 +#: g10/keyedit.c:2733 g10/keylist.c:740 g10/keylist.c:775 g10/keylist.c:869 #, c-format msgid "expired: %s" msgstr "過期: %s" # of subkey -#: g10/keyedit.c:2735 -#: g10/keyedit.c:2786 -#: g10/keyedit.c:2847 -#: g10/keyedit.c:2862 -#: g10/keylist.c:194 -#: g10/keylist.c:746 -#: g10/keylist.c:781 -#: g10/keylist.c:875 -#: g10/keylist.c:896 -#: g10/keyserver.c:523 -#: g10/mainproc.c:1003 +#: g10/keyedit.c:2735 g10/keyedit.c:2786 g10/keyedit.c:2847 g10/keyedit.c:2862 +#: g10/keylist.c:194 g10/keylist.c:746 g10/keylist.c:781 g10/keylist.c:875 +#: g10/keylist.c:896 g10/keyserver.c:523 g10/mainproc.c:1003 #, c-format msgid "expires: %s" msgstr "到期: %s" @@ -3493,8 +3341,7 @@ msgstr "有效性: %s" msgid "This key has been disabled" msgstr "這把金鑰已經停用了" -#: g10/keyedit.c:2791 -#: g10/keylist.c:198 +#: g10/keyedit.c:2791 g10/keylist.c:198 msgid "card-no: " msgstr "卡片編號: " @@ -3506,21 +3353,13 @@ msgstr "" "請注意顯示出來的金鑰有效性不需要更正,\n" "除非妳重新執行程式.\n" -#: g10/keyedit.c:2879 -#: g10/keyedit.c:3225 -#: g10/keyserver.c:527 -#: g10/mainproc.c:1815 -#: g10/trustdb.c:1177 -#: g10/trustdb.c:1697 +#: g10/keyedit.c:2879 g10/keyedit.c:3225 g10/keyserver.c:527 +#: g10/mainproc.c:1815 g10/trustdb.c:1177 g10/trustdb.c:1697 msgid "revoked" msgstr "已撤銷" -#: g10/keyedit.c:2881 -#: g10/keyedit.c:3227 -#: g10/keyserver.c:531 -#: g10/mainproc.c:1817 -#: g10/trustdb.c:530 -#: g10/trustdb.c:1699 +#: g10/keyedit.c:2881 g10/keyedit.c:3227 g10/keyserver.c:531 +#: g10/mainproc.c:1817 g10/trustdb.c:530 g10/trustdb.c:1699 msgid "expired" msgstr "已過期" @@ -3534,14 +3373,14 @@ msgstr "" #: g10/keyedit.c:3007 msgid "" -"WARNING: This is a PGP2-style key. Adding a photo ID may cause some versions\n" +"WARNING: This is a PGP2-style key. Adding a photo ID may cause some " +"versions\n" " of PGP to reject this key.\n" msgstr "" "警告: 這是一把 PGP2 型態的金鑰.\n" " 增加照片 ID 可能會導致某些版本的 PGP 駁回這把金鑰.\n" -#: g10/keyedit.c:3012 -#: g10/keyedit.c:3347 +#: g10/keyedit.c:3012 g10/keyedit.c:3347 msgid "Are you sure you still want to add it? (y/N) " msgstr "妳確定仍然想要增加嗎? (y/N) " @@ -3579,8 +3418,7 @@ msgstr "已經刪除了 %d 份簽章.\n" msgid "Nothing deleted.\n" msgstr "沒有刪除任何東西.\n" -#: g10/keyedit.c:3229 -#: g10/trustdb.c:1701 +#: g10/keyedit.c:3229 g10/trustdb.c:1701 msgid "invalid" msgstr "無效" @@ -3611,7 +3449,8 @@ msgstr "使用者 ID \"%s\": 已經是乾淨的了\n" #: g10/keyedit.c:3342 msgid "" -"WARNING: This is a PGP 2.x-style key. Adding a designated revoker may cause\n" +"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 "" "警告: 這是一把 PGP2 型態的金鑰.\n" @@ -3645,7 +3484,8 @@ msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "警告: 一旦把某把金鑰指派為指定撤銷者後, 就無法反悔了!\n" #: g10/keyedit.c:3460 -msgid "Are you sure you want to appoint this key as a designated revoker? (y/N) " +msgid "" +"Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "妳確定要指派這把金鑰為指定撤銷者嗎? (y/N) " #: g10/keyedit.c:3522 @@ -3686,10 +3526,7 @@ msgstr "子鑰 %s 不做簽署之用, 因此無須交叉驗證\n" msgid "Please select exactly one user ID.\n" msgstr "請祇選擇一個使用者 ID.\n" -#: g10/keyedit.c:3887 -#: g10/keyedit.c:3997 -#: g10/keyedit.c:4117 -#: g10/keyedit.c:4258 +#: g10/keyedit.c:3887 g10/keyedit.c:3997 g10/keyedit.c:4117 g10/keyedit.c:4258 #, c-format msgid "skipping v3 self-signature on user ID \"%s\"\n" msgstr "正在跳過使用者 ID \"%s\" 的 v3 自我簽章\n" @@ -3734,16 +3571,12 @@ msgstr "索引 %d 沒有對應到子鑰\n" msgid "user ID: \"%s\"\n" msgstr "使用者 ID: \"%s\"\n" -#: g10/keyedit.c:4637 -#: g10/keyedit.c:4701 -#: g10/keyedit.c:4744 +#: g10/keyedit.c:4637 g10/keyedit.c:4701 g10/keyedit.c:4744 #, c-format msgid "signed by your key %s on %s%s%s\n" msgstr "已被妳的金鑰 %s 於 %s%s%s 所簽署\n" -#: g10/keyedit.c:4639 -#: g10/keyedit.c:4703 -#: g10/keyedit.c:4746 +#: g10/keyedit.c:4639 g10/keyedit.c:4703 g10/keyedit.c:4746 msgid " (non-exportable)" msgstr " (不可匯出)" @@ -3845,19 +3678,13 @@ msgstr "寫入自我簽章中\n" msgid "writing key binding signature\n" msgstr "寫入附鑰簽章中\n" -#: g10/keygen.c:1026 -#: g10/keygen.c:1109 -#: g10/keygen.c:1114 -#: g10/keygen.c:1231 +#: g10/keygen.c:1026 g10/keygen.c:1109 g10/keygen.c:1114 g10/keygen.c:1231 #: g10/keygen.c:2787 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "金鑰尺寸無效; 改用 %u 位元\n" -#: g10/keygen.c:1031 -#: g10/keygen.c:1120 -#: g10/keygen.c:1236 -#: g10/keygen.c:2793 +#: g10/keygen.c:1031 g10/keygen.c:1120 g10/keygen.c:1236 g10/keygen.c:2793 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "金鑰尺寸增大到 %u 位元\n" @@ -3984,8 +3811,7 @@ msgstr "%s 金鑰尺寸一定要介於 %u 到 %u 之間\n" msgid "Requested keysize is %u bits\n" msgstr "妳所要求的金鑰尺寸是 %u 位元\n" -#: g10/keygen.c:1575 -#: g10/keygen.c:1580 +#: g10/keygen.c:1575 g10/keygen.c:1580 #, c-format msgid "rounded up to %u bits\n" msgstr "加大到 %u 位元\n" @@ -4068,7 +3894,8 @@ msgstr "以上正確嗎? (y/N) " #: g10/keygen.c:1724 msgid "" "\n" -"You need a user ID to identify your key; the software constructs the user ID\n" +"You need a user ID to identify your key; the software constructs the user " +"ID\n" "from the Real Name, Comment and Email Address in this form:\n" " \"Heinrich Heine (Der Dichter) <[email protected]>\"\n" "\n" @@ -4166,8 +3993,7 @@ msgstr "" "妳需要一個密語來保護妳的私鑰.\n" "\n" -#: g10/keygen.c:1907 -#: g10/passphrase.c:808 +#: g10/keygen.c:1907 g10/passphrase.c:808 #, c-format msgid "%s.\n" msgstr "%s.\n" @@ -4199,20 +4025,17 @@ msgstr "" msgid "Key generation canceled.\n" msgstr "金鑰產生已取消.\n" -#: g10/keygen.c:2932 -#: g10/keygen.c:3079 +#: g10/keygen.c:2932 g10/keygen.c:3079 #, c-format msgid "writing public key to `%s'\n" msgstr "正在寫入公鑰至 `%s'\n" -#: g10/keygen.c:2934 -#: g10/keygen.c:3082 +#: g10/keygen.c:2934 g10/keygen.c:3082 #, c-format msgid "writing secret key stub to `%s'\n" msgstr "正在寫入私鑰 stub 至 `%s'\n" -#: g10/keygen.c:2937 -#: g10/keygen.c:3085 +#: g10/keygen.c:2937 g10/keygen.c:3085 #, c-format msgid "writing secret key to `%s'\n" msgstr "正在寫入私鑰至 `%s'\n" @@ -4249,34 +4072,28 @@ msgstr "" "請注意這把金鑰不能用於加密. 也許妳會想藉由 \"--edit-key\" 指令\n" "來產生加密用的子鑰.\n" -#: g10/keygen.c:3145 -#: g10/keygen.c:3274 -#: g10/keygen.c:3389 +#: g10/keygen.c:3145 g10/keygen.c:3274 g10/keygen.c:3389 #, c-format msgid "Key generation failed: %s\n" msgstr "產生金鑰失敗: %s\n" -#: g10/keygen.c:3197 -#: g10/keygen.c:3324 -#: g10/sign.c:242 +#: g10/keygen.c:3197 g10/keygen.c:3324 g10/sign.c:242 #, c-format -msgid "key has been created %lu second in future (time warp or clock problem)\n" +msgid "" +"key has been created %lu second in future (time warp or clock problem)\n" msgstr "金鑰已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n" -#: g10/keygen.c:3199 -#: g10/keygen.c:3326 -#: g10/sign.c:244 +#: g10/keygen.c:3199 g10/keygen.c:3326 g10/sign.c:244 #, c-format -msgid "key has been created %lu seconds in future (time warp or clock problem)\n" +msgid "" +"key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "金鑰已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n" -#: g10/keygen.c:3208 -#: g10/keygen.c:3337 +#: g10/keygen.c:3208 g10/keygen.c:3337 msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "請注意: 對 v3 金鑰製造子鑰會失去 OpenPGP 相容性\n" -#: g10/keygen.c:3247 -#: g10/keygen.c:3370 +#: g10/keygen.c:3247 g10/keygen.c:3370 msgid "Really create? (y/N) " msgstr "真的要建立嗎? (y/N) " @@ -4295,10 +4112,7 @@ msgstr "無法建立備份檔案 `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "請注意: 卡片金鑰的備份已儲存至 `%s'\n" -#: g10/keyid.c:496 -#: g10/keyid.c:508 -#: g10/keyid.c:520 -#: g10/keyid.c:532 +#: g10/keyid.c:496 g10/keyid.c:508 g10/keyid.c:520 g10/keyid.c:532 msgid "never " msgstr "永遠不過期" @@ -4345,8 +4159,7 @@ msgid " Subkey fingerprint:" msgstr " 子鑰指紋:" # use tty -#: g10/keylist.c:1518 -#: g10/keylist.c:1522 +#: g10/keylist.c:1518 g10/keylist.c:1522 msgid " Key fingerprint =" msgstr " 金鑰指紋 =" @@ -4438,8 +4251,7 @@ msgstr "已停用" msgid "Enter number(s), N)ext, or Q)uit > " msgstr "請輸入數字, N)下一頁, 或 Q)離開 > " -#: g10/keyserver.c:814 -#: g10/keyserver.c:1432 +#: g10/keyserver.c:814 g10/keyserver.c:1432 #, c-format msgid "invalid keyserver protocol (us %d!=handler %d)\n" msgstr "無效的金鑰伺服器協定 (我們用 %d!=經手程式 %d)\n" @@ -4493,8 +4305,7 @@ msgstr "正在搜尋 \"%s\" 於 %s 伺服器 %s\n" msgid "searching for \"%s\" from %s\n" msgstr "正在搜尋 \"%s\" 於 %s\n" -#: g10/keyserver.c:1392 -#: g10/keyserver.c:1488 +#: g10/keyserver.c:1392 g10/keyserver.c:1488 msgid "no keyserver action!\n" msgstr "沒有金鑰伺服器動作!\n" @@ -4507,8 +4318,7 @@ msgstr "警告: 金鑰伺服器經手程式係來自不同版本的 GnuPG (%s)\n msgid "keyserver did not send VERSION\n" msgstr "金鑰伺服器並未送出版本 (VERSION)\n" -#: g10/keyserver.c:1511 -#: g10/keyserver.c:2039 +#: g10/keyserver.c:1511 g10/keyserver.c:2039 msgid "no keyserver known (use option --keyserver)\n" msgstr "沒有已知的金鑰伺服器 (使用 --keyserver 選項)\n" @@ -4544,8 +4354,7 @@ msgstr "金鑰伺服器內部錯誤\n" msgid "keyserver communications error: %s\n" msgstr "金鑰伺服器通訊錯誤: %s\n" -#: g10/keyserver.c:1588 -#: g10/keyserver.c:1622 +#: g10/keyserver.c:1588 g10/keyserver.c:1622 #, c-format msgid "\"%s\" not a key ID: skipping\n" msgstr "\"%s\" 並非金鑰 ID: 跳過中\n" @@ -4604,8 +4413,7 @@ msgstr "公鑰加密過的資料: 完好的 DEK\n" msgid "encrypted with %u-bit %s key, ID %s, created %s\n" msgstr "已用 %u 位元長的 %s 金鑰, ID %s, 建立於 %s 所加密\n" -#: g10/mainproc.c:486 -#: g10/pkclist.c:220 +#: g10/mainproc.c:486 g10/pkclist.c:220 #, c-format msgid " \"%s\"\n" msgstr " \"%s\"\n" @@ -4629,8 +4437,7 @@ msgstr "已用 %lu 個密語加密了\n" msgid "encrypted with 1 passphrase\n" msgstr "已用 1 個密語加密了\n" -#: g10/mainproc.c:551 -#: g10/mainproc.c:573 +#: g10/mainproc.c:551 g10/mainproc.c:573 #, c-format msgid "assuming %s encrypted data\n" msgstr "假定 %s 為加密過的資料\n" @@ -4705,20 +4512,17 @@ msgstr "由 %s 建立的簽章, 使用 %s 金鑰 ID %s\n" msgid "Key available at: " msgstr "可用的金鑰於: " -#: g10/mainproc.c:1719 -#: g10/mainproc.c:1767 +#: g10/mainproc.c:1719 g10/mainproc.c:1767 #, c-format msgid "BAD signature from \"%s\"" msgstr "*損壞* 的簽章來自於 \"%s\"" -#: g10/mainproc.c:1721 -#: g10/mainproc.c:1769 +#: g10/mainproc.c:1721 g10/mainproc.c:1769 #, c-format msgid "Expired signature from \"%s\"" msgstr "過期的簽章來自於 \"%s\"" -#: g10/mainproc.c:1723 -#: g10/mainproc.c:1771 +#: g10/mainproc.c:1723 g10/mainproc.c:1771 #, c-format msgid "Good signature from \"%s\"" msgstr "完好的簽章來自於 \"%s\"" @@ -4755,8 +4559,7 @@ msgstr "二進制" msgid "textmode" msgstr "文字模式" -#: g10/mainproc.c:1916 -#: g10/trustdb.c:529 +#: g10/mainproc.c:1916 g10/trustdb.c:529 msgid "unknown" msgstr "未知" @@ -4765,14 +4568,13 @@ msgstr "未知" msgid "Can't check signature: %s\n" msgstr "無法檢查簽章: %s\n" -#: g10/mainproc.c:2005 -#: g10/mainproc.c:2021 -#: g10/mainproc.c:2107 +#: g10/mainproc.c:2005 g10/mainproc.c:2021 g10/mainproc.c:2107 msgid "not a detached signature\n" msgstr "不是一份分離的簽章\n" #: g10/mainproc.c:2048 -msgid "WARNING: multiple signatures detected. Only the first will be checked.\n" +msgid "" +"WARNING: multiple signatures detected. Only the first will be checked.\n" msgstr "警告: 偵測到多重簽章. 祇有第一個簽章纔會被核選.\n" #: g10/mainproc.c:2056 @@ -4793,9 +4595,7 @@ msgstr "在 proc_tree() 中偵測到無效的 root 封包\n" msgid "can't disable core dumps: %s\n" msgstr "無法讓系統停止傾印核心檔: %s\n" -#: g10/misc.c:140 -#: g10/misc.c:168 -#: g10/misc.c:240 +#: g10/misc.c:140 g10/misc.c:168 g10/misc.c:240 #, c-format msgid "fstat of `%s' failed in %s: %s\n" msgstr "`%s' 的 fstat 失敗於 %s: %s\n" @@ -4833,8 +4633,7 @@ msgstr "警告: 已不建議使用 %s 摘要演算法\n" msgid "the IDEA cipher plugin is not present\n" msgstr "IDEA 編密法外掛模組不存在\n" -#: g10/misc.c:460 -#: g10/sig-check.c:101 +#: g10/misc.c:460 g10/sig-check.c:101 #, c-format msgid "please see %s for more information\n" msgstr "請參考 %s 上進一步的資訊\n" @@ -4956,14 +4755,11 @@ msgstr "gpg-agent 協定版本 %d 未被支援\n" msgid "can't connect to `%s': %s\n" msgstr "無法連接至 `%s': %s\n" -#: g10/passphrase.c:377 -#: g10/passphrase.c:653 -#: g10/passphrase.c:743 +#: g10/passphrase.c:377 g10/passphrase.c:653 g10/passphrase.c:743 msgid "problem with the agent - disabling agent use\n" msgstr "代理程式的問題 - 停用代理程式中\n" -#: g10/passphrase.c:530 -#: g10/passphrase.c:912 +#: g10/passphrase.c:530 g10/passphrase.c:912 #, c-format msgid " (main key ID %s)" msgstr " (主要金鑰 ID %s)" @@ -4991,13 +4787,11 @@ msgstr "請輸入密語\n" msgid "cancelled by user\n" msgstr "由使用者所取消\n" -#: g10/passphrase.c:803 -#: g10/passphrase.c:972 +#: g10/passphrase.c:803 g10/passphrase.c:972 msgid "can't query passphrase in batch mode\n" msgstr "無法在批次模式中查詢密語\n" -#: g10/passphrase.c:810 -#: g10/passphrase.c:977 +#: g10/passphrase.c:810 g10/passphrase.c:977 msgid "Enter passphrase: " msgstr "請輸入密語: " @@ -5073,28 +4867,23 @@ msgstr "沒有設定照片檢視程式\n" msgid "unable to display photo ID!\n" msgstr "無法顯示照片 ID!\n" -#: g10/pkclist.c:63 -#: g10/revoke.c:621 +#: g10/pkclist.c:63 g10/revoke.c:621 msgid "No reason specified" msgstr "未指定原因" -#: g10/pkclist.c:65 -#: g10/revoke.c:623 +#: g10/pkclist.c:65 g10/revoke.c:623 msgid "Key is superseded" msgstr "金鑰被代換了" -#: g10/pkclist.c:67 -#: g10/revoke.c:622 +#: g10/pkclist.c:67 g10/revoke.c:622 msgid "Key has been compromised" msgstr "金鑰已經被洩漏了" -#: g10/pkclist.c:69 -#: g10/revoke.c:624 +#: g10/pkclist.c:69 g10/revoke.c:624 msgid "Key is no longer used" msgstr "金鑰不再被使用了" -#: g10/pkclist.c:71 -#: g10/revoke.c:625 +#: g10/pkclist.c:71 g10/revoke.c:625 msgid "User ID is no longer valid" msgstr "使用者 ID 不再有效了" @@ -5121,7 +4910,8 @@ msgid " aka \"%s\"\n" msgstr " 亦即 \"%s\"\n" #: g10/pkclist.c:257 -msgid "How much do you trust that this key actually belongs to the named user?\n" +msgid "" +"How much do you trust that this key actually belongs to the named user?\n" msgstr "妳有多信任這把金鑰真的屬於叫這個名字的使用者?\n" #: g10/pkclist.c:272 @@ -5160,8 +4950,7 @@ msgstr "" "這把金鑰的最小信任等級為: %s\n" "\n" -#: g10/pkclist.c:300 -#: g10/revoke.c:650 +#: g10/pkclist.c:300 g10/revoke.c:650 msgid "Your decision? " msgstr "妳的決定是甚麼? " @@ -5260,7 +5049,8 @@ msgid "WARNING: This key is not certified with a trusted signature!\n" msgstr "警告: 這把金鑰並非以受信任的簽章所認證!\n" #: g10/pkclist.c:605 -msgid " There is no indication that the signature belongs to the owner.\n" +msgid "" +" There is no indication that the signature belongs to the owner.\n" msgstr " 沒有證據指出這個簽章屬於這個持有者.\n" #: g10/pkclist.c:613 @@ -5272,23 +5062,20 @@ msgid " The signature is probably a FORGERY.\n" msgstr " 這個簽章很有可能是 *偽造的*.\n" #: g10/pkclist.c:622 -msgid "WARNING: This key is not certified with sufficiently trusted signatures!\n" +msgid "" +"WARNING: This key is not certified with sufficiently trusted signatures!\n" msgstr "警告: 這把金鑰並非以足夠信任的簽章所認證!\n" #: g10/pkclist.c:624 msgid " It is not certain that the signature belongs to the owner.\n" msgstr " 這份簽章並不屬於這個持有者\n" -#: g10/pkclist.c:823 -#: g10/pkclist.c:865 -#: g10/pkclist.c:1077 -#: g10/pkclist.c:1147 +#: g10/pkclist.c:823 g10/pkclist.c:865 g10/pkclist.c:1077 g10/pkclist.c:1147 #, c-format msgid "%s: skipped: %s\n" msgstr "%s: 已跳過: %s\n" -#: g10/pkclist.c:835 -#: g10/pkclist.c:1115 +#: g10/pkclist.c:835 g10/pkclist.c:1115 #, c-format msgid "%s: skipped: public key already present\n" msgstr "%s: 已跳過: 公鑰已存在\n" @@ -5313,8 +5100,7 @@ msgstr "" msgid "No such user ID.\n" msgstr "沒有這個使用者 ID.\n" -#: g10/pkclist.c:970 -#: g10/pkclist.c:1044 +#: g10/pkclist.c:970 g10/pkclist.c:1044 msgid "skipped: public key already set as default recipient\n" msgstr "已跳過: 公鑰已經被設成預設收件者\n" @@ -5344,9 +5130,7 @@ msgstr "沒有有效的地址\n" msgid "data not saved; use option \"--output\" to save it\n" msgstr "資料未被儲存; 請用 \"--output\" 選項來儲存\n" -#: g10/plaintext.c:139 -#: g10/plaintext.c:144 -#: g10/plaintext.c:162 +#: g10/plaintext.c:139 g10/plaintext.c:144 g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "建立 `%s' 時出錯: %s\n" @@ -5404,12 +5188,8 @@ msgstr "請注意: 私鑰 %s 在 %s 過期了\n" msgid "NOTE: key has been revoked" msgstr "請注意: 金鑰已撤銷" -#: g10/revoke.c:102 -#: g10/revoke.c:116 -#: g10/revoke.c:128 -#: g10/revoke.c:174 -#: g10/revoke.c:186 -#: g10/revoke.c:586 +#: g10/revoke.c:102 g10/revoke.c:116 g10/revoke.c:128 g10/revoke.c:174 +#: g10/revoke.c:186 g10/revoke.c:586 #, c-format msgid "build_packet failed: %s\n" msgstr "build_packet 失敗: %s\n" @@ -5431,13 +5211,11 @@ msgstr "(這是把機密的撤銷金鑰)\n" msgid "Create a designated revocation certificate for this key? (y/N) " msgstr "要為這把金鑰建立一份指定撤銷憑證嗎? (y/N) " -#: g10/revoke.c:327 -#: g10/revoke.c:552 +#: g10/revoke.c:327 g10/revoke.c:552 msgid "ASCII armored output forced.\n" msgstr "已強迫使用 ASCII 封裝過的輸出.\n" -#: g10/revoke.c:342 -#: g10/revoke.c:566 +#: g10/revoke.c:342 g10/revoke.c:566 #, c-format msgid "make_keysig_packet failed: %s\n" msgstr "make_keysig_packet 失敗: %s\n" @@ -5606,12 +5384,14 @@ msgstr "公鑰 %s 比簽章還要新了 %lu 秒\n" #: g10/sig-check.c:191 #, c-format -msgid "key %s was created %lu second in the future (time warp or clock problem)\n" +msgid "" +"key %s was created %lu second in the future (time warp or clock problem)\n" msgstr "金鑰 %s 已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n" #: g10/sig-check.c:193 #, c-format -msgid "key %s was created %lu seconds in the future (time warp or clock problem)\n" +msgid "" +"key %s was created %lu seconds in the future (time warp or clock problem)\n" msgstr "金鑰 %s 已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n" #: g10/sig-check.c:203 @@ -5641,12 +5421,15 @@ msgstr "警告: 註記 %% 無法擴張 (太大了). 現在使用未擴張的.\n" #: g10/sign.c:116 #, c-format -msgid "WARNING: unable to %%-expand policy URL (too large). Using unexpanded.\n" +msgid "" +"WARNING: unable to %%-expand policy URL (too large). Using unexpanded.\n" msgstr "警告: 原則 URL 的 %% 無法擴張 (太大了). 現在使用未擴張的.\n" #: g10/sign.c:139 #, c-format -msgid "WARNING: unable to %%-expand preferred keyserver URL (too large). Using unexpanded.\n" +msgid "" +"WARNING: unable to %%-expand preferred keyserver URL (too large). Using " +"unexpanded.\n" msgstr "警告: 偏好金鑰伺服器 URL 的 %% 無法擴張 (太大了). 現在使用未擴張的.\n" #: g10/sign.c:312 @@ -5665,7 +5448,8 @@ msgstr "妳在 --pgp2 模式下祇能夠使用 PGP 2.x 型態的金鑰來做分� #: g10/sign.c:830 #, c-format -msgid "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" +msgid "" +"WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" msgstr "警告: 強迫使用 %s (%d) 摘要演算法會違反收件者偏好設定\n" #: g10/sign.c:956 @@ -5681,8 +5465,7 @@ msgstr "妳在 --pgp2 模式下祇能夠使用 PGP 2.x 型態的金鑰來做明� msgid "%s encryption will be used\n" msgstr "%s 加密將被採用\n" -#: g10/skclist.c:126 -#: g10/skclist.c:190 +#: g10/skclist.c:126 g10/skclist.c:190 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" msgstr "金鑰未被標示為不安全 - 不能夠拿來跟假的隨機數字產生器併用!\n" @@ -5691,9 +5474,7 @@ msgstr "金鑰未被標示為不安全 - 不能夠拿來跟假的隨機數字產 msgid "skipped \"%s\": duplicated\n" msgstr "已跳過 \"%s\": 重複了\n" -#: g10/skclist.c:165 -#: g10/skclist.c:175 -#: g10/skclist.c:184 +#: g10/skclist.c:165 g10/skclist.c:175 g10/skclist.c:184 #, c-format msgid "skipped \"%s\": %s\n" msgstr "已跳過 \"%s\": %s\n" @@ -5706,8 +5487,7 @@ msgstr "已跳過: 私鑰已經存在\n" msgid "this is a PGP generated Elgamal key which is not secure for signatures!" msgstr "這是由 PGP 產生的 ElGamal 金鑰, 用於簽章並不安全!" -#: g10/tdbdump.c:58 -#: g10/trustdb.c:364 +#: g10/tdbdump.c:58 g10/trustdb.c:364 #, c-format msgid "trust record %lu, type %d: write failed: %s\n" msgstr "信任記錄 %lu, 類別 %d: 寫入失敗: %s\n" @@ -5721,10 +5501,7 @@ msgstr "" "# 相對應的信任值清單被建立於 %s\n" "# (請用 \"gpg --import-ownertrust\" 來取回它們)\n" -#: g10/tdbdump.c:158 -#: g10/tdbdump.c:166 -#: g10/tdbdump.c:171 -#: g10/tdbdump.c:176 +#: g10/tdbdump.c:158 g10/tdbdump.c:166 g10/tdbdump.c:171 g10/tdbdump.c:176 #, c-format msgid "error in `%s': %s\n" msgstr "在 `%s' 中出錯: %s\n" @@ -5755,20 +5532,17 @@ msgstr "在 `%s' 中尋找信任記錄時出錯: %s\n" msgid "read error in `%s': %s\n" msgstr "讀取 `%s' 錯誤: %s\n" -#: g10/tdbdump.c:226 -#: g10/trustdb.c:379 +#: g10/tdbdump.c:226 g10/trustdb.c:379 #, c-format msgid "trustdb: sync failed: %s\n" msgstr "信任資料庫: 同步化失敗: %s\n" -#: g10/tdbio.c:127 -#: g10/tdbio.c:1443 +#: g10/tdbio.c:127 g10/tdbio.c:1443 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "信任資料庫記錄 %lu: 本機搜尋失敗: %s\n" -#: g10/tdbio.c:133 -#: g10/tdbio.c:1450 +#: g10/tdbio.c:133 g10/tdbio.c:1450 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "信任資料庫記錄 %lu: 寫入失敗 (n=%d): %s\n" @@ -5787,15 +5561,12 @@ msgstr "無法存取 `%s': %s\n" msgid "%s: directory does not exist!\n" msgstr "%s: 目錄不存在!\n" -#: g10/tdbio.c:521 -#: g10/tdbio.c:544 -#: g10/tdbio.c:587 +#: g10/tdbio.c:521 g10/tdbio.c:544 g10/tdbio.c:587 #, c-format msgid "can't create lock for `%s'\n" msgstr "無法為 `%s' 建立鎖定\n" -#: g10/tdbio.c:523 -#: g10/tdbio.c:590 +#: g10/tdbio.c:523 g10/tdbio.c:590 #, c-format msgid "can't lock `%s'\n" msgstr "無法鎖定 `%s'\n" @@ -5834,13 +5605,8 @@ msgstr "%s: 建立雜湊表失敗: %s\n" msgid "%s: error updating version record: %s\n" msgstr "%s: 更新版本記錄時錯誤: %s\n" -#: g10/tdbio.c:674 -#: g10/tdbio.c:694 -#: g10/tdbio.c:710 -#: g10/tdbio.c:724 -#: g10/tdbio.c:754 -#: g10/tdbio.c:1376 -#: g10/tdbio.c:1403 +#: g10/tdbio.c:674 g10/tdbio.c:694 g10/tdbio.c:710 g10/tdbio.c:724 +#: g10/tdbio.c:754 g10/tdbio.c:1376 g10/tdbio.c:1403 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: 讀取版本記錄時錯誤: %s\n" @@ -5962,8 +5728,7 @@ msgstr "10 譯者請參見 trustdb.c:uid_trust_string_fixed" msgid "[ revoked]" msgstr "[ 已撤銷 ]" -#: g10/trustdb.c:507 -#: g10/trustdb.c:512 +#: g10/trustdb.c:507 g10/trustdb.c:512 msgid "[ expired]" msgstr "[ 已過期 ]" @@ -6011,8 +5776,7 @@ msgstr "徹底" msgid "no need for a trustdb check\n" msgstr "不需要檢查信任資料庫\n" -#: g10/trustdb.c:581 -#: g10/trustdb.c:2425 +#: g10/trustdb.c:581 g10/trustdb.c:2425 #, c-format msgid "next trustdb check due at %s\n" msgstr "下次信任資料庫檢查將於 %s 進行\n" @@ -6027,8 +5791,7 @@ msgstr "在 `%s' 信任模型中並不需要檢查信任資料庫\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "在 `%s' 信任模型中並不需要更新信任資料庫\n" -#: g10/trustdb.c:837 -#: g10/trustdb.c:1275 +#: g10/trustdb.c:837 g10/trustdb.c:1275 #, c-format msgid "public key %s not found: %s\n" msgstr "找不到公鑰 %s: %s\n" @@ -6062,7 +5825,8 @@ msgstr "%d 個勉強信任以及 %d 個完全信任是 %s 信任模型的最小� #: g10/trustdb.c:2356 #, c-format -msgid "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" +msgid "" +"depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "深度: %d 有效: %3d 已簽署: %3d 信任: %d-, %dq, %dn, %dm, %df, %du\n" #: g10/trustdb.c:2431 @@ -6324,24 +6088,20 @@ msgid "you found a bug ... (%s:%d)\n" msgstr "妳找到一個瑕疵了 ... (%s:%d)\n" #. TRANSLATORS: See doc/TRANSLATE about this string. -#: util/miscutil.c:328 -#: util/miscutil.c:365 +#: util/miscutil.c:328 util/miscutil.c:365 msgid "yes" msgstr "yes" -#: util/miscutil.c:329 -#: util/miscutil.c:370 +#: util/miscutil.c:329 util/miscutil.c:370 msgid "yY" msgstr "yY" #. TRANSLATORS: See doc/TRANSLATE about this string. -#: util/miscutil.c:331 -#: util/miscutil.c:367 +#: util/miscutil.c:331 util/miscutil.c:367 msgid "no" msgstr "no" -#: util/miscutil.c:332 -#: util/miscutil.c:371 +#: util/miscutil.c:332 util/miscutil.c:371 msgid "nN" msgstr "nN" @@ -6390,29 +6150,39 @@ msgstr "(也許妳選錯程式來做這件事了)\n" #~ msgid "can't put notation data into v3 (PGP 2.x style) signatures\n" #~ msgstr "無法在 v3 (PGP 2.x 型態) 的簽章內放入標記資料\n" + #~ msgid "can't put notation data into v3 (PGP 2.x style) key signatures\n" #~ msgstr "無法在 v3 (PGP 2.x 型態) 的金鑰簽章內放入標記資料\n" + #~ msgid "can't put a policy URL into v3 (PGP 2.x style) signatures\n" #~ msgstr "無法在 v3 (PGP 2.x 型態) 的簽章內放入原則 URL\n" + #~ msgid "can't put a policy URL into v3 key (PGP 2.x style) signatures\n" #~ msgstr "無法在 v3 (PGP 2.x 型態) 的金鑰簽章內放入原則 URL\n" + #~ msgid "" #~ "a notation name must have only printable characters or spaces, and end " #~ "with an '='\n" #~ msgstr "標記名稱一定要採用可印出的字符或空白, 並以一個 '=' 來結尾\n" + #~ msgid "a user notation name must contain the '@' character\n" #~ msgstr "使用者標記名稱一定要含有 '@' 字符\n" + #~ msgid "a notation name must not contain more than one '@' character\n" #~ msgstr "使用者標記名稱不得含有兩個或更多的 '@' 字符\n" + #~ msgid "a notation value must not use any control characters\n" #~ msgstr "標記值一定不能使用任何的控制字符\n" + #~ msgid "WARNING: invalid notation data found\n" #~ msgstr "警告: 找到無效的標記資料\n" + #~ msgid "not human readable" #~ msgstr "不是人類能讀得懂的" + #~ msgid "" #~ "please see http://www.gnupg.org/why-not-idea.html for more information\n" #~ msgstr "請參考 http://www.gnupg.org/why-not-idea.html 取得更多資訊\n" + #~ msgid "DSA requires the use of a 160 bit hash algorithm\n" #~ msgstr "DSA 要求使用 160 位元的雜湊演算法\n" - |