From 2c045c4fca471d3faaaa9ac1a047b819538c0f45 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 25 Mar 2008 10:45:59 +0000 Subject: [PATCH] Powerpc64 fix. --- g10/ChangeLog | 3 + g10/keyserver.c | 4 +- keyserver/ChangeLog | 5 + keyserver/gpgkeys_ldap.c | 4 +- mpi/ChangeLog | 5 + mpi/config.links | 11 +- po/be.po | 352 ++++++------ po/ca.po | 397 +++++++------- po/cs.po | 352 ++++++------ po/da.po | 386 +++++++------- po/de.po | 352 ++++++------ po/el.po | 386 +++++++------- po/eo.po | 386 +++++++------- po/es.po | 352 ++++++------ po/et.po | 386 +++++++------- po/fi.po | 386 +++++++------- po/fr.po | 352 ++++++------ po/gl.po | 386 +++++++------- po/hu.po | 386 +++++++------- po/id.po | 386 +++++++------- po/it.po | 386 +++++++------- po/ja.po | 352 ++++++------ po/nb.po | 366 +++++++------ po/nl.po | 352 ++++++------ po/pl.po | 352 ++++++------ po/pt.po | 386 +++++++------- po/pt_BR.po | 386 +++++++------- po/ro.po | 352 ++++++------ po/ru.po | 352 ++++++------ po/sk.po | 386 +++++++------- po/sv.po | 352 ++++++------ po/tr.po | 352 ++++++------ po/zh_CN.po | 352 ++++++------ po/zh_TW.po | 1098 +++++++++++++++----------------------- 34 files changed, 5441 insertions(+), 5660 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 + * 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 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 + + * gpgkeys_ldap.c (build_attrs): Take care of char defaulting to + unsigned when using hextobyte. + 2007-12-17 David Shaw * 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 + + * config.links (mpi_sflags): Powerpc64 needs to come even before + the generic linux powerpc entry. + 2007-10-23 Werner Koch 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" diff --git a/po/be.po b/po/be.po index d7f8e95f4..e7f494894 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Belarusian \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 "" diff --git a/po/ca.po b/po/ca.po index 06dee2965..4dd208d97 100644 --- a/po/ca.po +++ b/po/ca.po @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.0\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Catalan \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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "canvia la data de caducitat" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "canvia la confiança" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra empremta" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "canvia la data de caducitat" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "canvia la confiança" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "mostra empremta" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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 diff --git a/po/cs.po b/po/cs.po index 3c82d4099..ea0561979 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.3.92\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Czech \n" @@ -39,9 +39,9 @@ msgstr "nelze zam 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 kdovn - pravdpodobn byl pouit " "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 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 provst v dvkovm mdu\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 vbr? " -#: 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 vyadovno" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "vyadovno" -#: g10/card-util.c:517 +#: g10/card-util.c:522 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Chyba: V souasn 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 pout.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Chyba: Vce mezer nen povoleno.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Pjmen dritele karty: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Jmno (kestn) dritele 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: jmno a pjmen je pli 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 zskn veejnho kle: " -#: 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 pli 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 pi ten `%s': %s\n" -#: g10/card-util.c:693 +#: g10/card-util.c:698 msgid "Login data (account name): " msgstr "Login (jmnu 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 pli dlouh (limit je %d znak).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Privtn 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: Privtn DO je pli dlouh (limit je %d znak).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Jazykov pedvolby: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Chyba: neplatn dlka etezce s pedvolbami.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Chyba: neplatn znak v etzci s pedvolbami\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Zadejte pohlav: M - musk, F - ensk nebo stisnte mezernk: " -#: 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: nesprvn naformtovan fingerprint.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "operace s klem nen mon: %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 pi zskn informac o aktulnm kli: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Pepsat existujc 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 "Vytvoit zlohu ifrovacho kle mimo kartu? (A/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Pepsat existujc kle? (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 administrtora = `%s'\n" "Toto nastaven mete zmnit pkazem --change-pin\n" -#: g10/card-util.c:1121 +#: g10/card-util.c:1126 msgid "Please select the type of key to generate:\n" msgstr "Prosm, vyberte druh kle, 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) Autentizan 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 vbr.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "Prosm vyberte msto pro uchovn kle:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "neznm algoritmus pro ochranu kle\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "tajn sti kle 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 uloen\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ukonit toto menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 msgid "show admin commands" msgstr "zobraz administrtorsk pkazy" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "ukzat tuto pomoc" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "vypi vechna dostupn data" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "zmn jmno majitele karty" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "zmn URL pro zskn kle" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "zsk kl specifikovan v URL karty" -#: g10/card-util.c:1328 +#: g10/card-util.c:1333 msgid "change the login name" msgstr "zmnit login name" -#: g10/card-util.c:1329 +#: g10/card-util.c:1334 msgid "change the language preferences" msgstr "zmnit jazykov pedvolby" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "zmn pohlav dritele karty" -#: g10/card-util.c:1331 +#: g10/card-util.c:1336 msgid "change a CA fingerprint" msgstr "vypsat fingerprint certifikan autority" -#: g10/card-util.c:1332 +#: g10/card-util.c:1337 msgid "toggle the signature force PIN flag" msgstr "zapnout/vypnout poadovn PINu pi kad self-sign operaci" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "vytvoit nov pr kl" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "nabdka pro zmnu anebo odblokovn PINu" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "ov PIN a vypi vechna data" -#: g10/card-util.c:1455 g10/keyedit.c:1619 +#: g10/card-util.c:1460 g10/keyedit.c:1619 msgid "Command> " msgstr "Pkaz> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 msgid "Admin-only command\n" msgstr "pouze administrtorsk pkazy\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 msgid "Admin commands are allowed\n" msgstr "administrtorsk pkazy jsou povoleny\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 msgid "Admin commands are not allowed\n" msgstr "administrtorsk pkazy 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 pkaz (zkuste \"help\")\n" @@ -721,7 +721,7 @@ msgstr "Opakujte tento PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN nen zopakovn sprvn; 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 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 msgid "show expiration dates during signature listings" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn soubor s monostmi `%s ignorovn'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn soubor s monostmi `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "soubor s monostmi `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "tu monosti 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 "POZNMKA: %s nen pro normln pouit!\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 nahrna, protoe pstupov prva nejsou nastavena " "bezpen\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 vpis\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "neplatn parametr pro vpis\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 preferovanho 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 oven\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "neplatn parametr pro oven\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 oven\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 "VAROVN: program me vytvoit soubor core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVN: %s pepe %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nen dovoleno pouvat %s s %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedv 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 "POZNMKA: %s nen v tto 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 nebezpenou pamt 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 mdu --pgp2 mete vytvet pouze oddlen 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 mdu --pgp2 nelze souasn 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 mdu --pgp2 muste pout 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 "ifrovn zprv v mdu --pgp2 vyaduje 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 "poloka completes-needed mus bt vt ne 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus bt vt 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 "poloka max-cert-depth mus bt 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 bt 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 minimln rove certifikace (min-cert-level); mus bt 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 "POZNMKA: jednoduch md S2K (0) je drazn nedoporuovn\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatn md S2K; mus bt 0, 1 nebo 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "neplatn defaultn pedvolby\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "neplatn uivatelsk pedvolby pro ifrovn\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "neplatn uivatelsk pedvolby pro hashovn\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "neplatn uivatelsk pedvolby 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 funkn 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 "pouit ifrovacho algoritmu `%s' v mdu %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 "pouit hashovacho algoritmu `%s' v mdu %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 "pouit komprimanho algoritmu `%s' v mdu %s dovoleno\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemohu inicializovat databzi dvry: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVN: specifikovn adrest (-r) bez pouit ifrovn s veejnm klem\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [jmno souboru]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [jmno souboru]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symetrick ifrovn `%s' se nepovedlo: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [jmno souboru]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [jmno souboru]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nelze pout --symmetric --encrypt s pkazem --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 pout --symmetric --encrypt v mdu %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [jmno souboru]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [jmno souboru]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [jmno souboru]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nelze pout --symmetric --sign --encrypt s pkazem --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 pout --symmetric --sign --encrypt v mdu %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [jmno souboru]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [jmno souboru]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [jmno souboru]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id uivatele" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id uivatele" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uivatele [pkazy]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id uivatele] [soubor s kli (keyring)]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "odesln na keyserver se nezdailo: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "zskn dat z keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "export kle se nepodail: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "hledn na keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh dat na keyserveru se nezdail: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovn z ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovn do ASCII formtu 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 "[jmno souboru]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Zante pst svou zprvu ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pro certifikan 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 preferovanho 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 pi zpisu souboru kl (keyring) `%s': %s\n" @@ -2517,7 +2517,7 @@ msgstr "kl msgid "importing secret keys not allowed\n" msgstr "import tajnch 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 tajnch kl %s\n" @@ -2639,41 +2639,41 @@ msgstr "kl msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "kl %s: neoekvan podpisov tda (0x%02X) - peskoeno\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 identifiktor uivatele - slouen\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "VAROVN: kl %s me bt revokovn: zkoum zskat revokan 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 "VAROVN: kl %s me bt revokovn: revokan 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\" pidn revokan certifikt\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "kl %s: podpis kle jm samm (direct key signature) pidn\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 "POZNMKA: S/N kle neodpovd S/N karty\n" -#: g10/import.c:2303 +#: g10/import.c:2320 msgid "NOTE: primary key is online and stored on card\n" msgstr "POZNMKA: primrn kl je online a je uloen na kart\n" -#: g10/import.c:2305 +#: g10/import.c:2322 msgid "NOTE: secondary key is online and stored on card\n" msgstr "POZNMKA: sekundrn kl je online a je uloen na kart\n" diff --git a/po/da.po b/po/da.po index 5b4ea70ae..5392dbd61 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Danish \n" @@ -40,9 +40,9 @@ msgstr "kan ikke 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 - mske pga. en fejlbehftet 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 ngle ikke tilgngelig" @@ -397,166 +397,166 @@ msgstr "hemmelig n 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 "sltil" -#: g10/card-util.c:412 +#: g10/card-util.c:417 #, fuzzy msgid "female" msgstr "sltil" -#: 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 lsning 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 prferencer" -#: 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 "pkldning 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 nglering `%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 "Vlg venligst hvilken slags ngle 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 ngle 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 (kryptr 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 ngletilbagekald\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 ngle ikke tilgngelig" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "udelod: hemmelig ngle 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 hjlp" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Ingen hjlp tilgngelig" -#: 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "ndr udlbsdatoen" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "vis prferencer" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "vis fingeraftryk" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "ndr udlbsdatoen" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "vis prferencer" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "vis fingeraftryk" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: g10/card-util.c:1338 +#, fuzzy msgid "generate new keys" msgstr "generr et nyt nglepar" -#: 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 msgid "PIN not correctly repeated; try again" msgstr "kodestningen blev ikke ordentlig gentaget; prv 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 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 "lser 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 tegnst\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 tegnst\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 "importr ngler fra en ngleserver: %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 nglering" -#: 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 nglering" -#: 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 tegnst\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 tegnst\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 tegnst\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 nglering" -#: 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 meningsls 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 ngle 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 resumalgoritme 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 resumalgoritme 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 vre 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 vre 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) frardes 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 vre 0, 1 el. 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid default preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s er meningsls 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 overstte 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] [nglering]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "pkldning 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 "pkldning 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 nglering `%s': %s\n" @@ -2431,7 +2431,7 @@ msgstr "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 nglering\n" @@ -2551,41 +2551,41 @@ msgstr "n msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "ngle %08lX: ikke en rfc2440 ngle - 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 ngle 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 ngle 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 "ngle %08lX: offentlig ngle importeret\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "ngle %08lX: offentlig ngle 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 ngle 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 ngle er allerede tilstede\n" diff --git a/po/de.po b/po/de.po index c9db67020..ea5ad55c1 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.4.8\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\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 \n" "Language-Team: German \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" diff --git a/po/el.po b/po/el.po index 0ec53409e..442fbed60 100644 --- a/po/el.po +++ b/po/el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.1.92\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Greek \n" @@ -38,9 +38,9 @@ msgstr " 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr " " - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr " " - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr " fingerprint" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr " " + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr " " + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr " fingerprint" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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 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 " 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" diff --git a/po/eo.po b/po/eo.po index 98707ea80..f4a747b5f 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.6d\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Esperanto \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 - verajne cima pototransendilo 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 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 reimo\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 signoeno\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "nevalida signo en signoeno\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 eksvalidios 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "ani la daton de eksvalidio" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "ani la posedantofidon" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "montri fingrospuron" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "ani la daton de eksvalidio" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "ani la posedantofidon" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "montri fingrospuron" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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 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 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 mesaon 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-reimo (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-reimo; 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 reimo %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 reimo %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 reimo %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 "malifrado 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 reimo %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 reimo %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 mesaon ...\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 " 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 " 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" diff --git a/po/es.po b/po/es.po index f8468aade..8393efd28 100644 --- a/po/es.po +++ b/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 1.4.1\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\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 Surez \n" "Language-Team: Spanish \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 eleccin: " -#: 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: slo 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 (mximo %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 pblica: " -#: 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 mximo 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 (lmite 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 (lmite 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 invlida.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Error: caracteres invlidos 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 vlida.\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 invlido 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 operacin 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 informacin 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" "Debera 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 autentificacin\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 "Eleccin invlida.\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 proteccin 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 estn 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 opcin 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 slo 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 invlida (pruebe \"help\")\n" @@ -731,7 +731,7 @@ msgstr "Repita este PIN: " msgid "PIN not correctly repeated; try again" msgstr "PIN repetido incorrectamente; intntelo 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 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 ampliacin `%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 vlido\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 vlido\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 invlidas\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opciones de importacin invlidas\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opciones de importacin invlidas\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opciones de exportacin invlidas\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opciones de exportacin invlidas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: lista de opciones invlida\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "lista de opciones invlida\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 vlido\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 vlida\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 vlido\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 vlido\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 verificacin invlidas\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "opciones de verificacin invlidas\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 verificacin invlidas\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 "ATENCIN: el programa podra 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 sesin\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 "slo 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 tuberas) 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 invlido\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 invlido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "el algoritmo de compresin seleccionado es invlido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "el algoritmo de certificacin por resumen elegido es invlido\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 invlido; 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 invlido; 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 invlidas\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferencias personales de cifrado invlidas\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferencias personales de algoritmo de resumen invlidas\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferencias personales de compresin invlidas\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s an 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 compresin `%s' en modo %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicializacin 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 pblica 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 simtrico 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 "envo al servidor de claves fallido: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepcin del servidor de claves fallida: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "exportacin de clave fallida: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "bsqueda del servidor de claves fallida: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "renovacin al servidor de claves fallida: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminacin de armadura fallida: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "creacin de armadura fallida: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de distribucin invlido `%s'\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[nombre_fichero]" @@ -1811,19 +1811,19 @@ msgstr "[nombre_fichero]" # En espaol no se deja espacio antes de los puntos suspensivos # (Real Academia dixit) :) # Tomo nota :-). Este comentario djalo 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 poltica de certificado invlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "URL de poltica invlida\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 vlida\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 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 revocacin %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 revocacin %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 revocacin aadido\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 aadida\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 lnea 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 lnea y almacenada en la tarjeta\n" diff --git a/po/et.po b/po/et.po index b1e544b32..2baadf7c5 100644 --- a/po/et.po +++ b/po/et.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Estonian \n" @@ -38,9 +38,9 @@ msgstr "`%s' ei msgid "waiting for lock on `%s'...\n" msgstr "kirjutan salajase vtme 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 smbol pakendis - tenoliselt 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 vti ei ole kttesaadav" @@ -396,166 +396,166 @@ msgstr "salajane v 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 "Phjus puudub" -#: g10/card-util.c:439 +#: g10/card-util.c:444 #, fuzzy msgid "not forced" msgstr "ei tdeldud" -#: 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 vtit 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 smbol eelistuste snes\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "lubamatu smbol eelistuste snes\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 srmejlg\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "nita srmejlge" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "viga: vigane srmejlg\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Vtme genereerimine ebannestus: %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 vtme vtmehoidlasse `%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 vtmetpi 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 krpteerimiseks)\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 thistamise phjus:\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 vtme salajased komponendid ei ole kttesaadavad.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "jtsin vahele: avalik vti 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 "vlju sellest menst" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "nita seda abiinfot" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Vtme 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "muuda aegumise kuupeva" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "muuda omaniku usaldust" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "nita srmejlge" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "muuda aegumise kuupeva" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "muuda omaniku usaldust" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "nita srmejlge" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: g10/card-util.c:1338 +#, fuzzy msgid "generate new keys" msgstr "genereeri uus vtmepaar" -#: 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 "Ksklus> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1526 +#: g10/card-util.c:1531 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjutan salajase vtme 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 ksklus (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 msgid "key \"%s\" not found: %s\n" msgstr "vtit '%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 msgid "show expiration dates during signature listings" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MRKUS: ignoreerin vana vaikimisi vtmete faili `%s'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MRKUS: vaikimisi vtmete fail `%s' puudub\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "vtmete fail `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "loen vtmeid 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 "MRKUS: %s ei ole tavapraseks 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 tttu 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 vtmeserveri 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 vtmed\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "vigased impordi vtmed\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 vtmed\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path vrtuseks 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 vtmed\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 vib salvestada oma mlupildi!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "HOIATUS: %s mrab 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 mtet!\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 vtme 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 vi 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 krpteerida\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 krpteerimine --pgp2 moodis nuab 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 lhendi 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 lhendi 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 vi 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 vi 3\n" -#: g10/gpg.c:3110 +#: g10/gpg.c:3132 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MRKUS: 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 vi 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 lhendi 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 tta 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 "snumilhendi 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 ebannestus: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "HOIATUS: mrati saajad (-r) aga ei kasutata avaliku vtme krptograafiat\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 "lahtikrpteerimine ebannestus: %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 [ksud]" -#: 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] [vtmehoidla]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "vtmeserverile saatmine ebannestus: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "vtmeserverilt lugemine ebannestus: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "vtme eksport ebannestus: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "vtmeserveri otsing ebannestus: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "vtmeserveri uuendamine ebannestus: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "lahtipakendamine ebannestus: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "pakendamine ebannestus: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "vigane rsialgoritm `%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 nd 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 vtmehoidlasse `%s' kirjutamisel: %s\n" @@ -2517,7 +2517,7 @@ msgstr "v msgid "importing secret keys not allowed\n" msgstr "kirjutan salajase vtme 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 vtmete vaikimisi vtmehoidla: %s\n" @@ -2638,44 +2638,44 @@ msgstr "v msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "vti %08lX: ootamatu allkirja klass (0x%02x) - jtan vahele\n" -#: g10/import.c:1737 +#: g10/import.c:1754 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "vti %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: vti %08lX vib olla thistatud: laen thistamise vtit %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: vti %08lX vib olla thistatud: thistamise vtit %08lX pole.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "vti %08lX: \"%s\" thistamise sertifikaat lisatud\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "vti %08lX: lisatud vahetu vtme 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 vti ei sobi salajase vtmega!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "jtsin vahele: avalik vti 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 "jtsin vahele: avalik vti on juba olemas\n" diff --git a/po/fi.po b/po/fi.po index 1e6903ffc..faaf8ce71 100644 --- a/po/fi.po +++ b/po/fi.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Finnish \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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "muuta voimassoloaikaa" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "muuta luottamusastetta" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "näytä sormenjälki" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "muuta voimassoloaikaa" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "muuta luottamusastetta" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "näytä sormenjälki" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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" diff --git a/po/fr.po b/po/fr.po index 6140da773..ddce89e20 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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: Gal Quri \n" "Language-Team: French \n" @@ -43,9 +43,9 @@ msgstr "impossible de verrouiller `%s'\n" msgid "waiting for lock on `%s'...\n" msgstr "criture de la cl secrte 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 "" "caractre 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 dtecte\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 "fminin" -#: g10/card-util.c:412 +#: g10/card-util.c:417 msgid "unspecified" msgstr "non spcifi" -#: 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 caractre < 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 dteneur de la carte: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Prnom du dteneur 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 caractres).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL pour rcuprer 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 caractres).\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 "Donnes 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: Donnes d'indentification trop longues (la limite est\n" "%d caractres).\n" -#: g10/card-util.c:762 +#: g10/card-util.c:767 msgid "Private DO data: " msgstr "Donnes DO prives: " -#: 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 caractres).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Prfrences 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 chane de prfrences.\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Erreur: caractres invalide dans la chane de prfrences.\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: rponse 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 formate.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "l'opration 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 cls 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 "Slectionnez le type de cl gnrer:\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 "Slectionnez 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 secrtes 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 secrte est dj stocke 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 donnes disponibles" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "changer le nom du propritaire de la carte" -#: g10/card-util.c:1326 +#: g10/card-util.c:1331 msgid "change URL to retrieve key" msgstr "changer l'URL pour rcuprer 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 spcifie 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 prfrences de langue" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "changer le sexe du propritaire 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 paramtre obligeant rentrer le code PIN pour les\n" "signatures" -#: g10/card-util.c:1333 +#: g10/card-util.c:1338 msgid "generate new keys" msgstr "gnrer de nouvelles cls" -#: g10/card-util.c:1334 +#: g10/card-util.c:1339 msgid "menu to change or unblock the PIN" msgstr "menu pour changer ou dverrouiller le PIN" -#: g10/card-util.c:1335 +#: g10/card-util.c:1340 msgid "verify the PIN and list all data" msgstr "vrifier le code PIN et lister toutes les donnes" -#: 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 msgid "PIN not correctly repeated; try again" msgstr "le code PIN n'a pas t correctement rpt ; 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-cls 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 dfaut `%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 dfaut `%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 charge car ses\n" "permissions sont peu sres\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 caractres 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'interprter l'URL du serveur de cls\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 cls sont invalides\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "les options du serveur de cls 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 cls favori qui a t donne 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 vrification invalides\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "options de vrification 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'excution %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 vrification 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 crer 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'excution ave une mmoire non scurise 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 dtache 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 mme 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 ncessite 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 slectionn 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 slectionne est invalide\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 msgid "selected compression algorithm is invalid\n" msgstr "l'algorithme de compression slectionn 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 slectionne 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 suprieur 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed doit tre suprieur 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 dconseill\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 "prfrences par dfaut invalides\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "prfrences de chiffrement personnelles invalides\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "prfrences de hachage personnelles invalides\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "prfrences 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 donns 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 symtrique 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-cls]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'envoi vers le serveur de cls a chou: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la rception depuis le serveur de cls 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 cls a chou: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "le rafrachissement par le serveur de cls 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 donne 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 donne 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 cls favori qui a t donne 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-cls `%s': %s\n" @@ -2572,7 +2572,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "il est interdit d'importer les cl secrtes\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-cls par dfaut: %s\n" @@ -2696,44 +2696,44 @@ msgstr "cl msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "cl %s: classe de signature non attendue (0x%02X) - ignore\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 dtect - 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 rvoque: recherche de\n" "la cl de rvocation %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 rvoque: la cl de\n" "rvocation %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 rvocation %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 numro de srie 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 stocke 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 stocke sur la carte\n" diff --git a/po/gl.po b/po/gl.po index ec369e8bc..56558113f 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.4\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Galician \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 "" "carcter 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 dispoible" @@ -400,166 +400,166 @@ msgstr "a chave secreta non est 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 sa seleccin? " -#: 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 pblica 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 vlido 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 vlido 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 vlida\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 vlida\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A xeracin 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 vlidos.\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 "Seleccin non vlida.\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 revocacin:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de proteccin descoecido\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 estn dispoibles.\n" -#: g10/card-util.c:1246 +#: g10/card-util.c:1251 #, fuzzy msgid "secret key already stored on a card\n" msgstr "omtese: 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 "sar 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 dispoible 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "cambia-la fecha de expiracin" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "cambia-la confianza sobre o dono" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "amosar fingerprint" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "cambia-la fecha de expiracin" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "cambia-la confianza sobre o dono" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "amosar fingerprint" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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; tnteo 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 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: ignrase o antigo ficheiro de opcins 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 opcins por defecto `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opcins `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lendo as opcins 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 extensin 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 vlido\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 vlido\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: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "opcins de importacin non vlidas\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 vlido\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 vlido\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 vlido\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 vlido\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: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "opcins de exportacin non vlidas\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: opcins de exportacin non vlidas\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 empregndoo 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 dispoible nesta sesin\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 canalizacins) 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 precsase 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 vlido\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 vlido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de resumo de certificacin seleccionado non vlido\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 comprobacin por defecto non vlido; 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 comprobacin por defecto non vlido; 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: desaconsllase 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 vlido; 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 vlidas\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferencias de cifrado personais non vlidas\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferencias de resumo personais non vlidas\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferencias de compresin personais non vlidas\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s anda 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 compresin \"%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 pblica\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 envo 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 recepcin 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 exportacin 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 actualizacin 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 poe-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 vlido `%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 sa 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 certificacin dado non vlido\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 vlido\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 vlido\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 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 revocacin %" "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 revocacin %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 revocacin 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 pblica 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 "omtese: 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 "omtese: a chave secreta xa est presente\n" diff --git a/po/hu.po b/po/hu.po index a2919690f..0f4542317 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 Lszl \n" "Language-Team: Hungarian \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 llomnyba.\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 pnclban - valsznleg egy bugos MTA bne.\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 rendelkezsre" @@ -398,166 +398,166 @@ msgstr "titkos kulcs nem 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 megcsinlni ktegelt mdban!\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 vlaszt? " -#: 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 nyilvnos 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\" olvassakor: %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 "preferencik frisstse" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "rvnytelen karakter a preferencik kztt!\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "rvnytelen karakter a preferencik kztt!\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: rvnytelen 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: rvnytelen ujjlenyomat.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kulcsgenerls sikertelen: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "Nem talltam rvnyes 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 rsakor: %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 "Krem, adja meg, milyen kulcsot kvn:\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 alrs lejrt: %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 titkosts)\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 "rvnytelen vlaszts.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Krem, vlassza ki a visszavons okt:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "Ismeretlen vdelmi algoritmus!\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Az elsdleges kulcs titkos rszei nem elrhetk.\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 mr 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 "kilps ebbl a menbl" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "Egymsnak 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 sgt" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "Kulcs tallhat: " -#: 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "lejrat megvltoztatsa" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "kulcstulajdonos megbzhatsgnak belltsa" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "megmutatja az ujjlenyomatot" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "lejrat megvltoztatsa" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "kulcstulajdonos megbzhatsgnak belltsa" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "megmutatja az ujjlenyomatot" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: g10/card-util.c:1338 +#, fuzzy msgid "generate new keys" msgstr "j kulcspr ltrehozsa" -#: 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 "Egymsnak ellentmond parancsok!\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "Egymsnak 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 llomnyba.\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 "rvnytelen parancs! (Prblja a sgt: \"help\".)\n" @@ -749,7 +749,7 @@ msgstr "Ism msgid "PIN not correctly repeated; try again" msgstr "Nem ismtelte meg helyesen a jelszt! Prblja 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 msgid "key \"%s\" not found: %s\n" msgstr "\"%s\" kulcs nem tallhat: %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 msgid "show expiration dates during signature listings" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MEGJEGYZS: Figyelmen kvl hagytam a rgi opcikat (%s).\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MEGJEGYZS: Nincs alaprtelmezett opcis fjl (%s).\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "\"%s\" opcis fjl: %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "Az opcikat a \"%s\" llomnybl 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 "MEGJEGYZS: %s nem norml hasznlatra 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 bvtst rossz engedlyek miatt tltm 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 rvnyes karakterkioszts!\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nem rvnyes karakterkioszts!\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: rvnytelen export opcik!\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "rvnytelen import opcik!\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 rvnyes karakterkioszts!\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 alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nem rvnyes karakterkioszts!\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 rvnyes karakterkioszts!\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: rvnytelen export opcik!\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Nem tudom a vgrehajtsi elrsi utat %s rtkre lltani!\n" -#: g10/gpg.c:2835 +#: g10/gpg.c:2856 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: rvnytelen export opcik!\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 llomnyt hozhat ltre!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "FIGYELEM: %s hatstalantja %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 hasznlhat egytt!\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 gynk nem elrhet 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 llomnyba.\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 klnll s olvashatszveg-alrst kszthet --pgp2 mdban!\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 titkosthat egyszerre --pgp2 mdban!\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 llomnyokat (pipe-ot nem) hasznlhat --pgp2 mdban!\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "zenet titkostsa --pgp2 mdban IDEA rejtjelezt ignyel!\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 kivlasztott rejtjelez algoritmus rvnytelen!\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 kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "Az igazolshoz kivlasztott kivonatol algoritmus rvnytelen!\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-nl!\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-nl!\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 kz 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 "rvnytelen 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 "rvnytelen 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 "MEGJEGYZS: Egyszer S2K md (0) ersen ellenjavallt!\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "rvnytelen S2K md; 0, 1 vagy 3 lehet.\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "rvnytelen alaprtelmezett preferencik!\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "rvnytelen szemlyes rejtjelez-preferencik!\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "rvnytelen szemlyes kivonatolpreferencik!\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "rvnytelen szemlyes tmrtpreferencik!\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s s %s egyelre nem hasznlhat egytt!\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 hasznlhatja \"%s\" rejtjelez algoritmust %s mdban!\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 hasznlhatja \"%s\" kivonatol algoritmust %s mdban!\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 hasznlhatja \"%s\" tmrt algoritmust %s mdban!\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Bizalmi adatbzis (%s) inicializlsa sikertelen!\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "FIGYELEM: Cmzett megadva (-r), de nincs nyilvnos kulcs titkosts!\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [fjlnv]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [fjlnv]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Visszafejts sikertelen: %s.\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [fjlnv]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: 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 hasznlhatja %s-t %s mdban!\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [fjlnv]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: 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 hasznlhatja %s-t %s mdban!\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [fjlnv]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [fjlnv]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [fjlnv]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key felh-azonost" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key felh-azonost" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key felh-azonost [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-azonost] [kulcskarika]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "Klds a kulcsszerverre sikertelen: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Vtel a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "Kulcsexportls sikertelen: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "Keress a kulcsszerveren sikertelen: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Frissts a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "Pncl eltvoltsa nem sikerlt: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "Pnclozs nem sikerlt: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "rvnytelen kivonatol algoritmus: %s\n" -#: g10/gpg.c:3934 +#: g10/gpg.c:3956 msgid "[filename]" msgstr "[fjlnv]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Kezdheti gpelni az zenetet...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "A megadott igazolsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" @@ -2434,7 +2434,7 @@ msgid "writing to `%s'\n" msgstr "rok a \"%s\" llomnyba.\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 rsakor: %s\n" @@ -2525,7 +2525,7 @@ msgstr "" msgid "importing secret keys not allowed\n" msgstr "rom a titkos kulcsot a %s llomnyba.\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 alaprtelmezett titkoskulcs-karika: %s\n" @@ -2647,46 +2647,46 @@ msgstr "%08lX kulcs: Alkulcsal msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "%08lX kulcs: Vratlan alrsosztly (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: Duplzott felh. azonostt talltam - sszefztem.\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 visszavonhattk:\n" "lehvom 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 visszavonhattk:\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 igazolst hozzadtam.\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "%08lX kulcs: Kulcsalrst hozzadtam.\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 nyilvnos 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 mr 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 mr jelen van.\n" diff --git a/po/id.po b/po/id.po index d54c93139..612a76da1 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-id\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Indonesian \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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "ubah tanggal kadaluarsa" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "ubah ownertrust" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "tampilkan fingerprint" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "ubah tanggal kadaluarsa" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "ubah ownertrust" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "tampilkan fingerprint" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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" diff --git a/po/it.po b/po/it.po index 1e21fcc4e..2651b331b 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.1.92\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Italian \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 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "cambia la data di scadenza" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "cambia il valore di fiducia" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra le impronte digitali" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "cambia la data di scadenza" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "cambia il valore di fiducia" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "mostra le impronte digitali" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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" diff --git a/po/ja.po b/po/ja.po index f38050a0c..de898a484 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.3.92\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Japanese \n" @@ -41,9 +41,9 @@ msgstr " 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 msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGPno. %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 " 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-needed1礭ͤɬפǤ\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-depth1255ϰϤǤʤФʤޤ\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-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3107 +#: g10/gpg.c:3129 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "̵min-cert-level0123ǤʤФʤޤ\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⡼ɡ013ǤʤФʤޤ\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 " 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 " 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" diff --git a/po/nb.po b/po/nb.po index ecc9da709..a045df9c7 100644 --- a/po/nb.po +++ b/po/nb.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.3\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\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 Endrestl \n" "Language-Team: Norwegian Bokml \n" @@ -42,9 +42,9 @@ msgstr "kan ikke l msgid "waiting for lock on `%s'...\n" msgstr "venter p lsing 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 gjre 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 forelpig 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 gr 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 nkkel: " -#: 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 gr 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 gr 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 gr ved %d tegn).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Sprkpreferanser:" -#: 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 "Kjnn ((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 "nkkeloperasjonen 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 nvrende nkkelinfo: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Erstatte eksisterende nkkel? (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 krypteringsnkler utenfor kortet? (J/n) " -#: g10/card-util.c:1073 +#: g10/card-util.c:1078 msgid "Replace existing keys? (y/N) " msgstr "Erstatte eksisterende nkler? (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 br 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 nkkel 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) Signaturnkkel\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) Krypteringsnkkel\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) Autentiseringsnkkel\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 nkkelen skal lagres:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 msgid "unknown key protection algorithm\n" msgstr "ukjent nkkelbeskyttelsesalgoritme\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "hemmelige deler av nkkelen 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 nkkel 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 nkkel" -#: g10/card-util.c:1327 +#: g10/card-util.c:1332 msgid "fetch the key specified in the card URL" msgstr "hente nkkelen 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 sprkpreferansene" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "endre kortholders kjnn" -#: 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 nkler" -#: 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 (prv help)\n" @@ -676,8 +676,7 @@ msgstr "hemmelig n #: 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; prv 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 "nkkelen %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 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" -"ADVARSEL: utrygt eierskap p katalogene p nivene over hjemmekatalogen %" -"s\n" +"ADVARSEL: utrygt eierskap p katalogene p nivene 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 nivene over konfigurasjonsfilen " -"%s\n" +"ADVARSEL: utrygt eierskap p katalogene p nivene 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 nivene over hjemmekatalogen " -"%s\n" +"ADVARSEL: utrygge rettigheter p katalogene p nivene over hjemmekatalogen %" +"s\n" #: g10/gpg.c:1306 #, c-format @@ -1378,425 +1376,425 @@ msgstr "vise navnet til n 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 signaturutgelse\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 nkkelserverens 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 nkkelserver\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "ugyldige valg for nkkelserver\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) nr --pgp2 er psltt\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 vre strre enn 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-neede m vre strre 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 vre 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 vre 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 vre 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 frardet\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 vre 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 nkkelkryptering\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] [nkkelknippe]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "sending til nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "mottak fra nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "nkkeleksport mislyktes: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "sk p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh p nkkelserver 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 nkkelserveren 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 nkkelknippet %s: %s\n" @@ -2409,7 +2407,7 @@ msgstr "n msgid "importing secret keys not allowed\n" msgstr "import av hemmelig nkkel 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 nkkelknippe: %s\n" @@ -2530,41 +2528,41 @@ msgstr "n msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "nkkel %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 "nkkel %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: nkkel %s kan vre opphevet: henter opphevingsnkkel %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: nkkel %s kan vre opphevet: opphevingsnkkel %s ikke tilstede.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "nkkel %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 "nkkel %s: direkte nkkelsignatur 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 "" diff --git a/po/nl.po b/po/nl.po index aae5b8189..542ec12f2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.6\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\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" diff --git a/po/pl.po b/po/pl.po index f1239799a..88059d542 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.4.8\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Polish \n" @@ -50,9 +50,9 @@ msgstr "nie mo 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" "przekamanie 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 dziaa 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 "Twj wybr? " -#: 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 "mczyzna" -#: 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 "Bd: 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 "Bd: nie mona uyw znaku ,,<''.\n" -#: g10/card-util.c:521 +#: g10/card-util.c:526 msgid "Error: Double spaces are not allowed.\n" msgstr "Bd: podwjne spacje s niedozwolone.\n" -#: g10/card-util.c:538 +#: g10/card-util.c:543 msgid "Cardholder's surname: " msgstr "Nazwisko waciciela karty: " -#: g10/card-util.c:540 +#: g10/card-util.c:545 msgid "Cardholder's given name: " msgstr "Imi waciciela 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 "Bd: pene dane (imi + nazwisko) zbyt dugie (limit %d znakw).\n" -#: g10/card-util.c:579 +#: g10/card-util.c:584 msgid "URL to retrieve public key: " msgstr "URL rda 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 dugi (maksymalnie %d znakw).\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 "bd 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 "Bd: dane autoryzacyjne zbyt dugie (maksymalnie %d znakw).\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 "Bd: prywatne dane DO zbyt dugie (maksymalnie %d znakw).\n" -#: g10/card-util.c:792 +#: g10/card-util.c:797 msgid "Language preferences: " msgstr "Ustawienia jzyka: " -#: g10/card-util.c:800 +#: g10/card-util.c:805 msgid "Error: invalid length of preference string.\n" msgstr "Bd: niepoprawna dugo tekstu ustawie,\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 msgid "Error: invalid characters in preference string.\n" msgstr "Bd: niewaciwe znaki w tekcie ustawie.\n" -#: g10/card-util.c:830 +#: g10/card-util.c:835 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Plec: M - mczyzna, F - kobieta, lub spacja: " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Bd: 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 "Bd: niewaciwy format odcisku klucza.\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, c-format msgid "key operation not possible: %s\n" msgstr "uycie klucza niemoliwe: %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 "bd przy pobieraniu opisu klucza: %s\n" -#: g10/card-util.c:1031 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Zastpi istniejcy 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 "Zastpi istniejce 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" "Naley 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 "Niewaciwy wybr.\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 "czci tajne klucza s niedostpne\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 "wyjcie 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 dostpne dane" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "zmiana nazwiska waciciela 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 jzyka" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "zmiana pci waciciela 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 "przeczenie 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 dostpne 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 (sprbuj \"help\")\n" @@ -738,7 +738,7 @@ msgstr "Powt msgid "PIN not correctly repeated; try again" msgstr "PIN nie zosta poprawnie powtrzony; jeszcze jedna prba" -#: 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 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 msgid "show expiration dates during signature listings" msgstr "pokazywanie dat wyganicia w licie podpisw" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "UWAGA: stary domylny 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 domylnego 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 uytku!\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 zaadowany z powodu niebezpiecznych praw dostpu\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 wanoci 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 znakw\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 "niezrozumay 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 regulaminw 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 uytkownika przy sprawdzaniu podpisu" -#: g10/gpg.c:2645 +#: g10/gpg.c:2666 msgid "show preferred keyserver URLs during signature verification" msgstr "pokazywanie URL-i wybranych serwerw kluczy" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 msgid "show user ID validity during signature verification" msgstr "pokazywanie poziomw zaufania przy sprawdzaniu podpisu" -#: g10/gpg.c:2649 +#: g10/gpg.c:2670 msgid "show revoked and expired user IDs in signature verification" msgstr "" "okazywanie uniewanionych i wygasych identyfikatorw przy sprawdzaniu " "podpisu" -#: g10/gpg.c:2651 +#: g10/gpg.c:2672 msgid "show only the primary user ID in signature verification" msgstr "pokazywanie tylko gwnego identyfikatora przy sprawdzaniu podpisu" -#: g10/gpg.c:2653 +#: g10/gpg.c:2674 msgid "validate signatures with PKA data" msgstr "sprawdzanie podpisw z uyciem danych PKA" -#: g10/gpg.c:2655 +#: g10/gpg.c:2676 msgid "elevate the trust of signatures with valid PKA data" msgstr "podnoszenie zaufania do podpisw 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 mona ustawi cieki programw 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 "OSTRZEENIE: program moe stworzy plik zrzutu pamici!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "OSTRZEENIE: %s powoduje obejcie %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie wolno uywa %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 poczeniu 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 dostpny 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 bdzie wykonane w niezabezpieczonej pamici\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 mona skada tylko podpisy oddzielne lub doczone 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 mona jednoczenie 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 uywa plikw a nie potokw.\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "szyfrowanie wiadomoci w trybie --pgp2 wymaga moduu 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 szyfrujcy 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 skrtw wiadomoci 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 skrtw powiadcze 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 wiksza 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 wiksza 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 mieci 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 "" "niewaciwy domylny 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 "" "niewaciwy 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 "niewaciwe domylne ustawienia\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "niewaciwe ustawienia szyfrw\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "niewaciwe ustawienia skrtw\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "niewaciwe ustawienia algorytmw 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 dziaa 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 dostpny 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 "skrt ,,%s'' nie jest dostpny 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 dostpna 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 powiodo si: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "OSTRZEENIE: podano adresatw (-r) w dziaaniu ktre 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 "bd 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 mona uy --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 moesz uy --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 moesz uy --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 moesz uy --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 uytkownika" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key nazwa uytkownika" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key nazwa uytkownika [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] [zbir kluczy]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, c-format msgid "keyserver send failed: %s\n" msgstr "wysyka do serwera kluczy nie powioda si: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "odbir z serwera kluczy nie powid si: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "eksport kluczy nie powid 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 powiodo si: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "odwieenie kluczy z serwera nie powiodo si: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "zdjcie opakowania ASCII nie powiodo si: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "opakowywanie ASCII nie powiodo si: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "niewaciwy algorytm skrtu ,%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 powiadczania jest niepoprawny\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "podany URL regulaminu podpisw 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 "bd zapisu zbioru kluczy '%s': %s\n" @@ -2504,7 +2504,7 @@ msgstr "klucz %s: klucz tajny z ustawionym szyfrem %d - pomini 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 domylego zbioru kluczy tajnych: %s\n" @@ -2627,44 +2627,44 @@ msgstr "klucz %s: pomini msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "klucz %s: pominito 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: doczono powtrzony identyfikator uytkownika\n" -#: g10/import.c:1799 +#: g10/import.c:1816 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "OSTRZEENIE: klucz %s mg zosta uniewazniony:\n" " zapytanie o uniewaniajcy 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 "" "OSTRZEENIE: klucz %s mg zosta uniewaniony,\n" " brak klucza uniewaniajcego %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 uniewanienia\n" -#: g10/import.c:1906 +#: g10/import.c:1923 #, c-format msgid "key %s: direct key signature added\n" msgstr "klucz %s: dodano bezporedni 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 gwny jest dostpny 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 dostpny z karty\n" diff --git a/po/pt.po b/po/pt.po index 97e0889c5..18a3ff3c0 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: pt \n" @@ -41,9 +41,9 @@ msgstr "imposs 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 no disponvel" @@ -399,166 +399,166 @@ msgstr "chave secreta n 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 "impossvel fazer isso em modo no-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 "Opo? " -#: 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 "no 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 pblica 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 "preferncias actualizadas" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter invlido na cadeia de caractres da preferncia\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter invlido na cadeia de caractres da preferncia\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: verso de ficheiro invlida %d\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "mostra impresso digital" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: verso de ficheiro invlida %d\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A gerao 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 vlido 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 "Opo invlida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "motivo da revocao: " -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de compresso 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 primria no disponveis.\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 disponvel" -#: 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "muda a data de validade" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "muda os valores de confiana" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra impresso digital" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "muda a data de validade" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "muda os valores de confiana" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "mostra impresso digital" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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 invlido (tente \"help\")\n" @@ -750,7 +750,7 @@ msgstr "Repita a frase secreta: " msgid "PIN not correctly repeated; try again" msgstr "a frase secreta no 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 msgid "key \"%s\" not found: %s\n" msgstr "chave `%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" @@ -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 opes por omisso `%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 opes por omisso `%s' inexistente\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opes `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "a ler opes 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 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 extenso de cifra \"%s\" no foi carregada devido s suas permisses " "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 no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\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 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: opes de exportao invlidas\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 #, fuzzy msgid "invalid keyserver options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2623 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 #, fuzzy msgid "invalid list options\n" msgstr "opes de importao invlidas\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 um conjunto de caracteres vlido\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 poltica de assinatura dada invlida\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\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 um conjunto de caracteres vlido\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: opes de exportao invlidas\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 #, fuzzy msgid "invalid verify options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2672 +#: g10/gpg.c:2693 #, c-format msgid "unable to set exec-path to %s\n" msgstr "no foi possvel 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: opes de exportao invlidas\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 sobrepe %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no 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 no est disponvel nesta sesso\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 "no 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 no 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 invlido\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 invlido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" de certificao selecionado invlido\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 "nvel de verificao por omisso invlido: 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 "nvel de verificao por omisso invlido: 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) no recomendvel\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K invlido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "preferncias por omisso invlidas\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferncias pessoais de cifra invlidas\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferncias pessoais de 'digest' invlidas\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferncias pessoais de compresso invlidas\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no 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 "no 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 "no 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 "no 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 confiana: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: destinatrios (-r) dados sem utilizar uma cifra de chave pblica\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 "no 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 "no 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 gerao de chaves falhou: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizao 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 "criao de armadura falhou: %s\n" -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de disperso invlido `%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 poltica de certificao dada invlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\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 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 pblico por omisso: %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 revocao %" "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 revocao %08lX no " "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 revogao \"%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: gnupg-i18n@gnupg.org\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 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 no disponvel" @@ -404,167 +404,167 @@ msgstr "chave secreta n 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 "impossvel fazer isso em modo no-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 opo? " -#: 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 "no 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 pblico 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 preferncias" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Caractere invlido no nome\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Caractere invlido 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: impresso digital invlida\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "Impresso digital:" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "erro: impresso digital invlida\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A gerao 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 vlido 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 no 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 "Opo invlida.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "rev- revogaes de chaves incorreta\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de compresso desconhecido" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 #, fuzzy msgid "secret parts of key are not available\n" msgstr "chave secreta no disponvel" -#: 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 disponvel" -#: 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "muda a data de validade" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "muda os valores de confiana" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra impresso digital" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "muda a data de validade" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "muda os valores de confiana" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "mostra impresso digital" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: 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 invlido (tente \"help\")\n" @@ -760,7 +760,7 @@ msgstr "Repita a frase secreta: " msgid "PIN not correctly repeated; try again" msgstr "A frase secreta no 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 "usurio `%s' no 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 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 opes padro `%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 opes padro `%s' inexistente\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de opes `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "lendo opes 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 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 no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2556 +#: g10/gpg.c:2577 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\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 "impossvel 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 invlido" -#: 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 invlida" -#: 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 invlido" -#: 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 invlida" -#: 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 um conjunto de caracteres vlido\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 poltica dada invlida\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2668 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\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 um conjunto de caracteres vlido\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 invlido" -#: 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 no permitido com %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no 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 no pode ser usada nesta verso\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 no vlido\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 no vlido\n" -#: g10/gpg.c:3078 +#: g10/gpg.c:3100 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3084 +#: g10/gpg.c:3106 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\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 invlido: 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 invlido: 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) no recomendvel\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K invlido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid default preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no 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 no vlido\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-usurio" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id-usurio" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usurio [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-usurio] [chaveiro]" -#: g10/gpg.c:3640 +#: g10/gpg.c:3662 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "enumerao 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 gerao 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 "enumerao 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 "criao de armadura falhou: %s\n" # "hash" poderia ser "espalhamento", mas no fica claro -#: g10/gpg.c:3811 +#: g10/gpg.c:3833 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash invlido `%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 poltica dada invlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4266 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4277 +#: g10/gpg.c:4299 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica dada invlida\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 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 "impossvel bloquear chaveiro secreto: %s\n" @@ -2617,42 +2617,42 @@ msgstr "chave %08lX: certificado de revoga msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chave %08lX: assinatura no exportvel (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 usurio 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 revogao 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 no 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" diff --git a/po/ro.po b/po/ro.po index a308ea6b9..a73b18eb1 100644 --- a/po/ro.po +++ b/po/ro.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc1\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Romanian \n" @@ -42,9 +42,9 @@ msgstr "nu pot 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 "Selecia 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 "neforat()" -#: g10/card-util.c:439 +#: g10/card-util.c:444 msgid "forced" msgstr "forat()" -#: 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: Spaiile 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 "Preferine 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 preferine.\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 preferine.\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 spaiu): " -#: g10/card-util.c:844 +#: g10/card-util.c:849 msgid "Error: invalid response.\n" msgstr "Eroare: rspuns 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 "operaia 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 obinerea informaiei 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 schimbai 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 rugm selectai 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 "Selecie invalid.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 msgid "Please select where to store the key:\n" msgstr "V rugm selectai 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 protecie a cheii necunoscut\n" -#: g10/card-util.c:1241 +#: g10/card-util.c:1246 msgid "secret parts of key are not available\n" msgstr "pri 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 "iei 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 "afieaz acest mesaj" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 msgid "list all available data" msgstr "afieaz toate datele disponibile" -#: g10/card-util.c:1325 +#: g10/card-util.c:1330 msgid "change card holder's name" msgstr "schimb numele purttorului 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 preferinele de limb" -#: g10/card-util.c:1330 +#: g10/card-util.c:1335 msgid "change card holder's sex" msgstr "schimb sexul purttorului 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 forare a semnturii" -#: 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 (ncercai \"ajutor\")\n" @@ -727,7 +727,7 @@ msgstr "Repeta msgid "PIN not correctly repeated; try again" msgstr "PIN-ul nu a fost repetat corect; mai ncercai 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 msgid "key \"%s\" not found: %s\n" msgstr "cheia \"%s\" nu a fost gsit: %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 msgid "show expiration dates during signature listings" msgstr "Nici o semntur corespunztoare 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 opiuni 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 fiier opiuni implicit `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "fiier opiuni `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "citesc opiuni 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 ncrcat 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 semntur 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: opiuni server de chei invalide\n" -#: g10/gpg.c:2595 +#: g10/gpg.c:2616 msgid "invalid keyserver options\n" msgstr "opiuni 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: opiuni import invalide\n" -#: g10/gpg.c:2605 +#: g10/gpg.c:2626 msgid "invalid import options\n" msgstr "opiuni import invalide\n" -#: g10/gpg.c:2612 +#: g10/gpg.c:2633 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opiuni export invalide\n" -#: g10/gpg.c:2615 +#: g10/gpg.c:2636 msgid "invalid export options\n" msgstr "opiuni export invalide\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2643 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opiuni enumerare invalide\n" -#: g10/gpg.c:2625 +#: g10/gpg.c:2646 msgid "invalid list options\n" msgstr "opiuni 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 semntur 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 semntur 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 semntur 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: opiuni verificare invalide\n" -#: g10/gpg.c:2665 +#: g10/gpg.c:2686 msgid "invalid verify options\n" msgstr "opiuni 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-execuie 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: opiuni 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 fiier core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTISMENT: %s nlocuiete %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 "" "putei crea doar semnturi detaate sau n clar ct vreme suntei 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 putei semna i cifra n acelai timp ct vreme suntei 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 folosii fiiere (i nu un pipe) cnd lucrai 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 dect 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 dect 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 "preferine implicite invalide\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "preferine cifrare personale invalide\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "preferine rezumat personale invalide\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "preferine 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 putei folosi algoritmul de cifrare `%s' ct 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 putei folosi algorimul de rezumat `%s' ct 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 putei folosi algoritmul de compresie `%s' ct 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 euat s iniializez 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) furnizai fr a folosi cifrare cu cheie " "public\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [nume_fiier]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [nume_fiier]" -#: 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 euat: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [nume_fiier]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nume_fiier]" -#: g10/gpg.c:3386 +#: g10/gpg.c:3408 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nu putei 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 putei folosi --symmetric --encrypt ct vreme n modul %s\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [nume_fiier]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nume_fiier]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nume_fiier]" -#: g10/gpg.c:3437 +#: g10/gpg.c:3459 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nu putei 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 putei folosi --symmetric --sign --encrypt ct vreme n modul %s\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nume_fiier]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [nume_fiier]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [nume_fiier]" -#: 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 euat: %s\n" -#: g10/gpg.c:3642 +#: g10/gpg.c:3664 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepie server de chei euat: %s\n" -#: g10/gpg.c:3644 +#: g10/gpg.c:3666 #, c-format msgid "key export failed: %s\n" msgstr "export cheie euat: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "cutare server de chei euat: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizare server de chei euat: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminarea armurii a euat: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "punerea armurii a euat: %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_fiier]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Dai-i drumul i scriei 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 semnturi 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 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 msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "cheia %s: clas de semntur neateptat (0x%02X) - srit\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 adugat 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 adugat semntura 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 potrivete 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" diff --git a/po/ru.po b/po/ru.po index aeaddb56b..cba666e79 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 1.4.2\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Russian \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" diff --git a/po/sk.po b/po/sk.po index 3dfc6ef8b..8f168ee95 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Slovak \n" @@ -37,9 +37,9 @@ msgstr "nemo 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 kdovan - pravdepodobne bol " "pouit nesprvny 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 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 "nemono previes v dvkovom mde\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 vber? " -#: 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 "Dvod 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 zodpovedajci 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 predvoby" -#: g10/card-util.c:800 +#: g10/card-util.c:805 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "neplatn znak v reazci s predvobami\n" -#: g10/card-util.c:809 +#: g10/card-util.c:814 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "neplatn znak v reazci s predvobami\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 odtlaok\n" -#: g10/card-util.c:865 +#: g10/card-util.c:870 #, fuzzy msgid "CA fingerprint: " msgstr "vypsa fingerprint" -#: g10/card-util.c:888 +#: g10/card-util.c:893 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "chyba: neplatn odtlaok\n" -#: g10/card-util.c:936 +#: g10/card-util.c:941 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Vytvorenie ka sa nepodarilo: %s\n" -#: g10/card-util.c:937 +#: g10/card-util.c:942 #, fuzzy msgid "not an OpenPGP card" msgstr "nenjden iadne platn dta vo formte 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 zpise do sboru tajnch kov `%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 "Prosm, vyberte druh ka, 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 vyprala %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 vber.\n" -#: g10/card-util.c:1201 +#: g10/card-util.c:1206 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Prosm vberte dvod na revokciu:\n" -#: g10/card-util.c:1236 +#: g10/card-util.c:1241 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "neznmy 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 primrneho ka 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 "preskoen: tajn k je u v databze\n" -#: g10/card-util.c:1317 g10/keyedit.c:1349 +#: g10/card-util.c:1322 g10/keyedit.c:1349 msgid "quit this menu" msgstr "ukoni toto menu" -#: g10/card-util.c:1319 +#: g10/card-util.c:1324 #, fuzzy msgid "show admin commands" msgstr "konfliktn prkazy\n" -#: g10/card-util.c:1320 g10/keyedit.c:1352 +#: g10/card-util.c:1325 g10/keyedit.c:1352 msgid "show this help" msgstr "ukza tto pomoc" -#: g10/card-util.c:1322 +#: g10/card-util.c:1327 #, fuzzy msgid "list all available data" msgstr "K k dispozcii 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 -msgid "fetch the key specified in the card URL" -msgstr "" - -#: g10/card-util.c:1328 -#, fuzzy -msgid "change the login name" -msgstr "zmeni dobu platnosti" - -#: g10/card-util.c:1329 -#, fuzzy -msgid "change the language preferences" -msgstr "zmeni dveryhodnos vlastnka ka" - -#: g10/card-util.c:1330 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1331 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "vypsa fingerprint" - #: g10/card-util.c:1332 -msgid "toggle the signature force PIN flag" +msgid "fetch the key specified in the card URL" msgstr "" #: g10/card-util.c:1333 #, fuzzy +msgid "change the login name" +msgstr "zmeni dobu platnosti" + +#: g10/card-util.c:1334 +#, fuzzy +msgid "change the language preferences" +msgstr "zmeni dveryhodnos vlastnka ka" + +#: g10/card-util.c:1335 +msgid "change card holder's sex" +msgstr "" + +#: g10/card-util.c:1336 +#, fuzzy +msgid "change a CA fingerprint" +msgstr "vypsa fingerprint" + +#: g10/card-util.c:1337 +msgid "toggle the signature force PIN flag" +msgstr "" + +#: g10/card-util.c:1338 +#, fuzzy msgid "generate new keys" msgstr "vytvori nov pr kov" -#: 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 "Prkaz> " -#: g10/card-util.c:1493 +#: g10/card-util.c:1498 #, fuzzy msgid "Admin-only command\n" msgstr "konfliktn prkazy\n" -#: g10/card-util.c:1524 +#: g10/card-util.c:1529 #, fuzzy msgid "Admin commands are allowed\n" msgstr "konfliktn prkazy\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 prkaz (skste \"help\")\n" @@ -747,7 +747,7 @@ msgstr "Opakujte heslo: " msgid "PIN not correctly repeated; try again" msgstr "heslo nie je zopakovan sprvne; skste 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 msgid "key \"%s\" not found: %s\n" msgstr "k `%s' nebol njden: %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 msgid "show expiration dates during signature listings" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/gpg.c:1996 +#: g10/gpg.c:1801 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn sbor s monosami `%s ignorovan'\n" -#: g10/gpg.c:2038 +#: g10/gpg.c:2059 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn sbor s monosami `%s'\n" -#: g10/gpg.c:2042 +#: g10/gpg.c:2063 #, c-format msgid "option file `%s': %s\n" msgstr "sbor s monosami `%s': %s\n" -#: g10/gpg.c:2049 +#: g10/gpg.c:2070 #, c-format msgid "reading options from `%s'\n" msgstr "tam monosti 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 "POZNMKA: %s nie je pre normlne pouitie!\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, pretoe prstupov prva nie s nastaven " "bezpene\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 "nemono poui URI servera kov - chyba analzy 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 "nemono 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 me vytvori sbor core!\n" -#: g10/gpg.c:2926 +#: g10/gpg.c:2948 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVANIE: %s prepe %s\n" -#: g10/gpg.c:2935 +#: g10/gpg.c:2957 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie je dovolen pouva %s s %s!\n" -#: g10/gpg.c:2938 +#: g10/gpg.c:2960 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedva 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 mde --pgp2 mete vytvra len oddelen podpisy alebo podpisy itaten " "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 mde --pgp2 nemono sasne 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 mde --pgp2 muste poui sbor (nie rru).\n" -#: g10/gpg.c:2999 +#: g10/gpg.c:3021 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "ifrovanie sprv v mde --pgp2 vyaduje 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 "poloka completes-needed mus by via ako 0\n" -#: g10/gpg.c:3101 +#: g10/gpg.c:3123 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus by via 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 "poloka 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 certifikcie; 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 minimlna rove certifikcie; 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 "POZNMKA: jednoduch md S2K (0) je drazne nedoporuovan\n" -#: g10/gpg.c:3114 +#: g10/gpg.c:3136 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatn md S2K; mus by 0, 1 alebo 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3143 msgid "invalid default preferences\n" msgstr "neplatn defaultn predvoby\n" -#: g10/gpg.c:3130 +#: g10/gpg.c:3152 msgid "invalid personal cipher preferences\n" msgstr "neplatn uvatesk predvoby pre ifrovanie\n" -#: g10/gpg.c:3134 +#: g10/gpg.c:3156 msgid "invalid personal digest preferences\n" msgstr "neplatn uvatesk predvoby pre hashovanie\n" -#: g10/gpg.c:3138 +#: g10/gpg.c:3160 msgid "invalid personal compress preferences\n" msgstr "neplatn uvatesk predvoby pre kompresiu\n" -#: g10/gpg.c:3171 +#: g10/gpg.c:3193 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ete 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 "nemete poui ifrovac algoritmus \"%s\" v mde %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 "nemete poui hashovac algoritmus \"%s\" v mde %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 "nemete poui kompresn algoritmus \"%s\" v mde %s\n" -#: g10/gpg.c:3330 +#: g10/gpg.c:3352 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemem inicializova databzu dvery: %s\n" -#: g10/gpg.c:3341 +#: g10/gpg.c:3363 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVANIE: dan adrest (-r) bez pouitia ifrovania s verejnm kom\n" -#: g10/gpg.c:3352 +#: g10/gpg.c:3374 msgid "--store [filename]" msgstr "--store [meno sboru]" -#: g10/gpg.c:3359 +#: g10/gpg.c:3381 msgid "--symmetric [filename]" msgstr "--symmetric [meno sboru]" -#: g10/gpg.c:3361 +#: g10/gpg.c:3383 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "deifrovanie zlyhalo: %s\n" -#: g10/gpg.c:3371 +#: g10/gpg.c:3393 msgid "--encrypt [filename]" msgstr "--encrypt [meno sboru]" -#: g10/gpg.c:3384 +#: g10/gpg.c:3406 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: 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 "" "pouitie %s nie je v mde %s dovolen\n" "\n" -#: g10/gpg.c:3407 +#: g10/gpg.c:3429 msgid "--sign [filename]" msgstr "--sign [meno sboru]" -#: g10/gpg.c:3420 +#: g10/gpg.c:3442 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3435 +#: g10/gpg.c:3457 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: 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 "" "pouitie %s nie je v mde %s dovolen\n" "\n" -#: g10/gpg.c:3460 +#: g10/gpg.c:3482 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [meno sboru]" -#: g10/gpg.c:3469 +#: g10/gpg.c:3491 msgid "--clearsign [filename]" msgstr "--clearsign [meno sboru]" -#: g10/gpg.c:3494 +#: g10/gpg.c:3516 msgid "--decrypt [filename]" msgstr "--decrypt [meno sboru]" -#: g10/gpg.c:3502 +#: g10/gpg.c:3524 msgid "--sign-key user-id" msgstr "--sign-key id uvatea" -#: g10/gpg.c:3506 +#: g10/gpg.c:3528 msgid "--lsign-key user-id" msgstr "--lsign-key id uvatea" -#: g10/gpg.c:3527 +#: g10/gpg.c:3549 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uvatea [prkazy]" -#: g10/gpg.c:3598 +#: g10/gpg.c:3620 msgid "-k[v][v][v][c] [user-id] [keyring]" msgstr "-k[v][v][v][c] [id uvatea] [sbor s kmi (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 ka: %s\n" -#: g10/gpg.c:3655 +#: g10/gpg.c:3677 #, c-format msgid "keyserver search failed: %s\n" msgstr "nepodarilo sa njs server: %s\n" -#: g10/gpg.c:3665 +#: g10/gpg.c:3687 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aktualizcia servera zlyhala: %s\n" -#: g10/gpg.c:3716 +#: g10/gpg.c:3738 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovanie z ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3724 +#: g10/gpg.c:3746 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovanie do ASCII formtu 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 sboru]" -#: g10/gpg.c:3938 +#: g10/gpg.c:3960 msgid "Go ahead and type your message ...\n" msgstr "Zanite psa svoju sprvu ...\n" -#: g10/gpg.c:4242 +#: g10/gpg.c:4264 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pre certifikan 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 zpise sboru kov (keyring) `%s': %s\n" @@ -2540,7 +2540,7 @@ msgstr "k 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 sbor tajnch kov %s\n" @@ -2664,45 +2664,45 @@ msgstr "k msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "k %08lX: neoakvan podpisov trieda (0x%02X) - preskoen\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 identifiktor uvatea - zlen\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 me by revokovan: skam zska revokan 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 me by revokovan: revokan k %08lX nenjden.\n" -#: g10/import.c:1872 +#: g10/import.c:1889 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "k %08lX: pridan revokan certifikt \"%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 ka nm samm (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 neshlas s tajnm!\n" -#: g10/import.c:2303 +#: g10/import.c:2320 #, fuzzy msgid "NOTE: primary key is online and stored on card\n" msgstr "preskoen: tajn k je u v databze\n" -#: g10/import.c:2305 +#: g10/import.c:2322 #, fuzzy msgid "NOTE: secondary key is online and stored on card\n" msgstr "preskoen: tajn k je u v databze\n" diff --git a/po/sv.po b/po/sv.po index e5dfc12ac..04b6676a0 100644 --- a/po/sv.po +++ b/po/sv.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 2.0\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Swedish \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" diff --git a/po/tr.po b/po/tr.po index dc19c549f..8c6442e61 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.1\n" "Report-Msgid-Bugs-To: gnupg-i18n@gnupg.org\n" -"POT-Creation-Date: 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 \n" "Language-Team: Turkish \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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Chinese (simplified) " 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: gnupg-i18n@gnupg.org\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 \n" "Language-Team: Chinese (traditional) \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 .\n" -msgstr "請向 回報程式瑕疵, 向 回報翻譯瑕疵.\n" +msgstr "" +"請向 回報程式瑕疵, 向 回報翻譯瑕疵.\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) \"\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" -