From 1356693b0d645d777bb68bc3493be061e6e1c2ba Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Thu, 3 Dec 2009 19:13:19 +0000 Subject: Allow for numerical debug levels. --- NEWS | 3 + agent/ChangeLog | 5 + agent/gpg-agent.c | 34 ++++- doc/gpg-agent.texi | 34 +++-- doc/gpg.texi | 28 ++++ doc/gpgsm.texi | 18 ++- doc/scdaemon.texi | 20 ++- g10/ChangeLog | 5 + g10/gpg.c | 39 +++++- po/be.po | 382 ++++++++++++++++++++++++++--------------------------- po/ca.po | 382 ++++++++++++++++++++++++++--------------------------- po/cs.po | 382 ++++++++++++++++++++++++++--------------------------- po/da.po | 382 ++++++++++++++++++++++++++--------------------------- po/de.po | 382 ++++++++++++++++++++++++++--------------------------- po/el.po | 382 ++++++++++++++++++++++++++--------------------------- po/eo.po | 382 ++++++++++++++++++++++++++--------------------------- po/es.po | 382 ++++++++++++++++++++++++++--------------------------- po/et.po | 382 ++++++++++++++++++++++++++--------------------------- po/fi.po | 382 ++++++++++++++++++++++++++--------------------------- po/fr.po | 382 ++++++++++++++++++++++++++--------------------------- po/gl.po | 382 ++++++++++++++++++++++++++--------------------------- po/hu.po | 382 ++++++++++++++++++++++++++--------------------------- po/id.po | 382 ++++++++++++++++++++++++++--------------------------- po/it.po | 382 ++++++++++++++++++++++++++--------------------------- po/ja.po | 382 ++++++++++++++++++++++++++--------------------------- po/nb.po | 382 ++++++++++++++++++++++++++--------------------------- po/pl.po | 382 ++++++++++++++++++++++++++--------------------------- po/pt.po | 382 ++++++++++++++++++++++++++--------------------------- po/pt_BR.po | 382 ++++++++++++++++++++++++++--------------------------- po/ro.po | 382 ++++++++++++++++++++++++++--------------------------- po/ru.po | 382 ++++++++++++++++++++++++++--------------------------- po/sk.po | 382 ++++++++++++++++++++++++++--------------------------- po/sv.po | 382 ++++++++++++++++++++++++++--------------------------- po/tr.po | 382 ++++++++++++++++++++++++++--------------------------- po/zh_CN.po | 382 ++++++++++++++++++++++++++--------------------------- po/zh_TW.po | 382 ++++++++++++++++++++++++++--------------------------- scd/ChangeLog | 5 + scd/scdaemon.c | 35 ++++- sm/ChangeLog | 5 + sm/gpgsm.c | 36 ++++- 40 files changed, 5372 insertions(+), 5209 deletions(-) diff --git a/NEWS b/NEWS index 28d1196fb..9974c89dc 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,9 @@ Noteworthy changes in version 2.0.14 * The default for --inlucde-cert is now to include all certificates in the chain except for the root certificate. + * Numerical values may now be used as an alternative to the + debug-level keywords. + Noteworthy changes in version 2.0.13 (2009-09-04) ------------------------------------------------- diff --git a/agent/ChangeLog b/agent/ChangeLog index 81bef0214..ee3516043 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,8 @@ +2009-12-03 Werner Koch + + * gpg-agent.c (set_debug): Allow for numerical debug leveles. Print + active debug flags. + 2009-12-02 Werner Koch * trustlist.c (read_trustfiles): Store the pointer returned from diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index 2e8156721..b9afa02ba 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -360,19 +360,30 @@ my_strusage (int level) static void set_debug (void) { + int numok = (debug_level && digitp (debug_level)); + int numlvl = numok? atoi (debug_level) : 0; + if (!debug_level) ; - else if (!strcmp (debug_level, "none")) + else if (!strcmp (debug_level, "none") || (numok && numlvl < 1)) opt.debug = 0; - else if (!strcmp (debug_level, "basic")) + else if (!strcmp (debug_level, "basic") || (numok && numlvl <= 2)) opt.debug = DBG_ASSUAN_VALUE; - else if (!strcmp (debug_level, "advanced")) + else if (!strcmp (debug_level, "advanced") || (numok && numlvl <= 5)) opt.debug = DBG_ASSUAN_VALUE|DBG_COMMAND_VALUE; - else if (!strcmp (debug_level, "expert")) + else if (!strcmp (debug_level, "expert") || (numok && numlvl <= 8)) opt.debug = (DBG_ASSUAN_VALUE|DBG_COMMAND_VALUE |DBG_CACHE_VALUE); - else if (!strcmp (debug_level, "guru")) - opt.debug = ~0; + else if (!strcmp (debug_level, "guru") || numok) + { + opt.debug = ~0; + /* Unless the "guru" string has been used we don't want to allow + hashing debugging. The rationale is that people tend to + select the highest debug value and would then clutter their + disk with debug files which may reveal confidential data. */ + if (numok) + opt.debug &= ~(DBG_HASHING_VALUE); + } else { log_error (_("invalid debug-level `%s' given\n"), debug_level); @@ -390,6 +401,17 @@ set_debug (void) if (opt.debug & DBG_CRYPTO_VALUE ) gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1); gcry_control (GCRYCTL_SET_VERBOSITY, (int)opt.verbose); + + if (opt.debug) + log_info ("enabled debug flags:%s%s%s%s%s%s%s%s\n", + (opt.debug & DBG_COMMAND_VALUE)? " command":"", + (opt.debug & DBG_MPI_VALUE )? " mpi":"", + (opt.debug & DBG_CRYPTO_VALUE )? " crypto":"", + (opt.debug & DBG_MEMORY_VALUE )? " memory":"", + (opt.debug & DBG_CACHE_VALUE )? " cache":"", + (opt.debug & DBG_MEMSTAT_VALUE)? " memstat":"", + (opt.debug & DBG_HASHING_VALUE)? " hashing":"", + (opt.debug & DBG_ASSUAN_VALUE )? " assuan":""); } diff --git a/doc/gpg-agent.texi b/doc/gpg-agent.texi index 74a30591f..344f41250 100644 --- a/doc/gpg-agent.texi +++ b/doc/gpg-agent.texi @@ -213,20 +213,26 @@ forth to @var{epoch} which is the number of seconds elapsed since the year @item --debug-level @var{level} @opindex debug-level Select the debug level for investigating problems. @var{level} may be -one of: - - @table @code - @item none - no debugging at all. - @item basic - some basic debug messages - @item advanced - more verbose debug messages - @item expert - even more detailed messages - @item guru - all of the debug messages you can get - @end table +a numeric value or a keyword: + +@table @code +@item none +No debugging at all. A value of less than 1 may be used instead of +the keyword. +@item basic +Some basic debug messages. A value between 1 and 2 may be used +instead of the keyword. +@item advanced +More verbose debug messages. A value between 3 and 5 may be used +instead of the keyword. +@item expert +Even more detailed messages. A value between 6 and 8 may be used +instead of the keyword. +@item guru +All of the debug messages you can get. A value greater than 8 may be +used instead of the keyword. The creation of hash tracing files is +only enabled if the keyword is used. +@end table How these messages are mapped to the actual debugging flags is not specified and may change with newer releases of this program. They are diff --git a/doc/gpg.texi b/doc/gpg.texi index 5ba1753c8..d053ed677 100644 --- a/doc/gpg.texi +++ b/doc/gpg.texi @@ -2134,6 +2134,34 @@ therefore enables a fast listing of the encryption keys. @opindex interactive Prompt before overwriting any files. +@item --debug-level @var{level} +@opindex debug-level +Select the debug level for investigating problems. @var{level} may be +a numeric value or by a keyword: + +@table @code +@item none +No debugging at all. A value of less than 1 may be used instead of +the keyword. +@item basic +Some basic debug messages. A value between 1 and 2 may be used +instead of the keyword. +@item advanced +More verbose debug messages. A value between 3 and 5 may be used +instead of the keyword. +@item expert +Even more detailed messages. A value between 6 and 8 may be used +instead of the keyword. +@item guru +All of the debug messages you can get. A value greater than 8 may be +used instead of the keyword. The creation of hash tracing files is +only enabled if the keyword is used. +@end table + +How these messages are mapped to the actual debugging flags is not +specified and may change with newer releases of this program. They are +however carefully selected to best aid in debugging. + @item --debug @var{flags} @opindex debug Set debugging flags. All flags are or-ed and @var{flags} may diff --git a/doc/gpgsm.texi b/doc/gpgsm.texi index 5835c7213..ffa325aa8 100644 --- a/doc/gpgsm.texi +++ b/doc/gpgsm.texi @@ -617,19 +617,25 @@ is given as fingerprint or keygrip. @item --debug-level @var{level} @opindex debug-level Select the debug level for investigating problems. @var{level} may be -one of: +a numeric value or by a keyword: @table @code @item none -no debugging at all. +No debugging at all. A value of less than 1 may be used instead of +the keyword. @item basic -some basic debug messages +Some basic debug messages. A value between 1 and 2 may be used +instead of the keyword. @item advanced -more verbose debug messages +More verbose debug messages. A value between 3 and 5 may be used +instead of the keyword. @item expert -even more detailed messages +Even more detailed messages. A value between 6 and 8 may be used +instead of the keyword. @item guru -all of the debug messages you can get +All of the debug messages you can get. A value greater than 8 may be +used instead of the keyword. The creation of hash tracing files is +only enabled if the keyword is used. @end table How these messages are mapped to the actual debugging flags is not diff --git a/doc/scdaemon.texi b/doc/scdaemon.texi index 86ce9c03b..3c8427997 100644 --- a/doc/scdaemon.texi +++ b/doc/scdaemon.texi @@ -123,20 +123,26 @@ verbose commands to @command{gpgsm}, such as @samp{-vv}. @item --debug-level @var{level} @opindex debug-level -Select the debug level for investigating problems. @var{level} may be -one of: +Select the debug level for investigating problems. @var{level} may be +a numeric value or a keyword: @table @code @item none -no debugging at all. +No debugging at all. A value of less than 1 may be used instead of +the keyword. @item basic -some basic debug messages +Some basic debug messages. A value between 1 and 2 may be used +instead of the keyword. @item advanced -more verbose debug messages +More verbose debug messages. A value between 3 and 5 may be used +instead of the keyword. @item expert -even more detailed messages +Even more detailed messages. A value between 6 and 8 may be used +instead of the keyword. @item guru -all of the debug messages you can get +All of the debug messages you can get. A value greater than 8 may be +used instead of the keyword. The creation of hash tracing files is +only enabled if the keyword is used. @end table How these messages are mapped to the actual debugging flags is not diff --git a/g10/ChangeLog b/g10/ChangeLog index adc7422f7..ed9482e3a 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2009-12-03 Werner Koch + + * gpg.c (set_debug): Allow for numerical debug levels. Print + active debug flags. + 2009-09-28 Werner Koch * trustdb.c (get_validity_info): Take care of a NULL PK. Fixes diff --git a/g10/gpg.c b/g10/gpg.c index 640490bda..9555be38c 100644 --- a/g10/gpg.c +++ b/g10/gpg.c @@ -972,19 +972,30 @@ set_opt_session_env (const char *name, const char *value) static void set_debug (const char *level) { + int numok = (level && digitp (level)); + int numlvl = numok? atoi (level) : 0; + if (!level) ; - else if (!strcmp (level, "none")) + else if (!strcmp (level, "none") || (numok && numlvl < 1)) opt.debug = 0; - else if (!strcmp (level, "basic")) + else if (!strcmp (level, "basic") || (numok && numlvl <= 2)) opt.debug = DBG_MEMSTAT_VALUE; - else if (!strcmp (level, "advanced")) + else if (!strcmp (level, "advanced") || (numok && numlvl <= 5)) opt.debug = DBG_MEMSTAT_VALUE|DBG_TRUST_VALUE|DBG_EXTPROG_VALUE; - else if (!strcmp (level, "expert")) + else if (!strcmp (level, "expert") || (numok && numlvl <= 8)) opt.debug = (DBG_MEMSTAT_VALUE|DBG_TRUST_VALUE|DBG_EXTPROG_VALUE |DBG_CACHE_VALUE|DBG_FILTER_VALUE|DBG_PACKET_VALUE); - else if (!strcmp (level, "guru")) - opt.debug = ~0; + else if (!strcmp (level, "guru") || numok) + { + opt.debug = ~0; + /* Unless the "guru" string has been used we don't want to allow + hashing debugging. The rationale is that people tend to + select the highest debug value and would then clutter their + disk with debug files which may reveal confidential data. */ + if (numok) + opt.debug &= ~(DBG_HASHING_VALUE); + } else { log_error (_("invalid debug-level `%s' given\n"), level); @@ -1002,6 +1013,22 @@ set_debug (const char *level) if (opt.debug & DBG_IOBUF_VALUE ) iobuf_debug_mode = 1; gcry_control (GCRYCTL_SET_VERBOSITY, (int)opt.verbose); + + if (opt.debug) + log_info ("enabled debug flags:%s%s%s%s%s%s%s%s%s%s%s%s%s\n", + (opt.debug & DBG_PACKET_VALUE )? " packet":"", + (opt.debug & DBG_MPI_VALUE )? " mpi":"", + (opt.debug & DBG_CIPHER_VALUE )? " cipher":"", + (opt.debug & DBG_FILTER_VALUE )? " filter":"", + (opt.debug & DBG_IOBUF_VALUE )? " iobuf":"", + (opt.debug & DBG_MEMORY_VALUE )? " memory":"", + (opt.debug & DBG_CACHE_VALUE )? " cache":"", + (opt.debug & DBG_MEMSTAT_VALUE)? " memstat":"", + (opt.debug & DBG_TRUST_VALUE )? " trust":"", + (opt.debug & DBG_HASHING_VALUE)? " hashing":"", + (opt.debug & DBG_EXTPROG_VALUE)? " extprog":"", + (opt.debug & DBG_CARD_IO_VALUE)? " cardio":"", + (opt.debug & DBG_ASSUAN_VALUE )? " assuan":""); } diff --git a/po/be.po b/po/be.po index 5b3a32f5f..fce76bd4c 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2003-10-30 16:35+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -91,7 +91,7 @@ msgstr "дрэнны пароль" msgid "ssh keys greater than %d bits are not supported\n" msgstr "" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -101,12 +101,12 @@ msgstr "" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "" @@ -417,7 +417,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -434,145 +434,145 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "запіс у stdout\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: тэчка створана\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -691,7 +691,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -703,19 +703,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "yes [так]" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -727,7 +727,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -737,11 +737,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1576,7 +1576,7 @@ msgstr "Нерэчаісны загад (паспрабуйце \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "немагчыма адкрыць \"%s\"\n" @@ -2082,7 +2082,7 @@ msgstr "" "sign, check, encrypt ці decrypt\n" "Дапомнае дзеяньне залежыць ад уваходных даньняў\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2110,527 +2110,527 @@ msgstr "" msgid "usage: gpg [options] " msgstr "Выкарыстаньне: gpg [выбары] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "несумяшчальныя загады\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "невядомая вэрсыя" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не дазваляецца разам з %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "запіс у stdout\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3180 +#: g10/gpg.c:3207 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3182 +#: g10/gpg.c:3209 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [назва_файла]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [назва_файла]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [назва_файла]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [назва_файла]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [назва_файла]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [назва_файла]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [назва_файла]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [загады]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[назва_файла]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "" @@ -3862,12 +3862,12 @@ msgid "" msgstr "" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "" @@ -3922,7 +3922,7 @@ msgstr "" msgid "Nothing deleted.\n" msgstr "" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "" @@ -6269,7 +6269,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "" @@ -6284,7 +6284,7 @@ msgstr "" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "грамадскі ключ ня знойдзены" @@ -6297,32 +6297,32 @@ msgstr "" msgid "checking the trustdb\n" msgstr "" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6824,16 +6824,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7539,12 +7539,12 @@ msgstr "|ІМЯ| зашыфраваць для вылучанай асобы" msgid "|NAME|use message digest algorithm NAME" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Выкарыстаньне: gpg [выбары] [файлы] (-h для даведкі)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7555,56 +7555,56 @@ msgstr "" "sign, check, encrypt ці decrypt\n" "Дапомнае дзеяньне залежыць ад уваходных даньняў\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "Выкарыстаньне: gpg [выбары] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "невядомая вэрсыя" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index a9ef0c470..a40b01870 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2005-02-04 02:04+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -113,7 +113,7 @@ msgstr "la contrasenya és errònia" msgid "ssh keys greater than %d bits are not supported\n" msgstr "l'algoritme de protecció %d%s no està suportat\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -123,12 +123,12 @@ msgstr "no s'ha pogut crear «%s»: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "no s'ha pogut obrir «%s»: %s\n" @@ -449,7 +449,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -466,147 +466,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existeix el fitxer d'opcions predeterminades «%s»\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "fitxer d'opcions «%s»: %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "s'estan llegint opcions de «%s»\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "error en crear «%s»: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no es pot crear el directori «%s»: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Certificat de revocació vàlid" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent no està disponible en aquesta sessió\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "error en crear «%s»: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error mentre s'enviava a «%s»: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "ha fallat l'actualització: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: s'ha creat el directori\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de dades de confiança: ha fallat la lectura (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: no s'ha pogut crear el directori: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "ha fallat l'actualització de la clau secreta: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claus es descarta\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent no està disponible en aquesta sessió\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "la variable d'entorn GPG_AGENT_INFO és malformada\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -729,7 +729,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -741,19 +741,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "sí|si" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -765,7 +765,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -775,11 +775,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1660,7 +1660,7 @@ msgstr "L'ordre no és vàlida (proveu «help»)\n" msgid "--output doesn't work for this command\n" msgstr "--output no funciona per a aquesta ordre\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "no s'ha pogut obrir «%s»\n" @@ -2210,7 +2210,7 @@ msgstr "" # Precissament acabem de parlar d'«implementat a la llista del GNOME # i s'ha dit que és erroni, igual que «suportat» :) Les alternatives # encara no m'agraden massa... jm -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2238,546 +2238,546 @@ msgstr "Compressió: " msgid "usage: gpg [options] " msgstr "forma d'ús: gpg [opcions] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "les ordres entren en conflicte\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no s'ha trobat cap signe = a la definició de grup «%s»\n" # Indi. ivb -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" # Indi. ivb -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" # Indi. ivb -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "s'ha creat el nou fitxer d'opcions «%s»\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostra en quin anell de claus està una clau llistada" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no és per a ús normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, 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:2602 +#: g10/gpg.c:2629 #, 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:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, 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:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, 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:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, 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:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, 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:2903 +#: g10/gpg.c:2930 #, 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:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 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:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVÍS: %s té preferència sobre %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no és permés amb %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no té sentit amb %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "l'algorisme de resum seleccionat no és vàlid\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algorisme de resum de certificació seleccionat no és vàlid\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ha de ser major que 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ha de ser major que 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 #, 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:3182 +#: g10/gpg.c:3209 #, 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:3185 +#: g10/gpg.c:3212 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:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "les preferències per defecte són invàlides\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "les preferències personals de xifrat són invàlides\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "les preferències personals de digest són invàlides\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "les preferències personals de compressió són invàlides\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s encara no funciona amb %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, 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:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nom_del_fitxer]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nom_del_fitxer]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "ha fallat el desxifratge: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nom_del_fitxer]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nom_del_fitxer]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom_del_fitxer]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nom_del_fitxer]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nom_del_fitxer]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [ordres]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'enviament al servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la recepció des del servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "l'exportació de la clau ha fallat: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "ha fallat la cerca al servidor de claus: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "ha fallat el refresc des del servidor de claus: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "no s'ha pogut llevar l'armadura: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "no s'ha pogut crear l'armadura: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "l'algoritme de dispersió és invàlid «%s»\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nom_del_fitxer]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Endavant, escriviu el missatge...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 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:4292 +#: g10/gpg.c:4319 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:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" @@ -4124,13 +4124,13 @@ msgstr "" "correcta a no ser que torneu a executar el programa.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[revocada]" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4196,7 +4196,7 @@ msgstr "S'han esborrat %d signatures.\n" msgid "Nothing deleted.\n" msgstr "No s'hi ha eliminat res.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "invàlida" @@ -6740,7 +6740,7 @@ msgstr "" "no és necessària una comprovació de la base de dades de confiança\n" "\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "la pròxima comprovació de la base de dades de confiança serà el %s\n" @@ -6759,7 +6759,7 @@ msgstr "" "no és necessària una comprovació de la base de dades de confiança\n" "\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "no s'ha trobat la clau pública %08lX: %s\n" @@ -6772,33 +6772,33 @@ msgstr "si us plau, feu un --check-trustdb\n" msgid "checking the trustdb\n" msgstr "s'està comprovant la base de dades de confiança\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "s'han processat %d claus (s'han netejat %d comptes de validesa)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "no s'han trobat claus amb confiança absoluta\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" "no s'ha trobat la clau pública de la clau amb confiança absoluta %08lX\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "registre de confiança %lu, tipus %d: no s'ha pogut escriure: %s\n" @@ -7316,16 +7316,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -8068,12 +8068,12 @@ msgstr "|NOM|usa l'algoritme de xifratge NOM" msgid "|NAME|use message digest algorithm NAME" msgstr "|NOM|usa l'algoritme de resum de missatges NOM" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Forma d'ús: gpg [opcions] [fitxers] (-h per a veure l'ajuda)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -8084,57 +8084,57 @@ msgstr "" "signa, comprova, xifra o desxifra\n" "l'operació predeterminada depén de les dades introduïdes\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "forma d'ús: gpg [opcions] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "no s'ha pogut connectar amb «%s»: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "el destinatari predeterminat és desconegut «%s»\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(No es va donar una descripció)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " o = omet aquesta clau\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "no s'ha pogut analitzar sintàcticament la URI del servidor de claus\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" # No em passe! ;) ivb -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "no s'ha pogut tancar «%s»: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/cs.po b/po/cs.po index a9feb1229..b192e0eac 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-11-26 09:12+0200\n" "Last-Translator: Roman Pavlik \n" "Language-Team: Czech \n" @@ -94,7 +94,7 @@ msgstr " msgid "ssh keys greater than %d bits are not supported\n" msgstr "ochrann algoritmus %d nen podporovn\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -104,12 +104,12 @@ msgstr "nemohu vytvo #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nemohu otevt `%s': %s\n" @@ -431,7 +431,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -450,147 +450,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn soubor s monostmi `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "soubor s monostmi `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "tu monosti z `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "chyba pi vytven `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemohu vytvoit adres `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nemohu vytvoit `%s': %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent nen v tomto sezen dostupn\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "chyba pi zskn novho PINu: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba pi hledn zznamu dvryhodnosti v `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizace selhala: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisuji tajn kl do `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "adres `%s' vytvoen\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) selhal v %s: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "nemohu vytvoit adres `%s': %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "chyba pi ten `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizace tajnho kle selhala: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: peskoeno: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nen v tomto sezen dostupn\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "patn formt promnn prosted GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -712,7 +712,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "chyba pi ten `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -724,19 +724,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "ano" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -748,7 +748,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -758,11 +758,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1592,7 +1592,7 @@ msgstr "Neplatn msgid "--output doesn't work for this command\n" msgstr "--output pro tento pkaz nen platn\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "nelze otevt `%s'\n" @@ -2112,7 +2112,7 @@ msgstr "" "podepsat, ovit, ifrovat nebo deifrovat\n" "implicitn operace zvis na vstupnch datech\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2140,59 +2140,59 @@ msgstr "Komprese: " msgid "usage: gpg [options] " msgstr "uit: gpg [monosti]" -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "konfliktn pkazy\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no = podpis nalezen v definici skupiny `%s'\n" # g10/g10.c:1179#, c-format -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "VAROVN: vlastnictv domovskho adrese nen nastaveno bezpen `%s'\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "VAROVN: vlastnictv konfiguranho souboru nen nastaveno bezpen `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" "VAROVN: vlastnictv roziujcho modulu nen nastaveno bezpen `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" "VAROVN: pstupov prva pro domovsk adrese nejsou bezpen `%s'\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "VAROVN: pstupov prva pro konfiguran soubor nejsou bezpen `%s'\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VAROVN: pstupov prva roziujcmu modulu nejsou bezpen `%s'\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "VAROVN: vlastnictv adrese s domovkm adresem nen nastaveno " "nebezpen `%s'\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2200,21 +2200,21 @@ msgstr "" "VAROVN: vlastnictv adrese s konfiguranm souborem nen nastaveno " "nebezpen `%s'\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "VAROVN: vlastnictv adrese s roziujcm modulem nen nastaveno " "nebezpen `%s'\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "VAROVN: pstupov prva k adresi s domovskm adresem nejsou nastavena " "bezpen `%s'\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2222,7 +2222,7 @@ msgstr "" "VAROVN: pstupov prva k adersi s konfiguranm souborem nejsou " "nastavena bezpen `%s'\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" @@ -2230,463 +2230,463 @@ msgstr "" "nastavena bezpen `%s'\n" # c-format -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "neznm konfiguran poloka \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "zadan URL preferovanho serveru kl je neplat\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "pepnout mezi vypisem seznamu tajnch a veejnch kl" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn soubor s monostmi `%s ignorovn'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZNMKA: %s nen pro normln pouit!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nen platn znakov sada\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "nelze zpracovat URL serveru kl\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn parametr pro server kl\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "neplatn parametr pro server kl\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn parametr pro import\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "neplatn parametr pro import\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn parametr pro export\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "neplatn parametr pro export\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn parametr pro vpis\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "neplatn parametr pro vpis\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan URL preferovanho serveru kl je neplat\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn parametr pro oven\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "neplatn parametr pro oven\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nelze nastavit exec-path na %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn parametr pro oven\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "VAROVN: program me vytvoit soubor core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVN: %s pepe %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nen dovoleno pouvat %s s %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedv s %s smysl!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "vybran komprimovac algoritmus je neplatn\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "poloka completes-needed mus bt vt ne 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus bt vt ne 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNMKA: jednoduch md S2K (0) je drazn nedoporuovn\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "neplatn defaultn pedvolby\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "neplatn uivatelsk pedvolby pro ifrovn\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "neplatn uivatelsk pedvolby pro hashovn\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "neplatn uivatelsk pedvolby pro komprimaci\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s dosud nen funkn s %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemohu inicializovat databzi dvry: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [jmno souboru]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [jmno souboru]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symetrick ifrovn `%s' se nepovedlo: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [jmno souboru]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [jmno souboru]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [jmno souboru]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [jmno souboru]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [jmno souboru]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [jmno souboru]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [jmno souboru]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [jmno souboru]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id uivatele" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id uivatele" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uivatele [pkazy]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "odesln na keyserver se nezdailo: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "zskn dat z keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "export kle se nepodail: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "hledn na keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh dat na keyserveru se nezdail: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovn z ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovn do ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn hashovac algoritmus `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[jmno souboru]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Zante pst svou zprvu ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pro certifikan politiku je neplatn\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "zadan URL pro podepisovac politiku je neplatn\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan URL preferovanho serveru kl je neplat\n" @@ -3949,12 +3949,12 @@ msgstr "" "bt nutn sprvn, dokud znova nespustte program.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "revokovn" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "platnost skonila" @@ -4013,7 +4013,7 @@ msgstr "Smaz msgid "Nothing deleted.\n" msgstr "Nic nebylo smazno.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "neplatn" @@ -6445,7 +6445,7 @@ msgstr "absolutn msgid "no need for a trustdb check\n" msgstr "nen nutn kontrolovat databzi dvry\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "dal kontrola databze dvry v %s\n" @@ -6460,7 +6460,7 @@ msgstr "nen msgid "no need for a trustdb update with `%s' trust model\n" msgstr "nen nutn aktualizovat databzi dvry s modelem `%s'\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "veejn kl %s nebyl nalezen: %s\n" @@ -6473,26 +6473,26 @@ msgstr "pros msgid "checking the trustdb\n" msgstr "kontroluji databzi dvry\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "zpracovno %d kl (%d validit vymazno)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "dn absolutn dvryhodn kl nebyl nalezen\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "veejn kl k absolutn dvryhodnmu kli %s nebyl nalezen\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "poadovno %d sten dvry a %d pln dvry, model %s\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6500,7 +6500,7 @@ msgstr "" "hloubka: %d platnch: %3d podepsanch: %3d dvra: %d-, %dq, %dn, %dm, %" "df, %du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "nelze aktualizovat zznam v databzi dvry: chyba pi zpisu: %s\n" @@ -7005,16 +7005,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7733,12 +7733,12 @@ msgstr "nezn msgid "|NAME|use message digest algorithm NAME" msgstr "podpis %s, hashovac algoritmus %s\n" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Pouit: gpg [monosti] [soubory] (-h pro pomoc)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7749,56 +7749,56 @@ msgstr "" "podepsat, ovit, ifrovat nebo deifrovat\n" "implicitn operace zvis na vstupnch datech\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "uit: gpg [monosti]" -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "nemohu se pipojit k `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "neznm volba `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Nebyl zadn dn popis)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = peskoit tento kl\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "nelze zpracovat URL serveru kl\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "nemohu otevt `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/da.po b/po/da.po index 106dbaef6..abb264818 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2003-12-03 16:11+0100\n" "Last-Translator: Birger Langkjer \n" "Language-Team: Danish \n" @@ -92,7 +92,7 @@ msgstr "d msgid "ssh keys greater than %d bits are not supported\n" msgstr "valgte cifferalgoritme %d er ugyldig\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "kan ikke oprette %s: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" @@ -425,7 +425,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -442,145 +442,145 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "alternativfil`%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "lser indstillinger fra `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, fuzzy, c-format msgid "error creating `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke oprette %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "certifikatlseproblem: %s\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "fejl ved oprettelse af kodestning: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "signering fejlede: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: mappe oprettet\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "kan ikke bne %s: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: udelod: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, fuzzy, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -698,7 +698,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -710,19 +710,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "ja" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -734,7 +734,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -744,11 +744,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1599,7 +1599,7 @@ msgstr "" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke bne `%s'\n" @@ -2113,7 +2113,7 @@ msgstr "" "sign, check, encrypt eller decrypt\n" "standard operation afhnger af inddata\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2142,545 +2142,545 @@ msgstr "Kommentar: " msgid "usage: gpg [options] " msgstr "brug: gpg [flag] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "konfliktende kommandoer\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "ukendt standard modtager '%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "skift imellem hemmelig og offentlig ngle visning" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTITS: %s er ikke til normal brug!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "importr ngler fra en ngleserver: %s\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 #, fuzzy msgid "invalid import options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 #, fuzzy msgid "invalid export options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ikke tilladt med %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er meningsls sammen med %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "valgte resumalgoritme er ugyldig\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "valgte resumalgoritme er ugyldig\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3180 +#: g10/gpg.c:3207 #, 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:3182 +#: g10/gpg.c:3209 #, 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: simpel S2K modus (0) frardes p det skarpeste\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 #, fuzzy msgid "invalid default preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s er meningsls sammen med %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [filnavn (som gemmes)]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn (som krypteres)]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [filnavn (som signeres)]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn (som dekrypteres)]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key bruger-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key bruger-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key bruger-id [kommandoer]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "signering fejlede: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hash-algoritme `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "G til sagen og skriv meddelelsen ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" @@ -3947,13 +3947,13 @@ msgid "" msgstr "" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "tilfj ngle" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "udlb" @@ -4010,7 +4010,7 @@ msgstr "" msgid "Nothing deleted.\n" msgstr "" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "ugyldig rustning" @@ -6424,7 +6424,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "" @@ -6439,7 +6439,7 @@ msgstr "" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "offentlig ngle ikke fundet" @@ -6453,32 +6453,32 @@ msgstr "" msgid "checking the trustdb\n" msgstr "|[NAMES]|tjek tillidsdatabasen" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6986,16 +6986,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7708,13 +7708,13 @@ msgstr "|NAME|brug cifferalgoritme NAME" msgid "|NAME|use message digest algorithm NAME" msgstr "|NAME|brug meddelelsesresum algoritme NAME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Brug: gpg [flag] [filer] (-h for hjlp)" # Skal alt dette oversttes eller er det flagene? -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7725,56 +7725,56 @@ msgstr "" "sign, check, encrypt eller decrypt\n" "standard operation afhnger af inddata\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "brug: gpg [flag] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "ukendt standard modtager '%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr "%s: udelod: %s\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "importr ngler fra en ngleserver: %s\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "skriver til `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/de.po b/po/de.po index 35f597a14..fe7c996ce 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-2.0.13\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2009-09-03 21:35+0200\n" "Last-Translator: Werner Koch \n" "Language-Team: German \n" @@ -96,7 +96,7 @@ msgstr "Passphrase" msgid "ssh keys greater than %d bits are not supported\n" msgstr "SSH Schlüssel von mehr als %d Bits werden nicht unterstützt\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -106,12 +106,12 @@ msgstr "'%s' kann nicht erzeugt werden: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "'%s' kann nicht geöffnet werden: %s\n" @@ -429,7 +429,7 @@ msgstr "|DATEI|Schreibe die Umgebungsvariablen auf DATEI" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 msgid "Please report bugs to <@EMAIL@>.\n" msgstr "" @@ -448,144 +448,144 @@ msgstr "" "Syntax: gpg-agent [Optionen] [Befehl [Argumente]]\n" "Verwaltung von geheimen Schlüsseln für GnuPG\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "ungültige Debugebene `%s' angegeben\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "Die Bibliothek %s ist nicht aktuell (benötige %s, habe %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "Optionendatei '%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "Fehler beim Erstellen von `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Verzeichnis `%s' kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "Der Name des Sockets ist zu lang\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "Socket kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "Der Name des Sockets `%s' ist zu lang\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "Ein gpg-agent läuft bereits - ein weiterer wird nicht gestartet\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 msgid "error getting nonce for the socket\n" msgstr "Fehler beim Ermitteln der \"Nonce\" dieses Sockets\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "Der Socket kann nicht an `%s' gebunden werden: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "Der listen()-Aufruf ist fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "Es wird auf Socket `%s' gehört\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "Verzeichnis `%s' erzeugt\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat()-Aufruf für `%s' fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "Die Datei `%s' kann nicht als Home-Verzeichnis benutzt werden\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "Fehler beim Lesen der \"Nonce\" von FD %d: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "Handhabungsroutine 0x%lx für fd %d gestartet\n" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "Handhabungsroutine 0x%lx für den fd %d beendet\n" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "SSH-Handhabungsroutine 0x%lx für fd %d gestartet\n" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "SSH-Handhabungsroutine 0x%lx für fd %d beendet\n" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select()-Aufruf fehlgeschlagen: %s - warte 1s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s angehalten\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "Der gpg-agent läuft nicht für diese Session\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "fehlerhaft aufgebaute GPG_AGENT_INFO - Umgebungsvariable\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -712,7 +712,7 @@ msgstr "Ungültiges Schlüsselflag in `%s', Zeile %d\n" msgid "error reading `%s', line %d: %s\n" msgstr "Fehler beim Lesen von `%s', Zeile %d: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "Fehler beim Lesen der Liste vertrauenswürdiger root-Zertifikate\n" @@ -724,7 +724,7 @@ msgstr "Fehler beim Lesen der Liste vertrauenswürdiger root-Zertifikate\n" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " @@ -733,11 +733,11 @@ msgstr "" "Wenn Sie vollständiges Vertrauen haben, daß%%0A \"%s\"%%" "0ABenutzerzertifikate verläßlich zertifiziert, so antworten Sie mit \"Ja\"." -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "Ja" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "Nein" @@ -749,7 +749,7 @@ msgstr "Nein" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -761,11 +761,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "Korrekt" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "Falsch" @@ -1580,7 +1580,7 @@ msgstr "Ungültiger Befehl (versuchen Sie's mal mit \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output funktioniert nicht bei diesem Befehl\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "'%s' kann nicht geöffnet werden\n" @@ -2102,7 +2102,7 @@ msgstr "" "Signieren, prüfen, verschlüsseln, entschlüsseln.\n" "Die voreingestellte Operation ist abhängig von den Eingabedaten\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2130,53 +2130,53 @@ msgstr "Komprimierung: " msgid "usage: gpg [options] " msgstr "Aufruf: gpg [Optionen] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "Widersprüchliche Befehle\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "Kein '='-Zeichen in der Gruppendefinition gefunden `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis des Home-Verzeichnis `%s'\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis der Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis auf die Erweiterung `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte des Home-Verzeichnis `%s'\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte der Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte auf die Erweiterung `%s'\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses für Home-" "Verzeichnis `%s'\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2184,20 +2184,20 @@ msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses der " "Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses `%s'\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses des Home-" "Verzeichnisses `%s'\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2205,476 +2205,476 @@ msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses der " "Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses auf " "Erweiterung `%s'\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "Unbekanntes Konfigurationselement `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "Anzeigen der Foto-ID in den Schlüssellisten" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "Zeige Richtlinien-URL während der Unterschriftenlisten" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "Alle Notationen mit den Signaturen anlisten" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "Zeige IETF-Standard" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "Zeige anwenderseitige Notationen in den Unterschriftenlisten" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "Der bevorzugten Schlüsselserver mit den Signaturen anlisten" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "Zeige Gültigkeit der User-ID in den Schlüssellisten" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "Zeige widerrufene und verfallene User-ID in den Schlüssellisten" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "Zeige widerrufene und verfallene Unterschlüssel in den Schlüssellisten" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "Anzeigen des Schlüsselbundes, in dem ein Schlüssel drin ist" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "Das Ablaufdatum mit den Signaturen anlisten" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "Hinweis: Alte voreingestellte Optionendatei '%s' wurde ignoriert\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" "Die Bibliothek \"libgcrypt\" ist zu alt (benötigt wird %s, vorhanden ist %" "s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, 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:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' ist kein gültiges Unterschriftablaufdatum\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' ist kein gültiger Zeichensatz\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "Schlüsselserver-URL konnte nicht analysiert werden\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "Ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ungültige Import-Option\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "Ungültige Import-Option\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ungültige Export-Option.\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "Ungültige Export-Option\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ungültige Listen-Option.\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "Ungültige Listen-Option\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "Zeige die Foto-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "Zeige Richtlinien-URLs während der Unterschriftenprüfung" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "Alle Notationen während der Signaturprüfung anzeigen" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "Zeige IETF-Standard-Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "Zeige anwenderseitige Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 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:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "Die Gültigkeit der User-ID während der Unterschriftenprüfung anzeigen" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 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:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "Zeige nur die Hauptuser-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "Prüfe Unterschriftengültigkeit mittels PKA-Daten" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 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:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ungültige Überprüfungs-Option.\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "Ungültige Überprüfungs-Option\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, 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:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNUNG: %s ersetzt %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s kann nicht zusammen mit %s verwendet werden!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s zusammen mit %s ist nicht sinnvoll!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "Verschlüsseln einer Botschaft benötigt im --pgp2-Modus die IDEA-" "Verschlüsselung\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "Das ausgewählte Verschlüsselungsverfahren ist ungültig\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "Das ausgewählte Komprimierungsverfahren ist ungültig\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed müssen größer als 0 sein\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed müssen größer als 1 sein\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "ungültige Standard-Voreinstellungen\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "ungültige private Verschlüsselungsvoreinstellungen\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "ungültige private Hashvoreinstellungen\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "ungültige private Komprimierungsvoreinstellungen\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s arbeitet noch nicht mit %s zusammen\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [Dateiname]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [Dateiname]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Symmetrische Entschlüsselung von `%s' fehlgeschlagen: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [Dateiname]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [Dateiname]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [Dateiname]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [Dateiname]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [Dateiname]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [Dateiname]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [Dateiname]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [Dateiname]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key User-ID" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key User-ID" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key User-ID [Befehle]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "Senden an Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Empfangen vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "Schlüsselexport fehlgeschlagen: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "Suche auf dem Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "Entfernen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "Anbringen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "Ungültiges Hashverfahren '%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[Dateiname]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Auf geht's - Botschaft eintippen ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "Die angegebene Zertifikat-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "Die angegebene Unterschriften-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "Die angegebene URL des bevorzugten Schlüsselserver ist ungültig\n" @@ -3956,12 +3956,12 @@ msgstr "" "Schlüsselgültigkeit nicht notwendigerweise korrekt ist.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "widerrufen" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "verfallen" @@ -4022,7 +4022,7 @@ msgstr "%d Beglaubigungen entfernt.\n" msgid "Nothing deleted.\n" msgstr "Nichts entfernt.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "ungültig" @@ -6511,7 +6511,7 @@ msgstr "uneingeschränkt" msgid "no need for a trustdb check\n" msgstr "\"Trust-DB\"-Überprüfung nicht nötig\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "nächste \"Trust-DB\"-Pflichtüberprüfung am %s\n" @@ -6526,7 +6526,7 @@ msgstr "\"Trust-DB\"-Überprüfung ist beim `%s'-Vertrauensmodell nicht nötig\n msgid "no need for a trustdb update with `%s' trust model\n" msgstr "\"Trust-DB\"-Änderung ist beim `%s'-Vertrauensmodell nicht nötig\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "Öffentlicher Schlüssel %s nicht gefunden: %s\n" @@ -6540,27 +6540,27 @@ msgid "checking the trustdb\n" msgstr "\"Trust-DB\" wird überprüft\n" # translated by wk -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d Schlüssel verarbeitet (%d Validity Zähler gelöscht)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "keine uneingeschränkt vertrauenswürdigen Schlüssel gefunden\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" "öff. Schlüssel des uneingeschränkt vertrautem Schlüssel %s nicht gefunden\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "%d marginal-needed, %d complete-needed, %s Vertrauensmodell\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6568,7 +6568,7 @@ msgstr "" "Tiefe: %d gültig: %3d unterschrieben: %3d Vertrauen: %d-, %dq, %dn, %dm, %" "df, %du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7069,18 +7069,18 @@ msgstr "" "Syntax: scdaemon [Optionen] [Befehl [Argumente]]\n" "Smartcard Daemon für GnuPG\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" "Bitte die Option `--daemon' nutzen, um das Programm im Hintergund " "auszuführen\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "Handhabungsroutine für fd %d gestartet\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "Handhabungsroutine für den fd %d beendet\n" @@ -7779,11 +7779,11 @@ msgstr "|NAME|Verschlüsselungsverfahren NAME benutzen" msgid "|NAME|use message digest algorithm NAME" msgstr "|NAME|Hashverfahren NAME benutzen" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Aufruf: gpgsm [Optionen] [Dateien] (-h für Hilfe)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7792,54 +7792,54 @@ msgstr "" "Syntax: gpgsm [Optionen] [Dateien]\n" "Signieren, prüfen, ver- und entschlüsseln mittels S/MIME Protokoll\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "Aufruf: gpgsm [Optionen] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "Hinweis: Verschlüsselung für `%s' wird nicht möglich sein: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "Unbekanntes Gültigkeitsmodell '%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "%s:%u: Kein Server-Name angegeben\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "%s:%u: Passwort ohne Benutzer\n" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "%s:%u: Zeile wird übersprungen\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 msgid "could not parse keyserver\n" msgstr "Schlüsselserver-URL konnte nicht analysiert werden\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "WARNUNG: Ausführung mit gefälschter Systemzeit: " -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "Importiere allgemeine Zertifikate: %s\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "Signieren mit `%s' nicht möglich: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "Ungültiger Befehl (Es gibt keinen implizierten Befehl)\n" diff --git a/po/el.po b/po/el.po index 89b6dbc22..090468dc7 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2003-06-27 12:00+0200\n" "Last-Translator: Dokianakis Theofanis \n" "Language-Team: Greek \n" @@ -92,7 +92,7 @@ msgstr " msgid "ssh keys greater than %d bits are not supported\n" msgstr " %d%s\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr " #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr " `%s': %s\n" @@ -424,7 +424,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -441,147 +441,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr ": `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr " `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr " %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr " gpg-agent \n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr " `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: \n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: : %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr " : %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: : %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr " gpg-agent \n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr " GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -703,7 +703,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr " `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -715,19 +715,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "|" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -739,7 +739,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -749,11 +749,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1612,7 +1612,7 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "--output \n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr " `%s'\n" @@ -2148,7 +2148,7 @@ msgstr "" ", , \n" " \n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2176,548 +2176,548 @@ msgstr " msgid "usage: gpg [options] " msgstr ": gpg [] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr " \n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr " = \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" ": %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" ": %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" ": %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr " \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr " \n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr " URL \n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr " " -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr " \n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr ": `%s'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr ": %s !\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr " %s \n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr " %s \n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr " URI \n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr " \n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr " \n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr " \n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr " \n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr " %s \n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr " URL \n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr " %s \n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr " %s \n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr " \n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr " exec-path %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr ": core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr ": %s %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr " %s %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr " %s %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr " `%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" " --pgp2 \n" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" " --pgp2 " "\n" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr " ( pipes) --pgp2.\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" " --pgp2 . IDEA\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "" " \n" " \n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr " min-cert-level 0, 1, 2, 3\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr ": S2K (0) \n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr " S2K; 0, 1 3\n" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr " \n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr " \n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr " \n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr " \n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr " %s %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr " \"%s\" %s\n" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" " \"%s\" %s\n" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" " \"%s\" %s\n" -#: g10/gpg.c:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr " TrustDB: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" ": (-r) \n" " \n" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [ ]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [ ]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [ ]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr " %s %s.\n" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [ ]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr " %s %s.\n" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ ]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [ ]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [ ]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id []" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr " hash `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[ ]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr " ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr " URL \n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr " URL \n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr " URL \n" @@ -4042,13 +4042,13 @@ msgstr "" " .\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[]" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4108,7 +4108,7 @@ msgstr " msgid "Nothing deleted.\n" msgstr " .\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr " " @@ -6618,7 +6618,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr " trustdb\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr " trustdb %s\n" @@ -6633,7 +6633,7 @@ msgstr " msgid "no need for a trustdb update with `%s' trust model\n" msgstr " trustdb\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr " %08lX : %s\n" @@ -6646,33 +6646,33 @@ msgstr " msgid "checking the trustdb\n" msgstr " trustdb\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d (%d )\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr " \n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" " %08lX\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr " trust %lu, %d: write : %s\n" @@ -7181,16 +7181,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7908,12 +7908,12 @@ msgstr "| msgid "|NAME|use message digest algorithm NAME" msgstr "|| " -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr ": gpg [] [] (-h )" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7924,56 +7924,56 @@ msgstr "" ", , \n" " \n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr ": gpg [] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr " `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr " `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "( )\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = \n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr " URI \n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr " `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr " `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/eo.po b/po/eo.po index f6d0370b2..f7fa0033e 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" @@ -92,7 +92,7 @@ msgstr "malbona pasfrazo" msgid "ssh keys greater than %d bits are not supported\n" msgstr "protekto-metodo %d%s ne estas realigita\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "ne povas krei '%s': %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "ne povas malfermi '%s': %s\n" @@ -424,7 +424,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -441,147 +441,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "opcio-dosiero '%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "legas opciojn el '%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "eraro dum kreado de '%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ne povas krei %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Valida atestilrevoko" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ne estas disponata en i tiu sesio\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eraro dum sendo al '%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skribas sekretan losilon al '%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: dosierujo kreita\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fido-datenaro: lego malsukcesis (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualigo de sekreto malsukcesis: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu losiloj ignoritaj\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ne estas disponata en i tiu sesio\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "malbona valoro de la media variablo GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -703,7 +703,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -715,19 +715,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "jes" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -739,7 +739,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -749,11 +749,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1619,7 +1619,7 @@ msgstr "Nevalida komando (provu per \"helpo\")\n" msgid "--output doesn't work for this command\n" msgstr "--output ne funkcias por i tiu komando\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "ne povas malfermi '%s'\n" @@ -2136,7 +2136,7 @@ msgstr "" "subskribi, kontroli, ifri a malifri\n" "implicita operacio dependas de la enigataj datenoj\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2165,544 +2165,544 @@ msgstr "Komento: " msgid "usage: gpg [options] " msgstr "uzado: gpg [opcioj] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "malkongruaj komandoj\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "%s: nova opcio-dosiero kreita\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Mankas responda subskribo en sekreta losilaro\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "montri, en kiu losilaro estas listigita losilo" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Mankas responda subskribo en sekreta losilaro\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTO: %s ne estas por normala uzado!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ne povis analizi URI de losilservilo\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 #, fuzzy msgid "invalid import options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 #, fuzzy msgid "invalid export options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "AVERTO: programo povas krei core-dosieron!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTO: %s nuligas %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ne eblas kun %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skribas sekretan losilon al '%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "elektita ifrad-metodo ne validas\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "elektita ifrad-metodo ne validas\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed devas esti pli granda ol 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed devas esti pli granda ol 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 #, 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:3182 +#: g10/gpg.c:3209 #, 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTO: simpla S2K-reimo (0) estas forte malrekomendata\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 #, fuzzy msgid "invalid default preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [dosiero]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [dosiero]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "malifrado malsukcesis: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [dosiero]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [dosiero]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [dosiero]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [dosiero]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [dosiero]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key uzantidentigilo" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key uzantidentigilo" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key uzantidentigilo [komandoj]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "listigo de sekretaj losiloj malsukcesis: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record malsukcesis: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "listigo de sekretaj losiloj malsukcesis: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "elkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[dosiero]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Ektajpu vian mesaon ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "la donita gvidlinia URL por atestado ne validas\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" @@ -4026,13 +4026,13 @@ msgid "" msgstr "" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "rev" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "eksval" @@ -4091,7 +4091,7 @@ msgstr "Forvi msgid "Nothing deleted.\n" msgstr "Nenio estis forviita.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "nevalida" @@ -6570,7 +6570,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "kontrolo de fido-datenaro ne estas bezonata\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "sekva kontrolo de fido-datenaro je %s\n" @@ -6585,7 +6585,7 @@ msgstr "kontrolo de fido-datenaro ne estas bezonata\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "kontrolo de fido-datenaro ne estas bezonata\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "publika losilo %08lX ne trovita: %s\n" @@ -6598,33 +6598,33 @@ msgstr "" msgid "checking the trustdb\n" msgstr "kontrolas la fido-datenaron\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 #, fuzzy msgid "no ultimately trusted keys found\n" msgstr "publika losilo de absolute fidata losilo %08lX ne trovita\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "publika losilo de absolute fidata losilo %08lX ne trovita\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "fido-datenaro %lu, speco %d: skribo malsukcesis: %s\n" @@ -7134,16 +7134,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7874,12 +7874,12 @@ msgstr "|NOMO|uzi msgid "|NAME|use message digest algorithm NAME" msgstr "|NOMO|uzi kompendi-metodon NOMO" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7890,56 +7890,56 @@ msgstr "" "subskribi, kontroli, ifri a malifri\n" "implicita operacio dependas de la enigataj datenoj\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "uzado: gpg [opcioj] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "ne povas konektii al '%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "nekonata implicita ricevonto '%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = supersalti i tiun losilon\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "ne povis analizi URI de losilservilo\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "skribas al '%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "ne povas fermi '%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/es.po b/po/es.po index ccf0d771a..6c7dde1d9 100644 --- a/po/es.po +++ b/po/es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 2.0.9\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2008-12-14 19:34+0100\n" "Last-Translator: Jaime Surez \n" "Language-Team: Spanish \n" @@ -112,7 +112,7 @@ msgstr "Frase contrase msgid "ssh keys greater than %d bits are not supported\n" msgstr "no pueden usarse claves ssh de ms de %d bits\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -122,12 +122,12 @@ msgstr "no se puede crear %s: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "no se puede abrir `%s': %s\n" @@ -450,7 +450,7 @@ msgstr "|FICHERO|escribir variables de entorno tambi #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -468,145 +468,145 @@ msgstr "" "Sintaxis: gpg-agent [opciones] [orden [argumentos]]\n" "Manejo de claves privadas por GnuPG\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "el nivel de depuracin `%s` no es vlido\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "%s es demasiado antiguo (necesita %s, tiene %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "fichero de opciones `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "leyendo opciones desde `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "error creando `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no se puede crear el directorio `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "nombre de socket demasiado largo\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "no se puede crear el socket: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "el nombre de socket `%s' es demasiado largo\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "ya hay un agente gpg ejecutndose - no se inicia otro\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 msgid "error getting nonce for the socket\n" msgstr "error obteniendo valor nico para el socket\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "error enlazando el socket con `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "listen() fall: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "escuchando el socket `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "directorio `%s' creado\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat() fall para `%s': %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "no puede usar `%s' como directorio personal\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "error leyendo valor nico en el descriptor %d: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "manejador 0x%lx para descriptor %d iniciado\n" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "manejador 0x%lx pada descriptor %d finalizado\n" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "manejador ssh 0x%lx para el descriptor %d iniciado\n" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "manejador ssh 0x%lx para el descriptor %d finalizado\n" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select fall: %s - espero 1s\n" # msgstr "clave %08lX: %d nuevas subclaves\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s detenido\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "no hay un agente gpg ejecutndose en esta sesin\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variable de entorno GPG_AGENT_INFO malformada\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -741,7 +741,7 @@ msgstr "opci msgid "error reading `%s', line %d: %s\n" msgstr "error leyendo `%s', lnea %d: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "error leyendo la lista de certificados raz fiables\n" @@ -753,7 +753,7 @@ msgstr "error leyendo la lista de certificados ra #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " @@ -762,11 +762,11 @@ msgstr "" "Confa absolutamente en%%0A \"%s\"%%0A para certificar correctamentelos " "certificados de otros usuarios?" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "S" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "No" @@ -778,7 +778,7 @@ msgstr "No" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -790,11 +790,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "Correcto" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1601,7 +1601,7 @@ msgstr "Orden inv msgid "--output doesn't work for this command\n" msgstr "--output no funciona con esta orden\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "no se puede abrir `%s'\n" @@ -2113,7 +2113,7 @@ msgstr "" "firma, comprueba, cifra o descifra\n" "la operacin por defecto depende de los datos de entrada\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2141,51 +2141,51 @@ msgstr "Compresi msgid "usage: gpg [options] " msgstr "uso: gpg [opciones] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "rdenes incompatibles\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no se encontr el signo = en la definicin de grupo `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVISO: propiedad insegura del directorio personal `%s'\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVISO: propiedad insegura del fichero de configuracin `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVISO: propiedad insegura de la extensin `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVISO: permisos inseguros del directorio personal `%s'\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVISO: permisos inseguros del fichero de configuracin `%s'\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVISO: permisos inseguros de la extensin `%s'\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVISO: propiedad insegura del directorio contenedor de `%s'\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2193,18 +2193,18 @@ msgstr "" "AVISO: propiedad insegura del directorio contenedor del fichero de\n" "configuracin `%s'\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "AVISO: propiedad insegura del directorio contenedor de la extensin `%s'\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVISO: permisos inseguros del directorio contenedor de `%s'\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2212,438 +2212,438 @@ msgstr "" "AVISO: permisos inseguros del directorio contenedor del fichero de\n" "configuracin `%s'\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "AVISO: permisos inseguros del directorio contenedor de la extensin `%s'\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "artculo de configuracin desconocido `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "mostrar foto IDs al listar claves" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "mostrar URLS de poltica al listar firmas" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "mostrar todas las notaciones al listar firmas" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "mostrar notaciones estndar IETF al listar firmas" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "mostrar notaciones personalizadas al listar firmas" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "mostrar URL del servidor de claves preferido al listar firmas" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "mostrar validez de la ID de usuario al listar claves" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "mostar IDs de usuario revocados y caducados al listar firmas" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "mostrar subclaves revocadas y expiradas al listar claves" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "mostrar nombre de los anillos de claves al listar claves" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "mostrar fechas de caducidad al listar firmas" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt demasiado antigua (necesito %s, tengo %s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no es para uso normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' no es una fecha de caducidad vlida\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "no se puede interpretar la URL del servidor de claves\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opciones de importacin invlidas\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opciones de importacin invlidas\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opciones de exportacin invlidas\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opciones de exportacin invlidas\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: lista de opciones invlida\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "lista de opciones invlida\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "mostrar foto IDs al verificar firmas" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "mostrar URLs de poltica al verificar firmas" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "mostrar todas las notaciones al verificar firmas" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "mostrar notaciones estndar IETF al verificar firmas" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "mostrar notaciones personalizadas al verificar firmas" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "mostrar URLs del servidor de claves preferido al verificar firmas" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "mostrar validez del ID de usuario al verificar firmas" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "mostrar IDs de usuario revocados y caducados al verificar firmas" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "mostrar solo ID primario de usuario al verificar firmas" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "validar firmas con datos PKA" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "aumentar confianza en las firmas con datos vlidos PKA" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opciones de verificacin invlidas\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "opciones de verificacin invlidas\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "imposible establecer camino de ejecutables %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: lista de auto-localizacin de claves invlida\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "lista de auto-localizacin de claves invlida\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "ATENCIN: el programa podra volcar un fichero core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sustituye a %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido con %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no tiene sentido con %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "el algoritmo de cifrado seleccionado es invlido\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "el algoritmo de resumen seleccionado no invlido\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "el algoritmo de compresin seleccionado es invlido\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "el algoritmo de certificacin por resumen elegido es invlido\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser mayor que 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser mayor que 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 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:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "preferencias por defecto invlidas\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "preferencias personales de cifrado invlidas\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "preferencias personales de algoritmo de resumen invlidas\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "preferencias personales de compresin invlidas\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s an no funciona con %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, 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:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nombre_fichero]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nombre_fichero]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "el cifrado simtrico de `%s' fall: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nombre_fichero]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nombre_fichero]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nombre_fichero]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nombre_fichero]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nombre_fichero]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nombre_fichero]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id-usuario" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id-usuario" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usuario [rdenes]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "envo al servidor de claves fallido: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepcin del servidor de claves fallida: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "exportacin de clave fallida: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "bsqueda del servidor de claves fallida: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "renovacin al servidor de claves fallida: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminacin de armadura fallida: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "creacin de armadura fallida: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de distribucin invlido `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nombre_fichero]" @@ -2651,19 +2651,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:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Adelante, teclee su mensaje...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "URL de poltica de certificado invlida\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "URL de poltica invlida\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL del servidor de claves preferido no es vlida\n" @@ -3919,12 +3919,12 @@ msgstr "" "correcta a menos de que reinicie el programa.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "revocada" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "caducada" @@ -3983,7 +3983,7 @@ msgstr "%d firmas borradas\n" msgid "Nothing deleted.\n" msgstr "No se borr nada\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "invlida" @@ -6421,7 +6421,7 @@ msgstr "absoluta" msgid "no need for a trustdb check\n" msgstr "no es necesaria una comprobacin de la base de datos de confianza\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "siguiente comprobacin de base de datos de confianza el: %s\n" @@ -6440,7 +6440,7 @@ msgstr "" "no es necesario comprobar la base de datos de confianza\n" "con el modelo `%s'\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "clave pblica %s no encontrada: %s\n" @@ -6453,28 +6453,28 @@ msgstr "por favor haga un --check-trustdb\n" msgid "checking the trustdb\n" msgstr "comprobando base de datos de confianza\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d claves procesadas (%d validaciones superadas)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "no se encuentran claves absolutamente fiables\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "clave pblica de la clave absolutamente fiable %s no encontrada\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" "%d dudosa(s) necesarias, %d completa(s) necesarias,\n" "modelo de confianza %s\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6482,7 +6482,7 @@ msgstr "" "nivel: %d validez: %3d firmada: %3d confianza: %d-, %dq, %dn, %dm, %df, %" "du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6980,16 +6980,16 @@ msgstr "" "Sintaxis: scdaemon [opciones] [orden [args]]\n" "Demonio de la tarjeta inteligente para GnuPG\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "use la opcin `--daemon' para ejectuar el programa en segundo plano\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "manejador del descriptor %d iniciado\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "manejador del descriptor %d terminado\n" @@ -7678,11 +7678,11 @@ msgstr "|NOMBRE|usa el algoritmo de cifrado NOMBRE" msgid "|NAME|use message digest algorithm NAME" msgstr "|NOMBRE|usa algoritmo de resumen de mensaje NOMBRE" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Uso: gpgsm [opciones] [ficheros] (-h para ayuda)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7692,54 +7692,54 @@ msgstr "" "firma, comprueba, cifra o descifra usando protocolo S/MIME\n" "la operacin por defecto depende de los datos de entrada\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "uso: gpgsm [opciones] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "NOTA: no se podr cifrar a `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "modelo de validacin desconocido `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "%s:%u: falta el nombre del host\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "%s:%u: se dio contrasea sin usuario\n" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "%s:%u: omitir esta lnea\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 msgid "could not parse keyserver\n" msgstr "no se puede interpretar el servidor de claves\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "AVISO: ejecutndose con hora del sistema falsificada" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "importando certificados comunes `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "no puedo firmar usando `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "orden invlida (no hay orden implcita)\n" diff --git a/po/et.po b/po/et.po index 2fc60e113..ec850df00 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -92,7 +92,7 @@ msgstr "halb parool" msgid "ssh keys greater than %d bits are not supported\n" msgstr "kaitse algoritm %d%s ei ole toetatud\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "`%s' ei #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "`%s' ei nnestu avada: %s\n" @@ -423,7 +423,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -440,147 +440,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MRKUS: vaikimisi vtmete fail `%s' puudub\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "vtmete fail `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "loen vtmeid failist `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "viga `%s' loomisel: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kataloogi `%s' ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "viga parooli loomisel: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "viga teate saatmisel serverile `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "uuendamine ebannestus: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjutan salajase vtme faili `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: kataloog on loodud\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: lugemine ebannestus (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kataloogi ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salajase vtme uuendamine ebannestus: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: jtsin vahele: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "vigane GPG_AGENT_INFO keskkonnamuutuja\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -702,7 +702,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -714,19 +714,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "jah" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -738,7 +738,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -748,11 +748,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1610,7 +1610,7 @@ msgstr "Vigane k msgid "--output doesn't work for this command\n" msgstr "vti --output ei tta selle ksuga\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "`%s' ei nnestu avada\n" @@ -2139,7 +2139,7 @@ msgstr "" "allkirjasta, kontrolli, krpti ja dekrpti\n" "vaikimisi operatsioon sltub sisendandmetest\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2167,537 +2167,537 @@ msgstr "Pakkimine: " msgid "usage: gpg [options] " msgstr "kasuta: gpg [vtmed] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "vastuolulised ksud\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "grupi definitsioonis \"%s\" puudub smbol =\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi igused %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi igused %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi igused %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "tundmatu seade \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "nita millisesse vtmehoidlasse nidatud vti kuulub" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MRKUS: ignoreerin vana vaikimisi vtmete faili `%s'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MRKUS: %s ei ole tavapraseks kasutamiseks!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ei saa parsida vtmeserveri URI\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path vrtuseks ei nnestu seada %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "HOIATUS: programm vib salvestada oma mlupildi!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "HOIATUS: %s mrab le %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s ei ole koos lubatud!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s ei oma koos mtet!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjutan salajase vtme faili `%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "teate krpteerimine --pgp2 moodis nuab IDEA iffrit\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "valitud ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "valitud lhendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valitud ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "valitud sertifikaadi lhendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed peab olema suurem, kui 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed peab olema suurem, kui 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MRKUS: lihtne S2K mood (0) ei soovitata kasutada\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "vigased vaikimisi eelistused\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "vigased isikliku ifri eelistused\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "vigased isikliku lhendi eelistused\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "vigased isikliku pakkimise eelistused\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ei tta veel koos %s-ga\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB initsialiseerimine ebannestus: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [failinimi]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [failinimi]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "lahtikrpteerimine ebannestus: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [failinimi]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [failinimi]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [failinimi]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [failinimi]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [failinimi]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key kasutaja-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key kasutaja-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key kasutaja-id [ksud]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "vtmeserverile saatmine ebannestus: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "vtmeserverilt lugemine ebannestus: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "vtme eksport ebannestus: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "vtmeserveri otsing ebannestus: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "vtmeserveri uuendamine ebannestus: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "lahtipakendamine ebannestus: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "pakendamine ebannestus: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "vigane rsialgoritm `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[failinimi]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Kirjutage nd oma teade ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "antud sertifikaadi poliisi URL on vigane\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" @@ -4010,13 +4010,13 @@ msgstr "" "nidatud vtme kehtivus olla tingimata korrektne.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[thistatud] " #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4076,7 +4076,7 @@ msgstr "Kustutatud %d allkirja.\n" msgid "Nothing deleted.\n" msgstr "Midagi ei kustutatud.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "vigane pakend" @@ -6540,7 +6540,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "trustdb kontrolliks puudub vajadus\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "trustdb jrgmine kontroll %s\n" @@ -6555,7 +6555,7 @@ msgstr "trustdb kontrolliks puudub vajadus\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "trustdb kontrolliks puudub vajadus\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "ei leia avalikku vtit %08lX: %s\n" @@ -6568,32 +6568,32 @@ msgstr "palun tehke --check-trustdb\n" msgid "checking the trustdb\n" msgstr "kontrollin trustdb faili\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d vtit tdeldud (%d kehtivust puhastatud)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "absoluutselt usaldatavaid vtmeid pole\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "puudub absoluutselt usaldatava vtme %08lX avalik vti\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "usalduse kirje %lu, tp %d: kirjutamine ebannestus: %s\n" @@ -7102,16 +7102,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7828,12 +7828,12 @@ msgstr "|NIMI|kasuta msgid "|NAME|use message digest algorithm NAME" msgstr "|NIMI|kasuta teatelhendi algoritmi NIMI" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Kasuta: gpg [vtmed] [failid] (-h nitab abiinfot)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7844,56 +7844,56 @@ msgstr "" "allkirjasta, kontrolli, krpti ja dekrpti\n" "vaikimisi operatsioon sltub sisendandmetest\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "kasuta: gpg [vtmed] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "ei nnestu luua hendust serveriga `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "tundmatu vaikimisi saaja `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Kirjeldust ei antud)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " j = jta see vti vahele\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "ei saa parsida vtmeserveri URI\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "kirjutan faili `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "`%s' ei nnestu sulgeda: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index b388a5564..33dd5556f 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" @@ -108,7 +108,7 @@ msgstr "väärä salasana" msgid "ssh keys greater than %d bits are not supported\n" msgstr "suojausalgoritmi %d%s ei ole käytettävissä\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -118,12 +118,12 @@ msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi avata: %s\n" @@ -439,7 +439,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -457,147 +457,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "HUOM: Ei oletusasetustiedostoa \"%s\"\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "asetustiedosto \"%s\": %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "luetaan asetukset tiedostosta \"%s\"\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "virhe luotaessa \"%s\": %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "hakemiston \"%s\" luominen ei onnistu: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ei voida luoda kohdetta %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "virhe lähettäessä kohteeseen \"%s\": %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: hakemisto luotu\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: luku epäonnistui (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: hakemistoa ei voi luoda: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salaisen päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ohitettu: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO-ympäristömuuttuja on väärin muotoiltu\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -719,7 +719,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -731,19 +731,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "kyllä|kylla|joo" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -755,7 +755,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -765,11 +765,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1629,7 +1629,7 @@ msgstr "Komento ei kelpaa (kirjoita \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output ei toimi yhdessä tämän komennon kanssa\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "tiedostoa \"%s\" ei voi avata\n" @@ -2158,7 +2158,7 @@ msgstr "" "allekirjoita, tarkista, salaa tai avaa\n" "oletustoiminto riippuu syötteestä\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2186,538 +2186,538 @@ msgstr "Pakkaus: " msgid "usage: gpg [options] " msgstr "käyttö: gpg [valitsimet] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "ristiriitainen komento\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "=-merkkiä ei löytynyt ryhmämäärityksessä \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "tuntematon asetus \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "näytä mihin avainrenkaaseen tulostettu avain kuuluu" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "HUOM: %s ei ole normaaliin käyttöön!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-polkua kohteeseen %s ei voi asettaa\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "VAROITUS: ohjelma voi luoda core-tiedoston!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROITUS: %s korvaa %s:n\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s eivät ole sallittuja yhdessä!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s yhdessä on järjetöntä!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "viestin salaaaminen --pgp2-tilassa vaatii IDEA-salaimen\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "valittu tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "valittu varmenteen tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed täytyy olla suurempi kuin 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed täytyy olla suurempi kuin 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 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:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "virheelliset oletusarvoiset valinnat\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "virheelliset henkilökohtaisen salaimen valinnat\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "virheelliset henkilökohtaiset tiivisteen valinnat\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "virheelliset henkilökohtaiset pakkausvalinnat\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ja %s eivät vielä toimi yhdessä\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [tiedostonimi]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [tiedostonimi]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "avaus epäonnistui: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [tiedostonimi]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--allekirjoita [tiedostonimi]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [tiedostonimi]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [tiedostonimi]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [tiedostonimi]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key käyttäjätunnus" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key käyttäjätunnus" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key käyttäjätunnus [komennot]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "avainpalvelimelta vastaanotto epäonnistui: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "avaimen vienti epäonnistui: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "avainpalvelimelta etsiminen epäonnistui: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "avainpalvelimen päivitys epäonnistui: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "ascii-koodauksen purku epäonnistui: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "ascii-koodaaminen epäonnistui: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "virheellinen tiivistealgoritmi \"%s\"\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[tiedostonimi]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Kirjoita viestisi...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "annettu varmennekäytännön URL on virheellinen\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" @@ -4036,13 +4036,13 @@ msgstr "" "ajan tasalla jollet käynnistä ohjelmaa uudelleen\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[mitätöity] " #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4102,7 +4102,7 @@ msgstr "%d allekirjoitusta poistettu.\n" msgid "Nothing deleted.\n" msgstr "Mitään ei poistettu.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "virheellinen ascii-koodaus" @@ -6603,7 +6603,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "trustdb:n tarkistusta ei tarvita\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "seuraava trustdb tarkistus %s\n" @@ -6618,7 +6618,7 @@ msgstr "trustdb:n tarkistusta ei tarvita\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "trustdb:n tarkistusta ei tarvita\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "julkista avainta %08lX ei löydy: %s\n" @@ -6631,32 +6631,32 @@ msgstr "tee --check-trustdb, kiitos\n" msgid "checking the trustdb\n" msgstr "tarkistetaan trustdb:tä\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d avainta käsitelty (%d kelpoisuuslaskuria tyhjätty)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "ehdottomasti luotettavia avaimia ei löytynyt\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "ehdottomasti luotettu julkinen avain %08lX ei löytynyt\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "luottamustietue %lu, tyyppi %d: kirjoittaminen epäonnistui: %s\n" @@ -7166,16 +7166,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7892,12 +7892,12 @@ msgstr "|NIMI|käytä salausalgoritmia NIMI" msgid "|NAME|use message digest algorithm NAME" msgstr "|NIMI|käytä viestintiivistealgoritmia NIMI" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Käyttö: gpg [valitsimet] [tiedostot] (-h näyttää ohjeen)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7908,56 +7908,56 @@ msgstr "" "allekirjoita, tarkista, salaa tai avaa\n" "oletustoiminto riippuu syötteestä\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "käyttö: gpg [valitsimet] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "yhteys kohteeseen \"%s\" ei onnistu: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "tuntematon oletusvastaanottaja \"%s\"\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Kuvausta ei annettu)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " o = ohita tämä avain\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "kirjoitetaan kohteeseen \"%s\"\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi sulkea: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index d2880c05b..4fa2c5da1 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2008-09-30 19:38+0200\n" "Last-Translator: Gal Quri \n" "Language-Team: French \n" @@ -98,7 +98,7 @@ msgstr "mauvaise phrase de passe" msgid "ssh keys greater than %d bits are not supported\n" msgstr "le hachage de protection %d n'est pas support\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -108,12 +108,12 @@ msgstr "impossible de cr #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossible d'ouvrir `%s': %s\n" @@ -445,7 +445,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 msgid "Please report bugs to <@EMAIL@>.\n" msgstr "" @@ -463,149 +463,149 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTE: pas de fichier d'options par dfaut `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "fichier d'options `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "lire les options de `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "erreur pendant la cration de `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossible de crer le rpertoire `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossible de crer `%s': %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent n'est pas disponible dans cette session\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erreur pendant l'obtention du nouveau code PIN: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "" "erreur pendant la recherche de l'enregistrement de confiance\n" "dans `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "la mise jour a chou: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "criture de la cl secrte dans `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "rpertoire `%s' cr\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) chou dans %s: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "impossible de crer le rpertoire `%s': %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "la mise jour de la cl secrte a chou: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignor: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent n'est pas disponible dans cette session\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "la variable d'environnement GPG_AGENT_INFO est mal dfinie\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -727,7 +727,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -739,19 +739,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "oui" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -763,7 +763,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -773,11 +773,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1620,7 +1620,7 @@ msgstr "Commande invalide (essayez msgid "--output doesn't work for this command\n" msgstr "--output n'est pas compatible avec cette commande\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "impossible d'ouvrir `%s'\n" @@ -2155,7 +2155,7 @@ msgstr "" "signer, vrifier, chiffrer ou dchiffrer\n" "l'opration par dfaut dpend des donnes entres\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2183,65 +2183,65 @@ msgstr "Compression: " msgid "usage: gpg [options] " msgstr "utilisation: gpg [options] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "commandes en conflit\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "aucun signe = trouv dans la dfinition du groupe `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du rpertoire personnel `%s' est\n" "peu sr\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du fichier de configuration `%s'\n" "est peu sr\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire de l'extension `%s' est peu\n" "sr\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du rpertoire personnel `%s'\n" "sont peu sres\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du fichier de configuration\n" "`%s' sont peu sres\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "" "AVERTISSEMENT: les permissions de l'extension `%s' sont\n" "peu sres\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du rpertoire contenant est peu\n" "sr pour le rpertoire personnel `%s'\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2249,21 +2249,21 @@ msgstr "" "AVERTISSEMENT: le propritaire du rpertoire contenant est peu\n" "sr pour le fichier de configuration `%s'\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du rpertoire contenant est peu\n" "sr pour l'extension `%s'\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du rpertoire contenant le\n" "rpertoire personnel `%s' sont peu sres\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2271,482 +2271,482 @@ msgstr "" "AVERTISSEMENT: les permissions du rpertoire contenant le\n" "fichier de configuration `%s' sont peu sres\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du rpertoire contenant\n" "l'extension `%s' sont peu sres\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "lment de configuration `%s' inconnu\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Pas de signature correspondante dans le porte-cls secret\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "l'URL du serveur de cls favori qui a t donne est invalide\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "" "passer de la liste des cls secrtes celle des cls prives\n" "et inversement" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Pas de signature correspondante dans le porte-cls secret\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, 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:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, 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:2602 +#: g10/gpg.c:2629 #, 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:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "impossible d'interprter l'URL du serveur de cls\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: les options du serveur de cls sont invalides\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "les options du serveur de cls sont invalides\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: options d'import invalides\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "options d'import invalides\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: options d'export invalides\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "options d'export invalides\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: options de liste invalides\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "options de liste invalides\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, 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:2692 +#: g10/gpg.c:2719 #, 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:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, 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:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: options de vrification invalides\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "options de vrification invalides\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossible de mettre le chemin d'excution %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: options de vrification invalides\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "ATTENTION: Le programme peut crer un fichier core !\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENTION: %s remplace %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n'est pas permis avec %s !\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n'a aucun sens avec %s !\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorithme de chiffrement slectionn est invalide\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "la fonction de hachage slectionne est invalide\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "l'algorithme de compression slectionn est invalide\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "la fonction de hachage de certification slectionne est invalide\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed doit tre suprieur 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed doit tre suprieur 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: le mode S2K simple (0) est fortement dconseill\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "prfrences par dfaut invalides\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "prfrences de chiffrement personnelles invalides\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "prfrences de hachage personnelles invalides\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "prfrences de compression personnelles invalides\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne marche pas encore avec %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "impossible d'initialiser la base de confiance: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nom du fichier]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nom du fichier]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "le chiffrement symtrique de `%s' a chou: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nom du fichier]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nom du fichier]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nom du fichier]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom du fichier]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nom du fichier]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom du fichier]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nom du fichier]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nom du fichier]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key utilisateur" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key utilisateur" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key utilisateur [commandes]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'envoi vers le serveur de cls a chou: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la rception depuis le serveur de cls a chou: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "l'export de la cl a chou: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "la recherche au sein du serveur de cls a chou: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "le rafrachissement par le serveur de cls a chou: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "la suppression d'une armure a chou: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "la construction d'une armure a chou: %s \n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algorithme de hachage `%s' invalide\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nom du fichier]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Vous pouvez taper votre message...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "l'URL de politique de certification donne est invalide\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "l'URL de politique de signature donne est invalide\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL du serveur de cls favori qui a t donne est invalide\n" @@ -4039,12 +4039,12 @@ msgstr "" "correcte tant que vous n'avez pas relanc le programme.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "revoque" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "expire" @@ -4106,7 +4106,7 @@ msgstr "%d signatures supprim msgid "Nothing deleted.\n" msgstr "Rien n'a t supprim.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "invalide" @@ -6619,7 +6619,7 @@ msgstr "ultime" msgid "no need for a trustdb check\n" msgstr "vrification de la base de confiance inutile\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "la prochaine vrification de la base de confiance aura lieu le %s\n" @@ -6638,7 +6638,7 @@ msgstr "" "mise jour de la base de confiance inutile avec le modle de\n" "confiance `%s'\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "cl publique %s non trouve : %s\n" @@ -6651,28 +6651,28 @@ msgstr "faites un --check-trustdb\n" msgid "checking the trustdb\n" msgstr "vrifier la base de confiance\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d cls traites (%d comptes de validit rinitialiss)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "aucune cl de confiance ultime n'a t trouve\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "la cl publique de la cl de confiance ultime %s est introuvable\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" "%d marginale(s) ncessaires, %d complte(s) ncessaires, modle\n" "de confiance %s\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6680,7 +6680,7 @@ msgstr "" "profondeur: %d valide: %3d sign: %3d\n" "confiance: %d-. %dg. %dn. %dm. %df. %du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7196,16 +7196,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7927,12 +7927,12 @@ msgstr "algorithme de chiffrement inconnu" msgid "|NAME|use message digest algorithm NAME" msgstr "signature %s, algorithme de hachage %s\n" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Utilisation: gpg [options] [fichiers] (-h pour l'aide)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7943,56 +7943,56 @@ msgstr "" "signer, vrifier, chiffrer ou dchiffrer\n" "l'opration par dfaut dpend des donnes entres\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "utilisation: gpg [options] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "impossible de se connecter `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "option `%s' inconnue\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Aucune description donne)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = sauter cette cl\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "impossible d'interprter l'URL du serveur de cls\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossible d'accder `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/gl.po b/po/gl.po index 2d0c24998..a801021b3 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -92,7 +92,7 @@ msgstr "contrasinal err msgid "ssh keys greater than %d bits are not supported\n" msgstr "o algoritmo de proteccin %d%s non est soportado\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "non se pode crear `%s': %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "non se puido abrir `%s': %s\n" @@ -426,7 +426,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -445,147 +445,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: non existe o ficheiro de opcins por defecto `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opcins `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "lendo as opcins de `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "erro ao crear `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "non se pode crea-lo directorio `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "non foi posible crear %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Revocacin de certificado vlida" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent non est dispoible nesta sesin\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar a `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "a actualizacin fallou: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "gravando a chave secreta en `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directorio creado\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de datos de confianza: fallou a lectura (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: non foi posible crear un directorio: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro lendo `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "o segredo da actualizacin fallou: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves omitidas\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent non est dispoible nesta sesin\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variable de ambiente GPG_AGENT_INFO mal formada\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -707,7 +707,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "erro lendo `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -719,19 +719,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "si|sim" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -743,7 +743,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -753,11 +753,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1620,7 +1620,7 @@ msgstr "Comando incorrecto (tente \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output non traballa con este comando\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "non se puido abrir `%s'\n" @@ -2151,7 +2151,7 @@ msgstr "" "asinar, verificar, cifrar ou descifrar\n" "a operacin por defecto depende dos datos de entrada\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2179,540 +2179,540 @@ msgstr "Compresi msgid "usage: gpg [options] " msgstr "uso: gpg [opcins] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "comandos conflictivos\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "non se atopou un signo = na definicin do grupo \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr " creouse un novo ficheiro de configuracin `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "amosar en que chaveiro est unha chave listada" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s non para uso normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "non se puido estabrecer exec-path a %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: o programa pode crear un ficheiro 'core'!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s fai que se ignore %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s non se admite con %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s non ten sentido empregndoo con %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de resumo seleccionado non vlido\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de resumo de certificacin seleccionado non vlido\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser superior a 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser superior a 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 #, 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:3182 +#: g10/gpg.c:3209 #, 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: desaconsllase encarecidamente o modo S2K simple (0)\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "preferencias por defecto non vlidas\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "preferencias de cifrado personais non vlidas\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "preferencias de resumo personais non vlidas\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "preferencias de compresin personais non vlidas\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s anda non traballa con %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, 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:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [ficheiro]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [ficheiro]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "o descifrado fallou: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [ficheiro]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [ficheiro]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ficheiro]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [ficheiro]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [ficheiro]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id-de-usuario" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id-de-usuario" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-de-usuario [comandos]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "o envo ao servidor de chaves fallou: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "a recepcin do servidor de chaves fallou: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "a exportacin da chave fallou: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "a busca no servidor de chaves fallou fallou: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "a actualizacin no servidor de chaves fallou: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "non se puido quita-la armadura: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "non se puido poe-la armadura: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash non vlido `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[ficheiro]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Escriba a sa mensaxe ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "o URL de normativa de certificacin dado non vlido\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non vlido\n" @@ -4042,13 +4042,13 @@ msgstr "" "correcta a menos que reinicie o programa.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[revocada] " #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4110,7 +4110,7 @@ msgstr "Borradas %d sinaturas.\n" msgid "Nothing deleted.\n" msgstr "Non se borrou nada.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "armadura non vlida" @@ -6607,7 +6607,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "non se precisa comproba-la base de datos de confianza\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "hase comproba-la base de datos de confianza o %s\n" @@ -6622,7 +6622,7 @@ msgstr "non se precisa comproba-la base de datos de confianza\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "non se precisa comproba-la base de datos de confianza\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "non se atopou a chave pblica %08lX: %s\n" @@ -6635,32 +6635,32 @@ msgstr "por favor, execute con --check-trustdb\n" msgid "checking the trustdb\n" msgstr "comprobando a base de datos de confianza\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "procesronse %d chaves (marcronse %d contas de validez)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "non se atoparon chaves de confianza absoluta\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "non se atopou a chave pblica da clave de confianza absoluta %08lX\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "rexistro de confianza %lu, tipo %d: fallou a escritura: %s\n" @@ -7171,16 +7171,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7910,12 +7910,12 @@ msgstr "|NOME|emprega-lo algoritmo de cifrado NOME" msgid "|NAME|use message digest algorithm NAME" msgstr "|NOME|emprega-lo algoritmo de resumos de mensaxes NOME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Uso: gpg [opcins] [ficheiros] (-h para ve-la axuda)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7926,56 +7926,56 @@ msgstr "" "asinar, verificar, cifrar ou descifrar\n" "a operacin por defecto depende dos datos de entrada\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "uso: gpg [opcins] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "non se puido conectar a `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "destinatario por defecto `%s' descoecido\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Non se deu unha descricin)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " o = omitir esta chave\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "escribindo a `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "non se pode pechar `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index 9838bf126..d48717955 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-06-19 21:53+0200\n" "Last-Translator: Nagy Ferenc Lszl \n" "Language-Team: Hungarian \n" @@ -92,7 +92,7 @@ msgstr "rossz jelsz msgid "ssh keys greater than %d bits are not supported\n" msgstr "%d%s vd algoritmus nem tmogatott.\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "Nem tudom l #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "Nem tudom megnyitni a(z) \"%s\" llomnyt: %s.\n" @@ -423,7 +423,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -440,147 +440,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MEGJEGYZS: Nincs alaprtelmezett opcis fjl (%s).\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "\"%s\" opcis fjl: %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "Az opcikat a \"%s\" llomnybl olvasom.\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "Hiba \"%s\" ltrehozsakor: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Nem tudom a \"%s\" knyvtrat ltrehozni: %s.\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s nem hozhat ltre: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "GPG gynk nem elrhet ebben a munkafolyamatban.\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "Hiba a jelsz ltrehozsakor: %s.\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "Hiba %s-ra/-re kldskor: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "Frissts sikertelen: %s.\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "rom a titkos kulcsot a %s llomnyba.\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: Knyvtrat ltrehoztam.\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "Bizalmi adatbzis: olvass sikertelen (n=%d): %s.\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: Nem tudom a knyvtrat ltrehozni: %s.\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "Hiba \"%s\" olvassakor: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "Titkoskulcs-blokk frisstse sikertelen: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: kihagyva: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "GPG gynk nem elrhet ebben a munkafolyamatban.\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "Nem megfelel formj GPG_AGENT_INFO krnyezeti vltoz!\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -702,7 +702,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "Hiba \"%s\" olvassakor: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -714,19 +714,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "igen" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -738,7 +738,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -748,11 +748,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1610,7 +1610,7 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "Az --output opci nem mkdik ehhez a parancshoz.\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "Nem tudom megnyitni %s-t!\n" @@ -2136,7 +2136,7 @@ msgstr "" "Alrs, ellenrzs, titkosts vagy visszafejts.\n" "Az alaprtelmezett mvelet a bemeneti adattl fgg.\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2164,538 +2164,538 @@ msgstr "T msgid "usage: gpg [options] " msgstr "Hasznlat: gpg [opcik] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "Egymsnak ellentmond parancsok!\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "Nem talltam = jelet a \"%s\" csoportdefinciban!\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrtulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrtulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrtulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrengedlyek: %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrengedlyek: %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrengedlyek: %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "\"%s\": ismeretlen konfigurcis elem.\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "mutatja a kilistzott kulcs kulcskarikjt is" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MEGJEGYZS: Figyelmen kvl hagytam a rgi opcikat (%s).\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MEGJEGYZS: %s nem norml hasznlatra van!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "rtelmezhetetlen a kulcsszerver URI-ja!\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, 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:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "FIGYELEM: A program core llomnyt hozhat ltre!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "FIGYELEM: %s hatstalantja %s-t!\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s s %s nem hasznlhat egytt!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s rtelmetlen %s mellett!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "zenet titkostsa --pgp2 mdban IDEA rejtjelezt ignyel!\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "A kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "Az igazolshoz kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed nagyobb kell legyen 0-nl!\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed nagyobb kell legyen 1-nl!\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MEGJEGYZS: Egyszer S2K md (0) ersen ellenjavallt!\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "rvnytelen S2K md; 0, 1 vagy 3 lehet.\n" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "rvnytelen alaprtelmezett preferencik!\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "rvnytelen szemlyes rejtjelez-preferencik!\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "rvnytelen szemlyes kivonatolpreferencik!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "rvnytelen szemlyes tmrtpreferencik!\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s s %s egyelre nem hasznlhat egytt!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Bizalmi adatbzis (%s) inicializlsa sikertelen!\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [fjlnv]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [fjlnv]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Visszafejts sikertelen: %s.\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [fjlnv]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [fjlnv]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [fjlnv]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [fjlnv]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [fjlnv]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key felh-azonost" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key felh-azonost" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key felh-azonost [parancsok]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "Klds a kulcsszerverre sikertelen: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Vtel a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "Kulcsexportls sikertelen: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "Keress a kulcsszerveren sikertelen: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Frissts a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "Pncl eltvoltsa nem sikerlt: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "Pnclozs nem sikerlt: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "rvnytelen kivonatol algoritmus: %s\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[fjlnv]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Kezdheti gpelni az zenetet...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "A megadott igazolsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" @@ -4010,13 +4010,13 @@ msgstr "" "felttlenl helyes, amg jra nem indtja a programot!\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[visszavont] " #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4077,7 +4077,7 @@ msgstr "T msgid "Nothing deleted.\n" msgstr "Nem trltem semmit.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "rvnytelen pncl" @@ -6572,7 +6572,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "Nincs szksg a bizalmi adatbzis ellenrzsre.\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "A bizalmi adatbzis kvetkez ellenrzse: %s.\n" @@ -6587,7 +6587,7 @@ msgstr "Nincs sz msgid "no need for a trustdb update with `%s' trust model\n" msgstr "Nincs szksg a bizalmi adatbzis ellenrzsre.\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "A(z) %08lX nyilvnos kulcsot nem tallom: %s.\n" @@ -6600,32 +6600,32 @@ msgstr "K msgid "checking the trustdb\n" msgstr "Ellenrzm a bizalmi adatbzist.\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d kulcsot feldolgoztam (%d rvnyessgszmllt trltem)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "Nem talltam alapveten megbzhat kulcsot.\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "Nem tallom az alapveten megbzhat %08lX kulcs nyilvnos kulcst!\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "%lu bizalmi rekord, %d tpus: rs sikertelen: %s.\n" @@ -7134,16 +7134,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7861,12 +7861,12 @@ msgstr "|N msgid "|NAME|use message digest algorithm NAME" msgstr "|NV|NV kivonatol algoritmus hasznlata" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Hasznlat: gpg [opcik] [fjlok] (-h a sghoz)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7877,56 +7877,56 @@ msgstr "" "Alrs, ellenrzs, titkosts vagy visszafejts.\n" "Az alaprtelmezett mvelet a bemeneti adattl fgg.\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "Hasznlat: gpg [opcik] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "Nem tudok kapcsoldni \"%s\" objektumhoz: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "Ismeretlen alaprtelmezett cmzett: \"%s\"\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Nincs lers.)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " h = kulcs kihagysa\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "rtelmezhetetlen a kulcsszerver URI-ja!\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "rok a \"%s\" llomnyba.\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "Nem tudom bezrni a(z) \"%s\" llomnyt: %s.\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/id.po b/po/id.po index 396551e15..93d02b1b7 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -94,7 +94,7 @@ msgstr "passphrase yang buruk" msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritma proteksi %d%s tidak didukung\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -104,12 +104,12 @@ msgstr "tidak dapat membuat %s: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "tidak dapat membuka `%s': %s\n" @@ -425,7 +425,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -442,147 +442,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "CATATAN: tidak ada file pilihan baku `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "file pilihan `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "membaca pilihan dari `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "kesalahan penciptaan : `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "tidak dapat membuat direktori `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent tidak tersedia untuk sesi ini\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "kesalahan mengirim ke `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "gagal memperbarui: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: direktori tercipta\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read failed (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: tidak dapat membuat direktori: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "gagal perbarui rahasia: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: dilewati: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent tidak tersedia untuk sesi ini\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabel lingkungan GPG_AGENT_INFO salah bentuk\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -704,7 +704,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -716,19 +716,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "y|ya" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -740,7 +740,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -750,11 +750,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1613,7 +1613,7 @@ msgstr "Perintah tidak valid (coba \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output tidak berfungsi untuk perintah ini\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "tidak dapat membuka `%s'\n" @@ -2138,7 +2138,7 @@ msgstr "" "tandai, cek, enkripsi atau dekripsi\n" "operasi baku tergantung pada data input\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2166,546 +2166,546 @@ msgstr "Kompresi: " msgid "usage: gpg [options] " msgstr "pemakaian: gpg [pilihan] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "perintah saling konflik\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "tanda = tidak ditemukan dalam definisi grup \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "Item Konfigurasi tidak dikenal \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "tampilkan keyring tempat kunci yang dipilih berada" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "CATATAN: file pilihan baku lama `%s' diabaikan\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "CATATAN: %s tidak untuk pemakaian normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "tidak dapat memparsing URI keyserver\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "tidak dapat menset path exec ke %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "PERINGATAN: program mungkin membuat file core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "PERINGATAN: %s menimpa %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s tidak dibolehkan dengan %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s tidak masuk akal dengan %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "algoritma digest yang dipilih tidak valid\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritma sertifikasi digest yang dipilih tidak valid\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed harus lebih dari 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed harus lebih dari 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "preferensi baku tidak valid\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "preferensi cipher personal tidak valid\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "preferensi digest personal tidak valid\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "preferensi kompresi personal tidak valid\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s belum dapat dipakai dengan %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [namafile]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [namafile]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "dekripsi gagal: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [namafile]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [namafile]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [namafile]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [namafile]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [namafile]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id-user" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id-user" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-user [perintah]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Penerimaan keyserver gagal: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "Ekspor kunci gagal: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "Pencarian keyserver gagal: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh keyserver gagal: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "gagal dearmoring: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[namafile]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Teruskan dan ketikkan pesan anda ....\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "URL sertifikasi kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" @@ -4021,13 +4021,13 @@ msgstr "" "kecuali anda memulai kembali program.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[revoked] " #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4088,7 +4088,7 @@ msgstr "Menghapus %d signature.\n" msgid "Nothing deleted.\n" msgstr "Tidak ada yang dihapus.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "armor tidak valid" @@ -6566,7 +6566,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "tidak perlu memeriksa trustdb\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "pemeriksaan trustdb berikutnya pada %s\n" @@ -6581,7 +6581,7 @@ msgstr "tidak perlu memeriksa trustdb\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "tidak perlu memeriksa trustdb\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "kunci publik %08lX tidak ditemukan: %s\n" @@ -6594,32 +6594,32 @@ msgstr "lakukanlah --check-trustdb\n" msgid "checking the trustdb\n" msgstr "memeriksa trustdb\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d kunci diproses (%d hitungan validitas dihapus)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "tidak ditemukan kunci yang benar-benar terpercaya\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "kunci publik yang sangat terpercaya %08lX tidak ditemukan\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "trust record %lu, tipe %d: gagal menulis: %s\n" @@ -7128,16 +7128,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7855,12 +7855,12 @@ msgstr "|NAMA|gunakan algoritma cipher NAMA" msgid "|NAME|use message digest algorithm NAME" msgstr "|NAMA|gunakan algoritma digest pesan NAMA" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Pemakaian: gpg [pilihan] [file] (-h untuk bantuan)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7871,56 +7871,56 @@ msgstr "" "tandai, cek, enkripsi atau dekripsi\n" "operasi baku tergantung pada data input\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "pemakaian: gpg [pilihan] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "tidak dapat terkoneksi ke `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "penerima baku tidak dikenal `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Tidak diberikan deskripsi)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = lewati kunci ini\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "tidak dapat memparsing URI keyserver\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "menulis ke `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "tidak dapat menutup `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/it.po b/po/it.po index d26e0cdd4..ff05ec8e9 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2008-05-26 12:02+0200\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -92,7 +92,7 @@ msgstr "passphrase errata" msgid "ssh keys greater than %d bits are not supported\n" msgstr "l'algoritmo di protezione %d%s non gestito\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "impossibile creare `%s': %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossibile aprire `%s': %s\n" @@ -423,7 +423,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -440,147 +440,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: manca il file `%s' con le opzioni predefinite\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "file con le opzioni `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "lettura delle opzioni da `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "errore creando `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossibile creare la directory `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossibile creare %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent non disponibile in questa sessione\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "errore nella creazione della passhprase: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aggiornamento fallito: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directory creata\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read fallita (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossibile creare la directory: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aggiornamento della chiave segreta fallito: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: saltata: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent non disponibile in questa sessione\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabile di ambiente GPG_AGENT_INFO malformata\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -702,7 +702,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -714,19 +714,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "si|s" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -738,7 +738,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -748,11 +748,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "Comando non valido (prova \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output non funziona con questo comando\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "impossibile aprire `%s'\n" @@ -2147,7 +2147,7 @@ msgstr "" "firma, controlla, cifra o decifra\n" "l'operazione predefinita dipende dai dati di input\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2175,541 +2175,541 @@ msgstr "Compressione: " msgid "usage: gpg [options] " msgstr "uso: gpg [opzioni] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "comandi in conflitto\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "non stato trovato il segno = nella definizione del gruppo \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "elemento della configurazione sconosciuto \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostra in quali portachiavi sono contenute le chiavi elencate" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s normalmente non deve essere usato!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossibile fare il parsing dell'URI del keyserver\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossibile impostare exec-path a %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENZIONE: %s ha la precedenza su %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "Non permesso usare %s con %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "Non ha senso usare %s con %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non valido\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non valido\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non valido\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non valido\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve essere maggiore di 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve essere maggiore di 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 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:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "preferenze predefinite non valide\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "preferenze personali del cifrario non valide\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "preferenze personali del digest non valide\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "preferenze personali di compressione non valide\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s non funziona ancora con %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nomefile]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nomefile]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifratura fallita: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nomefile]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nomefile]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nomefile]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nomefile]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nomefile]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [comandi]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "invio al keyserver fallito: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "ricezione dal keyserver fallita: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "esportazione della chiave fallita: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "ricerca nel keyserver fallita: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aggiornamento del keyserver fallito: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "rimozione dell'armatura fallita: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo di hash non valido `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nomefile]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Vai avanti e scrivi il messaggio...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "l'URL della politica di certificazione indicato non valido\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL della politica di firma indicato non valido\n" @@ -4027,13 +4027,13 @@ msgstr "" "finch non eseguirai di nuovo il programma.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[revocata]" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4095,7 +4095,7 @@ msgstr "Cancellate %d firme.\n" msgid "Nothing deleted.\n" msgstr "Non stato cancellato nulla.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "armatura non valida" @@ -6610,7 +6610,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "non necessario un controllo del trustdb\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "il prossimo controllo del trustdb sar fatto il %s\n" @@ -6625,7 +6625,7 @@ msgstr "non msgid "no need for a trustdb update with `%s' trust model\n" msgstr "non necessario un controllo del trustdb\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "chiave pubblica %08lX non trovata: %s\n" @@ -6638,32 +6638,32 @@ msgstr "per favore usa --check-trustdb\n" msgid "checking the trustdb\n" msgstr "controllo il trustdb\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d chiavi processate (%d conteggi di validit azzerati)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "non stata trovata alcuna chiave definitivamente affidabile\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "chiave pubblica definitivamente affidabile %08lX non trovata\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "trust record %lu, req type %d: write fallita: %s\n" @@ -7174,16 +7174,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7900,12 +7900,12 @@ msgstr "|NOME|usa l'algoritmo di cifratura NOME" msgid "|NAME|use message digest algorithm NAME" msgstr "|NOME|usa l'algoritmo di message digest NOME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Uso: gpg [opzioni] [files] (-h per l'aiuto)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7916,56 +7916,56 @@ msgstr "" "firma, controlla, cifra o decifra\n" "l'operazione predefinita dipende dai dati di input\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "uso: gpg [opzioni] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "impossibile connettersi a `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "destinatario predefinito `%s' sconosciuto\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Non stata data una descrizione)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = salta questa chiave\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "impossibile fare il parsing dell'URI del keyserver\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "scrittura in `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossibile chiudere `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 225b6ff18..857bd3066 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-11-23 11:14+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" @@ -96,7 +96,7 @@ msgstr " msgid "ssh keys greater than %d bits are not supported\n" msgstr "ݸ%dϥݡȤƤޤ\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -106,12 +106,12 @@ msgstr " #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "%sפޤ: %s\n" @@ -433,7 +433,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 msgid "Please report bugs to <@EMAIL@>.\n" msgstr "Х򸫤Ĥ <@EMAIL@> ޤǤ𤯤\n" @@ -449,147 +449,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr ": Υץ󡦥ե%sפޤ\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "ץ󡦥ե%s: %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "%sפ饪ץɤ߽Фޤ\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "%sפκ顼: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "Υågpg-agent̵Ǥ\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "PINμ顼: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "%sפǿѥ쥳ɤθ顼: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "%sפ̩񤭹ߤޤ\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d)%sǼԤޤ: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "%sפɽФ顼: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "̩ι˼Ԥޤ: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: å: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "Υågpg-agent̵Ǥ\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFOĶѿν񼰤ޤ\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -711,7 +711,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "%sפɽФ顼: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -723,19 +723,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "yes" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -747,7 +747,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -757,11 +757,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1591,7 +1591,7 @@ msgstr "̵ msgid "--output doesn't work for this command\n" msgstr "Υޥɤ--outputϵǽޤ\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "%sפޤ\n" @@ -2107,7 +2107,7 @@ msgstr "" "̾Ź沽\n" "ϡϥǡ˰¸\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2135,527 +2135,527 @@ msgstr " msgid "usage: gpg [options] " msgstr "Ȥ: gpg [ץ] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "Ω륳ޥ\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "=椬롼%s˸Ĥޤ\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤͭ\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤͭ\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤͭ\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤ\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤ\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤ\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤ̥ǥ쥯ȥ꡼ͭ\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤ̥ǥ쥯ȥ꡼ͭ\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤ̥ǥ쥯ȥ꡼ͭ\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤ̥ǥ쥯ȥ꡼\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤ̥ǥ쥯ȥ꡼\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤ̥ǥ쥯ȥ꡼\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "̤Τιܡ%s\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "̩ؤб̾ޤ\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "ꤵ줿СURL̵Ǥ\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "̩ȸΰȿž" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "̩ؤб̾ޤ\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr ": Ρäץ󡦥ե%sפϡ̵뤵ޤ\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr ": %sϻȤޤ!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "СURLǽ\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ̵ʸСץǤ\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "̵ʸСץǤ\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ̵ɹߥץǤ\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "̵ɹߥץǤ\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ̵ʽФץǤ\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "̵ʽФץǤ\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ̵ʰץǤ\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "̵ʰץǤ\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "ꤵ줿СURL̵Ǥ\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ̵ʸڥץǤ\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "̵ʸڥץǤ\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path%sǽ\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ̵ʸڥץǤ\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "ٹ: ץΥե뤬Ǥ뤳Ȥޤ!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ٹ: %s%sͥ\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s%sȤȤ˻ȤȤϤǤޤ!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s%sȤȤ˻ȤäƤ̵̣Ǥ!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%sפ̩֤񤭹ߤޤ\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤʬΥ̾ꥢ̾Ǥޤ\n" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤϽ̾ȰŹ沽ƱˤǤޤ\n" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2ꤷ顢(ѥפǤʤ) եꤻͤФʤޤ\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2⡼ɤΥåŹ沽ǤϡIDEAŹˡɬפǤ\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "򤵤줿Ź楢르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "򤵤줿󥢥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "򤵤줿̥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "򤵤줿󥢥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-neededͤɬפǤ\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed1礭ͤɬפǤ\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth1255ϰϤǤʤФʤޤ\n" -#: g10/gpg.c:3180 +#: g10/gpg.c:3207 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "̵default-cert-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3182 +#: g10/gpg.c:3209 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "̵min-cert-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr ": ñS2K⡼(0)λѤˤ϶ȿФޤ\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "̵S2K⡼ɡ013ǤʤФʤޤ\n" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "̵ʴ\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "̵ʸĿѰŹˡ\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "̵ʸĿ\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "̵ʸĿѰ̤\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s%sǵǽޤ\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "Ź楢르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "󥢥르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "̥르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "ѥǡ١ν˼Ԥޤ: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "ٹ: ŹȤ鷺ˡ (-r) ꤷƤޤ\n" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [ե̾]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [ե̾]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "%sפоΰŹ˼Ԥޤ: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [ե̾]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [ե̾]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--symmetric --encrypt--s2k-mode 0ǻȤȤϤǤޤ\n" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "--symmetric --encrypt%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [ե̾]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ե̾]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [ե̾]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--symmetric --sign --encrypt--s2k-mode 0ǻȤȤϤǤޤ\n" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "--symmetric --sign --encrypt%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ե̾]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [ե̾]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [ե̾]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key 桼id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key 桼id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key 桼id [ޥ]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "Сؤ˼Ԥޤ: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Сμ˼Ԥޤ: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "νФ˼Ԥޤ: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "Сθ˼Ԥޤ: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Сβ˼Ԥޤ: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "̵ʥϥå塦르ꥺ%sפǤ\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[ե̾]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "ϤޤåǤäƤ ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "줿ݥꥷURL̵Ǥ\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "줿̾ݥꥷURL̵Ǥ\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "ꤵ줿СURL̵Ǥ\n" @@ -3929,12 +3929,12 @@ msgstr "" "ȤȤǰƬˤƤ\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "λ" @@ -3993,7 +3993,7 @@ msgstr "%d msgid "Nothing deleted.\n" msgstr "Ƥޤ\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "̵Ǥ" @@ -6390,7 +6390,7 @@ msgstr " msgid "no need for a trustdb check\n" msgstr "ѥǡ١θϡפǤ\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "οѥǡ١ϡ%sǤ\n" @@ -6405,7 +6405,7 @@ msgstr " msgid "no need for a trustdb update with `%s' trust model\n" msgstr "ѥǥ%sפǿѥǡ١ιϡפǤ\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "%sĤޤ: %s\n" @@ -6418,32 +6418,32 @@ msgstr "--check-trustdb msgid "checking the trustdb\n" msgstr "ѥǡ١θ\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%dܤθ (%dܤͭ򥯥ꥢ)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "Ū˿Ѥ븰Ĥޤ\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "Ū˿Ѥ븰%sθĤޤ\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "ǾΡ֤٤οѡ%dǾΡŪѡ%d%sѥǥ\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format 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:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6949,16 +6949,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7679,12 +7679,12 @@ msgstr "̤ msgid "|NAME|use message digest algorithm NAME" msgstr "%s̾󥢥르ꥺ %s\n" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Ȥ: gpg [ץ] [ե] (إפ -h)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7695,56 +7695,56 @@ msgstr "" "̾Ź沽\n" "ϡϥǡ˰¸\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "Ȥ: gpg [ץ] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "%sפ³Ǥޤ: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "̤ΤΥץ%s\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Ϥޤ)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = θϤȤФ\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "СURLǽ\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "%sפ˥Ǥޤ: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/nb.po b/po/nb.po index 4a9112209..17ae0998c 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2006-06-13 20:31+0200\n" "Last-Translator: Trond Endrestl \n" "Language-Team: Norwegian Bokml \n" @@ -96,7 +96,7 @@ msgstr "ugyldig passfrase" msgid "ssh keys greater than %d bits are not supported\n" msgstr "" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -106,12 +106,12 @@ msgstr "kan ikke opprette #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "kan ikke pne %s: %s\n" @@ -433,7 +433,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -450,145 +450,145 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MERK: ingen standard valgfil %s\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "valgfil %s: %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "leser valg fra %s\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kan ikke opprette katalogen %s: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke opprette %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "feil ved henting av ny PIN: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "feil ved sking etter tillitspost i %s: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "oppdatering mislyktes: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmelig nkkel til %s\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "katalogen %s ble opprettet\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) mislyktes in %s: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "kan ikke opprette katalogen %s: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "feil ved lesing av %s: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "oppdatering av hemmelig mislyktes: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: hoppet over: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -707,7 +707,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "feil ved lesing av %s: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -719,19 +719,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "ja" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -743,7 +743,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -753,11 +753,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1579,7 +1579,7 @@ msgstr "Ugyldig kommando (pr msgid "--output doesn't work for this command\n" msgstr "--output virker ikke for denne kommandoen\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke pne %s\n" @@ -2096,7 +2096,7 @@ msgstr "" "signere, sjekke, kryptere eller dekryptere\n" "standard operasjon avhenger av inputdata\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2124,52 +2124,52 @@ msgstr "Kompresjon: " msgid "usage: gpg [options] " msgstr "bruksmte: gpg [valg] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "motstridende kommandoer\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "fant ingen =-tegn i gruppedefinisjonen %s\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ADVARSEL: utrygt eierskap p hjemmekatalogen %s\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ADVARSEL: utrygt eierskap p konfigurasjonsfilen %s\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ADVARSEL: utrygt eierskap p utvidelsen %s\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ADVARSEL: utrygge rettigheter p hjemmekatalogen %s\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ADVARSEL: utrygge rettigheter p konfigurasjonsfilen %s\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ADVARSEL: utrygge rettigheter p utvidelsen %s\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "ADVARSEL: utrygt eierskap p katalogene p nivene over hjemmekatalogen %s\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2177,20 +2177,20 @@ msgstr "" "ADVARSEL: utrygt eierskap p katalogene p nivene over konfigurasjonsfilen %" "s\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "ADVARSEL: utrygt eierskap p katalogene p nivene over utvidelsen %s\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "ADVARSEL: utrygge rettigheter p katalogene p nivene over hjemmekatalogen %" "s\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2198,456 +2198,456 @@ msgstr "" "ADVARSEL: utrygge rettigheter p katalogene p nivene over " "konfigurasjonsfilen %s\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "ADVARSEL: utrygge rettigheter p katalogene p nivene over utvidelsen %s\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "ukjent konfigurasjonspunkt %s\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "vise navnet til nkkelknippene i nkkellister" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MERK: den gamle valgfila %s ble ignorert\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MERK: %s er ikke for vanlig bruk!\n" # Tenk litt p denne du, Trond. -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke en gyldig signaturutgelse\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldig tegnsett\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "kunne ikke parse nkkelserverens URL\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ugyldige valg for nkkelserver\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "ugyldige valg for nkkelserver\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ugyldige importvalg\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "ugyldige importvalg\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ugyldige eksportvalg\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "ugyldige eksportvalg\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ugyldige listevalg\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "ugyldige listevalg\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunne ikke sette exec-path til %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ugyldig auto-key-locate-liste\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "ADVARSEL: programmet kan opprette en corefil!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ADVARSEL: %s overstyrere %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s er ikke tillatt sammen med %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er ikke fornuftig med %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "valgt krypteringsalgoritme er ugyldig\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "valg digestalgoritme er ugyldig\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "valgt kompresjonsalgoritme er ugyldig\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "valgt sertifikasjondigestalgoritme er ugyldig\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed m vre strre enn 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-neede m vre strre enn 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MERK: enkel S2K-modus (0) er sterkt frardet\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "ugyldig standard preferanser\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "ugyldig personlig cipherpreferanser\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "ugyldig personlig digestpreferanser\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "ugyldig personlig kompresjonspreferanser\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s virker ikke enn med %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "klarte ikke initialisere tillitsdatabasen: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ADVARSEL: mottakere (-r) angitt uten bruke offentlig nkkelkryptering\n" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [filnavn]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av %s mislyktes: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnavn]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [filnavn]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnavn]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnavn]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key brukerid" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key brukerid" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key brukerid [kommandoer]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "sending til nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "mottak fra nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "nkkeleksport mislyktes: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "sk p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hashalgoritme %s\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Sett i gang og tast inn meldingen din ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "den angitte URLen for sertifikasjonspolicyen er ugyldig\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "den angitte URLen for signaturpolicy er ugyldig\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angitte URLen for den foretrukkede nkkelserveren er ugyldig\n" @@ -3873,12 +3873,12 @@ msgid "" msgstr "" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "opphevet" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "utgtt" @@ -3933,7 +3933,7 @@ msgstr "Slettet %d signaturer.\n" msgid "Nothing deleted.\n" msgstr "Ingen ble slettet.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "ugyldig" @@ -6335,7 +6335,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "" @@ -6350,7 +6350,7 @@ msgstr "" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "fant ikke offentlig nkkel %s: %s\n" @@ -6363,32 +6363,32 @@ msgstr "" msgid "checking the trustdb\n" msgstr "" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6887,16 +6887,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7611,12 +7611,12 @@ msgstr "ukjent kryptoalgoritme" msgid "|NAME|use message digest algorithm NAME" msgstr "%s signatur, digestalgoritme %s\n" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Bruksmte: gpg [valg] [filer] (-h for hjelp)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7627,56 +7627,56 @@ msgstr "" "signere, sjekke, kryptere eller dekryptere\n" "standard operasjon avhenger av inputdata\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "bruksmte: gpg [valg] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "kan ikke opprette %s: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "ukjent valg %s\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = hopp over denne nkkelen\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "kunne ikke parse nkkelserverens URL\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "kan ikke aksere %s: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index bbe782f7c..42bdccbc4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-2.0.7\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2007-11-26 19:01+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -92,7 +92,7 @@ msgstr "Has msgid "ssh keys greater than %d bits are not supported\n" msgstr "klucze ssh wiksze ni %d bitw nie s obsugiwane\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "nie mo #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nie mona otworzy ,,%s'': %s\n" @@ -428,7 +428,7 @@ msgstr "|PLIK|zapis ustawie #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -446,145 +446,145 @@ msgstr "" "Skadnia: gpg-agent [opcje] [polecenie [argumenty]]\n" "Zarzdzanie kluczem tajnym dla GnuPG\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "podano bdny poziom diagnostyki ,,%s''\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "biblioteka %s jest zbyt stara (potrzebna %s, zainstalowana %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "UWAGA: brak domylnego pliku opcji ,,%s''\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "plik opcji ,,%s'': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "odczyt opcji z ,,%s''\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "bd tworzenia ,,%s'': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nie mona utworzy katalogu ,,%s'': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "nazwa gniazda zbyt duga\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "nie mona utworzy gniazda: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "nazwa gniazda zbyt duga\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ju dziaa - nie uruchamianie nowego\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "bd podczas odczytu nowego PIN-u: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "bd podczas przypisywania gniazda do ,,%s'': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "listen() nie powiodo si: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "nasuchiwanie na gniedzie ,,%s''\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "katalog ,,%s'' utworzony\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat() nie powiodo si dla ,,%s'': %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "nie mona uy ,,%s'' jako katalogu domowego\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "bd odczytu z %s: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "obsuga 0x%lx dla fd %d uruchomiona\n" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "obsuga 0x%lx dla fd %d zakoczona\n" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "obsuga ssh 0x%lx dla fd %d uruchomiona\n" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "obsuga ssh 0x%lx dla fd %d zakoczona\n" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select nie powiodo si: %s - czekanie 1s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s zatrzymany\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "brak dziaajcego gpg-agenta w tej sesji\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "zy format zmiennej rodowiskowej GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -707,7 +707,7 @@ msgstr "nieprawid msgid "error reading `%s', line %d: %s\n" msgstr "bd odczytu ,,%s'', w linii %d: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "bd odczytu listy zaufanych certyfikatw gwnych\n" @@ -719,7 +719,7 @@ msgstr "b #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " @@ -728,11 +728,11 @@ msgstr "" "Czy absolutnie ufasz, e%%0A ,,%s''%%0Apoprawnie powiadcza certyfikaty " "uytkownikw?" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "Tak" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "Nie" @@ -744,7 +744,7 @@ msgstr "Nie" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -756,11 +756,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "Akceptuj" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1585,7 +1585,7 @@ msgstr "Niepoprawne polecenie (spr msgid "--output doesn't work for this command\n" msgstr "opcja --output nie dziaa z tym poleceniem\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "nie mona otworzy ,,%s''\n" @@ -2103,7 +2103,7 @@ msgstr "" "podpisywanie, sprawdzanie podpisw, szyfrowanie, deszyfrowanie\n" "domylnie wykonywana operacja zaley od danych wejciowych\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2131,56 +2131,56 @@ msgstr "Kompresji: " msgid "usage: gpg [options] " msgstr "wywoanie: gpg [opcje]" -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "sprzeczne polecenia\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "w definicji grupy ,,%s'' brak znaku ,,=''\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu domowego ,,%s''\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa wasnoci do pliku konfiguracyjnego ,,%s''\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "OSTRZEENIE: niebezpieczne prawa wasnoci do rozszerzenia ,,%s''\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "OSTRZEENIE: niebezpieczne prawa dostpu do katalogu domowego ,,%s''\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa dostpu do pliku konfiguracyjnego ,,%s''\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "OSTRZEENIE: niebezpieczne prawa dostpu do rozszerzenia ,,%s''\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu zawierajcego katalog " "domowy ,,%s''\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2188,21 +2188,21 @@ msgstr "" "OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu zawierajcego plik " "konfiguracyjny ,,%s''\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu zawierajcego " "rozszerzenie ,,%s''\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa dostpu do katalogu zawierajcego katalog " "domowy ,,%s''\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2210,465 +2210,465 @@ msgstr "" "OSTRZEENIE: niebezpieczne prawa dostpu do katalogu zawierajcego plik " "konfiguracyjny ,,%s''\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "OSTRZEENIE: niebezpieczne prawa dostpu do katalogu zawierajcego " "rozszerzenie ,,%s''\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "nieznana opcja konfiguracyjna ,,%s''\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "wywietlenie ID zdj przy wypisywaniu kluczy" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "pokazywanie URL-i polityk przy wypisywaniu podpisw" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "pokazywanie wszystkich adnotacji przy wypisywaniu podpisw" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "pokazywanie standardowych adnotacji IETF przy wypisywaniu podpisw" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "pokazywanie adnotacji uytkownika przy wypisywaniu podpisw" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "" "pokazywanie URL-i preferowanych serwerw kluczy przy wypisywaniu podpisw" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "pokazywanie poprawnoci ID uytkownika przy wypisywaniu kluczy" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" "pokazywanie uniewanionych i wygasych ID uytkownika na listach kluczy" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "pokazywanie uniewanionych i wygasych podkluczy na listach kluczy" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "pokazywanie nazwy zbioru kluczy na listach kluczy" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "pokazywanie dat wyganicia przy wypisywaniu podpisw" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "UWAGA: stary domylny plik opcji ,,%s'' zosta zignorowany\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" "biblioteka libgcrypt jest zbyt stara (potrzebna %s, zainstalowana %s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "UWAGA: %s nie jest do normalnego uytku!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr ",,%s'' nie jest poprawnym czasem wyganicia podpisu\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr ",,%s'' nie jest poprawn nazw zestawu znakw\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "niezrozumiay URL serwera kluczy\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: niepoprawne opcje wypisywania\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "niepoprawne opcje wypisywania\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "wywietlanie ID zdj przy sprawdzaniu podpisw" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "pokazywanie URL-i polityk przy sprawdzaniu podpisw" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "pokazywanie wszystkich adnotacji przy sprawdzaniu podpisw" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "pokazywanie standardowych adnotacji IETF przy sprawdzaniu podpisw" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "pokazywanie adnotacji uytkownika przy sprawdzaniu podpisw" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "" "pokazywanie URL-i preferowanych serwerw kluczy przy sprawdzaniu podpisw" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "pokazywanie poprawnoci ID uytkownika przy sprawdzaniu podpisw" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" "pokazywanie uniewanionych i wygasych ID uytkownika przy sprawdzaniu " "podpisw" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "pokazywanie tylko gwnego ID uytkownika przy sprawdzaniu podpisu" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "sprawdzanie podpisw z danymi PKA" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "zwikszenie zaufania podpisw z poprawnymi danymi PKA" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nie mona ustawi cieki programw wykonywalnych na %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "Niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "OSTRZEENIE: program moe stworzy plik zrzutu pamici!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "OSTRZEENIE: %s powoduje obejcie %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie wolno uywa %s z %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nie ma sensu w poczeniu z %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nie zadziaa z niebezpieczn pamici z powodu %s\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "wybrany algorytm szyfrujcy jest niepoprawny\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "wybrany algorytm skrtw wiadomoci jest niepoprawny\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "wybrany algorytm kompresji jest niepoprawny\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "wybrany algorytm skrtw powiadcze jest niepoprawny\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "warto completes-needed musi by wiksza od 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "warto marginals-needed musi by wiksza od 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "UWAGA: prosty tryb S2K (0) jest stanowczo odradzany\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "niewaciwe domylne ustawienia\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "niewaciwe ustawienia szyfrw\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "niewaciwe ustawienia skrtw\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "niewaciwe ustawienia algorytmw kompresji\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s jeszcze nie dziaa z %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicjowanie Bazy Zaufania nie powiodo si: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [plik]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [plik]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "szyfrowanie symetryczne ,,%s'' nie powiodo si: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [plik]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [plik]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nie mona uy --symmetric --encrypt wraz z --s2k-mode 0\n" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "nie mona uy --symmetric --encrypt w trybie %s\n" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [plik]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [plik]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [plik]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nie mona uy --symmetric --sign --encrypt wraz z --s2k-mode 0\n" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "nie mona uy --symmetric --sign --encrypt w trybie %s\n" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [plik]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [plik]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [plik]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key nazwa uytkownika" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key nazwa uytkownika" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key nazwa uytkownika [polecenia]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "wysyka do serwera kluczy nie powioda si: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "odbir z serwera kluczy nie powid si: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "eksport kluczy nie powid si: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "szukanie w serwerze kluczy nie powiodo si: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "odwieenie kluczy z serwera nie powiodo si: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "zdjcie opakowania ASCII nie powiodo si: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "opakowywanie ASCII nie powiodo si: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "niewaciwy algorytm skrtu ,,%s''\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nazwa pliku]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Wpisz tutaj swoj wiadomo ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "podany URL regulaminu powiadczania jest niepoprawny\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "podany URL regulaminu podpisw jest niepoprawny\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "podany preferowany URL serwera kluczy jest niepoprawny\n" @@ -3943,12 +3943,12 @@ msgstr "" "dopki program nie zostanie uruchomiony ponownie.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "uniewaniony" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "wygas" @@ -4008,7 +4008,7 @@ msgstr "%d podpis msgid "Nothing deleted.\n" msgstr "Nic nie zostao usunite.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "niepoprawny" @@ -6462,7 +6462,7 @@ msgstr "absolutne" msgid "no need for a trustdb check\n" msgstr "sprawdzanie bazy jest niepotrzebne\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "nastpne sprawdzanie bazy odbdzie si %s\n" @@ -6477,7 +6477,7 @@ msgstr "sprawdzanie bazy jest niepotrzebne przy modelu zaufania ,,%s''\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "aktualizacja bazy jest niepotrzebna przy modelu zaufania ,,%s''\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "klucz publiczny %s nie odnaleziony: %s\n" @@ -6490,26 +6490,26 @@ msgstr "nale msgid "checking the trustdb\n" msgstr "sprawdzanie bazy zaufania\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "przetworzono %d kluczy (rozwizano %d przelicze zaufania)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "brak absolutnie zaufanych kluczy\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "klucz publiczny absolutnie zaufanego klucza %s nie odnaleziony\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "potrzeba %d marginalnych, %d penych, model zaufania %s\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6517,7 +6517,7 @@ msgstr "" "poziom: %d poprawnych: %3d podpisanych: %3d zaufanie: %d-,%dq,%dn,%dm,%df,%" "du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7018,16 +7018,16 @@ msgstr "" "Skadnia: scdaemon [opcje] [polecenie [argumenty]]\n" "Demon kart procesorowych dla GnuPG\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "prosz uy opcji ,,--daemon'' do uruchomienia programu w tle\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "obsuga fd %d uruchomiona\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "obsuga fd %d zakoczona\n" @@ -7720,11 +7720,11 @@ msgstr "|NAZWA|u msgid "|NAME|use message digest algorithm NAME" msgstr "|NAZWA|uycie tego algorytmu skrtu wiadomoci" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Wywoanie: gpgsm [opcje] [pliki] (-h podaje pomoc)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7735,55 +7735,55 @@ msgstr "" "MIME\n" "domylnie wykonywana operacja zaley od danych wejciowych\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "wywoanie: gpgsm [opcje]" -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "UWAGA: nie mona zaszyfrowa do ,,%s'': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "nieznany model poprawnoci ,,%s''\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "linia %d: nie podano nazwy przedmiotu\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " p = pominicie tego klucza\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "niezrozumiay URL serwera kluczy\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "OSTRZEENIE: dziaanie z faszywym czasem systemowym: " -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "import wsplnych certyfikatw ,,%s''\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "nie mona podpisa z uyciem ,,%s'': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/pt.po b/po/pt.po index 3390d1a81..b74f471a9 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2002-09-13 18:26+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -95,7 +95,7 @@ msgstr "frase secreta incorrecta" msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritmo de proteco %d%s no suportado\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -105,12 +105,12 @@ msgstr "imposs #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" @@ -427,7 +427,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -444,147 +444,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: ficheiro de opes por omisso `%s' inexistente\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opes `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "a ler opes de `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "erro ao criar `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: impossvel criar directoria: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossvel criar %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "o gpg-agent no est disponvel nesta sesso\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro na criao da frase secreta: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar para `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizao falhou: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "a escrever chave privada para `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directoria criada\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de dados de confiana: leitura falhou (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossvel criar directoria: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignorado: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "o gpg-agent no est disponvel nesta sesso\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "varivel de ambiente GPG_AGENT_INFO invlida\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -706,7 +706,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -718,19 +718,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "sim" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -742,7 +742,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -752,11 +752,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1616,7 +1616,7 @@ msgstr "Comando inv msgid "--output doesn't work for this command\n" msgstr "--output no funciona para este comando\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -2144,7 +2144,7 @@ msgstr "" "assina, verifica, cifra ou decifra\n" "a operao por omisso depende dos dados de entrada\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2172,539 +2172,539 @@ msgstr "Compress msgid "usage: gpg [options] " msgstr "uso: gpg [opes] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "comandos em conflito\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "nenhum sinal = encontrada na definio de grupo \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "criado um novo ficheiro de configurao `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostrar em que porta-chave a chave est" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no para uso normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no consegui processar a URI do servidor de chaves\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, 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:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um ficheiro core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sobrepe %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado invlido\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" de certificao selecionado invlido\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 #, 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:3182 +#: g10/gpg.c:3209 #, 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) no recomendvel\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "preferncias por omisso invlidas\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "preferncias pessoais de cifra invlidas\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "preferncias pessoais de 'digest' invlidas\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "preferncias pessoais de compresso invlidas\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, 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:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nome_do_ficheiro]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifragem falhou: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nome_do_ficheiro]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_ficheiro]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_ficheiro]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id-utilizador" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizador" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizador [comandos]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "criao de armadura falhou: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de disperso invlido `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nome_do_ficheiro]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Digite a sua mensagem ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "a URL de poltica de certificao dada invlida\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" @@ -4024,13 +4024,13 @@ msgstr "" "correcta a no ser que reinicie o programa.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "revkey" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4089,7 +4089,7 @@ msgstr "%d assinaturas removidas.\n" msgid "Nothing deleted.\n" msgstr "Nada removido.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "armadura invlida" @@ -6573,7 +6573,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "no necessria uma verificao da base de dados de confiana\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "proxima verificao da base de dados de confiana a %s\n" @@ -6588,7 +6588,7 @@ msgstr "n msgid "no need for a trustdb update with `%s' trust model\n" msgstr "no necessria uma verificao da base de dados de confiana\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "chave pblica %08lX no encontrada: %s\n" @@ -6601,35 +6601,35 @@ msgstr "" msgid "checking the trustdb\n" msgstr "a verificar a base de dados de confiana\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 #, fuzzy msgid "no ultimately trusted keys found\n" msgstr "" "chave pblica da chave absolutamente de confiana %08lX no encontrada\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" "chave pblica da chave absolutamente de confiana %08lX no encontrada\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "registo de confiana %lu, tipo %d: escrita falhou: %s\n" @@ -7138,16 +7138,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7869,12 +7869,12 @@ msgstr "|NOME|usar algoritmo de criptografia NOME" msgid "|NAME|use message digest algorithm NAME" msgstr "|NOME|usar algoritmo de \"digest\" de mensagens NOME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Uso: gpg [opes] [ficheiros] (-h para ajuda)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7885,56 +7885,56 @@ msgstr "" "assina, verifica, cifra ou decifra\n" "a operao por omisso depende dos dados de entrada\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "uso: gpg [opes] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "impossvel ligar a `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "destinatrio por omisso desconhecido `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = saltar esta chave\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "no consegui processar a URI do servidor de chaves\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "a escrever para `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossvel fechar `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 8f55c84fa..29751ea05 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2007-08-16 11:35+0200\n" "Last-Translator:\n" "Language-Team: ?\n" @@ -99,7 +99,7 @@ msgstr "frase secreta incorreta" msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritmo de proteo %d no suportado\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -109,12 +109,12 @@ msgstr "imposs #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" @@ -431,7 +431,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -448,145 +448,145 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: arquivo de opes padro `%s' inexistente\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de opes `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "lendo opes de `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, fuzzy, c-format msgid "error creating `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: impossvel criar diretrio: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossvel criar %s: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Certificado de revogao vlido" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro na criao da frase secreta: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "atualizao falhou: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escrevendo certificado privado para `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: diretrio criado\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "banco de dados de confiabilidade: leitura falhou (n=%d): %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossvel criar diretrio: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "atualizao da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves ignoradas\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, fuzzy, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -707,7 +707,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -719,19 +719,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "sim" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -743,7 +743,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -753,11 +753,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1623,7 +1623,7 @@ msgstr "Comando inv msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -2151,7 +2151,7 @@ msgstr "" "assina, verifica, criptografa ou descriptografa\n" "a operao padro depende dos dados de entrada\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2180,548 +2180,548 @@ msgstr "Coment msgid "usage: gpg [options] " msgstr "uso: gpg [opes] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "comandos conflitantes\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "alterna entre listagem de chave secreta e pblica" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: arquivo de opes padro `%s' inexistente\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no para uso normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossvel escrever para o chaveiro: %s\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 #, fuzzy msgid "invalid import options\n" msgstr "armadura invlida" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 #, fuzzy msgid "invalid export options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "armadura invlida" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um arquivo core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "escrevendo certificado privado para `%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 #, 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:3182 +#: g10/gpg.c:3209 #, 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) no recomendvel\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 #, fuzzy msgid "invalid default preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, 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:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nome_do_arquivo]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "descriptografia falhou: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_arquivo]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nome_do_arquivo]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_arquivo]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_arquivo]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id-usurio" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id-usurio" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usurio [comandos]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "enumerao de chaves secretas falhou: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record falhou: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "enumerao de chaves secretas falhou: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, 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:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash invlido `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nome_do_arquivo]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "V em frente e digite sua mensagem ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica dada invlida\n" @@ -4025,13 +4025,13 @@ msgid "" msgstr "" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "revkey" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4088,7 +4088,7 @@ msgstr "%d assinaturas removidas.\n" msgid "Nothing deleted.\n" msgstr "Nada removido.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "armadura invlida" @@ -6578,7 +6578,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "%s: no um banco de dados de confiabilidade\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, fuzzy, c-format msgid "next trustdb check due at %s\n" msgstr "insero de registro de confiana falhou: %s\n" @@ -6593,7 +6593,7 @@ msgstr "%s: n msgid "no need for a trustdb update with `%s' trust model\n" msgstr "%s: no um banco de dados de confiabilidade\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "chave pblica no encontrada" @@ -6607,33 +6607,33 @@ msgstr "" msgid "checking the trustdb\n" msgstr "muda os valores de confiana" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 #, fuzzy msgid "no ultimately trusted keys found\n" msgstr "Certificados que levam a uma chave confiada plenamente:\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "Certificados que levam a uma chave confiada plenamente:\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "registro de confiana %lu, tipo %d: escrita falhou: %s\n" @@ -7144,16 +7144,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7880,12 +7880,12 @@ msgstr "|NOME|usar algoritmo de criptografia NOME" msgid "|NAME|use message digest algorithm NAME" msgstr "|NOME|usar algoritmo de \"digest\" de mensagens NOME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Uso: gpgm [opes] [arquivos] (-h para ajuda)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7896,56 +7896,56 @@ msgstr "" "assina, verifica, criptografa ou descriptografa\n" "a operao padro depende dos dados de entrada\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "Uso: gpgm [opes] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "destinatrio padro desconhecido `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr "chave %08lX: subchave ignorada\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "impossvel escrever para o chaveiro: %s\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "escrevendo para `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/ro.po b/po/ro.po index a383e231e..5823317b5 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2005-05-31 22:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -98,7 +98,7 @@ msgstr "fraz msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritm rezumat %d nu este suportat\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -108,12 +108,12 @@ msgstr "nu pot crea `%s': %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nu pot deschide `%s': %s\n" @@ -436,7 +436,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -453,147 +453,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOT: nici un fiier opiuni implicit `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "fiier opiuni `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "citesc opiuni din `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "eroare la creearea `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nu pot crea directorul `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nu pot crea `%s': %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent nu este disponibil n aceast sesiune\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "eroare la obinere noului PIN: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eroare trimitere la `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizarea a euat: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scriu cheia secret n `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "director `%s' creat\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) a euat n %s: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nu pot crea director: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "eroare la citire `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizarea secretului a euat: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: srit: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nu este disponibil n aceast sesiune\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabila de mediu GPG_AGENT_INFO anormal\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -718,7 +718,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "eroare la citire `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -730,19 +730,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "da" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -754,7 +754,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -764,11 +764,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1599,7 +1599,7 @@ msgstr "Comand msgid "--output doesn't work for this command\n" msgstr "--output nu merge pentru aceast comand\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "nu pot deschide `%s'\n" @@ -2120,7 +2120,7 @@ msgstr "" "sign, check, encrypt sau decrypt\n" "operaiunea implicit depinde de datele de intrare\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2148,57 +2148,57 @@ msgstr "Compresie: " msgid "usage: gpg [options] " msgstr "folosire: gpg [opiuni] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "comenzi n conflict\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "nu am gsit nici un semn = n definiia grupului `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "AVERTISMENT: proprietate nesigur (unsafe) pentru directorul home `%s'\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "AVERTISMENT: proprietate nesigur (unsafe) pentru fiier configurare `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVERTISMENT: proprietate nesigur (unsafe) pentru extensia `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" "AVERTISMENT: permisiuni nesigure (unsafe) pentru directorul home `%s'\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "AVERTISMENT: permisiuni nesigure (unsafe) pentru fiier configurare `%s'\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVERTISMENT: permisiuni nesigure (unsafe) pentru extensia `%s'\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru " "directorul home `%s'\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2206,21 +2206,21 @@ msgstr "" "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru fiier " "configurare `%s'\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru " "extensia `%s'\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru " "directorul home `%s'\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2228,471 +2228,471 @@ msgstr "" "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru fiier " "configurare `%s'\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru " "extensia `%s'\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "articol configurare necunoscut `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "Nici o semntur corespunztoare n inelul secret\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "arat cruia dintre inelele de chei i aparine o cheie enumerat" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nici o semntur corespunztoare n inelul secret\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOT: fisier opiuni implicite vechi `%s' ignorat\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOT: %s nu este pentru o folosire normal!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nu este un set de carectere valid\n" # -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "nu am putut interpreta URL-ul serverului de chei\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opiuni server de chei invalide\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "opiuni server de chei invalide\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opiuni import invalide\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "opiuni import invalide\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opiuni export invalide\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "opiuni export invalide\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opiuni enumerare invalide\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "opiuni enumerare invalide\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opiuni verificare invalide\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "opiuni verificare invalide\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nu pot seta cale-execuie ca %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opiuni verificare invalide\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "AVERTISMENT: programul ar putea crea un fiier core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTISMENT: %s nlocuiete %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s nu este permis cu %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nu are sens cu %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "algoritm cifrare selectat este invalid\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "algoritm rezumat selectat este invalid\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "algoritm compresie selectat este invalid\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritm rezumat certificare selectat este invalid\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed trebuie s fie mai mare dect 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed trebuie s fie mai mare dect 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOT: modul S2K simplu (0) este contraindicat cu insisten\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "preferine implicite invalide\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "preferine cifrare personale invalide\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "preferine rezumat personale invalide\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "preferine compresie personale invalide\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s nu merge nc cu %s!\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "am euat s iniializez TrustDB:%s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [nume_fiier]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [nume_fiier]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "cifrarea simetric a lui `%s' a euat: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [nume_fiier]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nume_fiier]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [nume_fiier]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nume_fiier]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nume_fiier]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nume_fiier]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [nume_fiier]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [nume_fiier]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id-utilizator" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizator" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizator [comenzi]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "trimitere server de chei euat: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepie server de chei euat: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "export cheie euat: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "cutare server de chei euat: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizare server de chei euat: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminarea armurii a euat: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "punerea armurii a euat: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritm hash invalid `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[nume_fiier]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Dai-i drumul i scriei mesajul ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "URL-ul politicii de certificare furnizat este invalid\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "URL-ul politicii de semnturi furnizat este invalid\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" @@ -3960,12 +3960,12 @@ msgstr "" # #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "revocat" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "expirat" @@ -4025,7 +4025,7 @@ msgstr "Am msgid "Nothing deleted.\n" msgstr "Nu am ters nimic.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "invalid()" @@ -6474,7 +6474,7 @@ msgstr "suprem msgid "no need for a trustdb check\n" msgstr "nu e nevoie de o verificare trustdb\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "urmtoarea verificare trustdb programat pe %s\n" @@ -6489,7 +6489,7 @@ msgstr "nu e nevoie de o verificare trustdb cu modelul de msgid "no need for a trustdb update with `%s' trust model\n" msgstr "nu e nevoie de o actualizare trustdb cu modelul de ncredere `%s'\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "cheia public %s nu a fost gsit: %s\n" @@ -6502,34 +6502,34 @@ msgstr "v msgid "checking the trustdb\n" msgstr "verific trustdb\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d chei procesate (%d numrtori valide anulate)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "nu am gsit nici o cheie cu ncredere suprem\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "cheia public a cheii cu ncredere suprem %s nu a fost gsit\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" "%d marginal(e) necesare, %d complet(e) necesare, model de ncredere %s\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "adnc: %d valid: %3d semnat: %3d ncredere: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7036,16 +7036,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7766,12 +7766,12 @@ msgstr "|NUME|folose msgid "|NAME|use message digest algorithm NAME" msgstr "|NUME|folosete algoritm rezumat mesaj NUME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Folosire: gpg [opiuni] [fiiere] (-h pentru ajutor)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7782,57 +7782,57 @@ msgstr "" "sign, check, encrypt sau decrypt\n" "operaiunea implicit depinde de datele de intrare\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "folosire: gpg [opiuni] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "nu m pot conecta la `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "opiune necunoscut `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(Nici o descriere dat)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = sri peste cheia asta\n" # -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "nu am putut interpreta URL-ul serverului de chei\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "nu pot accesa `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index b6f563c93..1e565c6c9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 2.0.10\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2008-12-21 00:40+0200\n" "Last-Translator: Maxim Britov \n" "Language-Team: Russian \n" @@ -90,7 +90,7 @@ msgstr "Фраза-пароль" msgid "ssh keys greater than %d bits are not supported\n" msgstr "не поддерживаются ssh ключи превышающие %d бит\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -100,12 +100,12 @@ msgstr "не могу создать `%s': %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "не могу открыть `%s': %s\n" @@ -424,7 +424,7 @@ msgstr "|FILE|сохранить состояние окружения и в ф #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 msgid "Please report bugs to <@EMAIL@>.\n" msgstr "О найденных ошибка сообщайте <@EMAIL@>.\n" @@ -441,144 +441,144 @@ msgstr "" "Синтаксис: gpg-agent [параметры] [команда [аргументы]]\n" "Управление закрытыми ключами для GnuPG\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "запрошен недупустимый уровень отладки `%s'\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "%s слишком устарело (требуется %s, имеется %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "ЗАМЕЧАНИЕ: файл конфигурации `%s' не обнаружен\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "файл конфигурации `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "параметры конфигурации из файла `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "ошибка создания `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "не могу создать каталог `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "имя сокета слишком длинное\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "не могу создать сокет: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "имя сокета `%s' слишком длинное\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent уже запущен - еще один, новый, запущен не будет\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 msgid "error getting nonce for the socket\n" msgstr "" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "ошибка связывния сокета с `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "слушаем сокет `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "создан каталог `%s'\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "невозможно использовать `%s' как домашний каталог\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s: остановлен\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "нет gpg-agent доступого для данной сессии\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "неправильная переменная окружения GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -700,7 +700,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "ошибка чтения `%s', строка %d: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "ошибка чтения списка доверяемых корневых сертификатов\n" @@ -712,7 +712,7 @@ msgstr "ошибка чтения списка доверяемых корнев #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " @@ -721,11 +721,11 @@ msgstr "" "Действительно абсолютно доверять%%0A \"%s\"%%0Aкорректно подписанным " "сертификатам пользователя?" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "Да" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "Нет" @@ -737,7 +737,7 @@ msgstr "Нет" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -749,11 +749,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "Подтверждаю" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "Недопустимая команда (список команд: \"h msgid "--output doesn't work for this command\n" msgstr "--output не работает для данной команды\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "не могу открыть `%s'\n" @@ -2062,7 +2062,7 @@ msgstr "" "Подписи и их проверка, зашифрование и расшифрование.\n" "Действие по умолчанию зависит от входных данных.\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2090,72 +2090,72 @@ msgstr " алгоритмы сжатия: " msgid "usage: gpg [options] " msgstr "использование: gpg [параметры] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "несовместимые команды\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "отсутствует знак = в определении группы `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ВНИМАНИЕ: небезопасный владелец домашнего каталога `%s'\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ВНИМАНИЕ: небезопасный владелец файла конфигурации `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ВНИМАНИЕ: небезопасный владелец файла модуля расширения `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ВНИМАНИЕ: небезопасные права доступа у домашнего каталога `%s'\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ВНИМАНИЕ: небезопасные права доступа у файла конфигурации `%s'\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ВНИМАНИЕ: небезопасные права доступа у файла модуля расширения `%s'\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасный владелец каталога содержащего домашний каталог `%s'\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасный владелец каталога содержащего файл конфигурации `%s'\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасный владелец каталога содержащего модуль расширения `%s'\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасные права доступа у каталога содержащего домашний каталог " "`%s'\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2163,460 +2163,460 @@ msgstr "" "ВНИМАНИЕ: небезопасные права доступа у каталога содержащего файл " "конфигурации `%s'\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасные права доступа у каталогу содержащего файл модуля " "расширения `%s'\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "неизвестный параметр в файле конфигурации `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "отображать Фото ID при распечатке ключей" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "показывать ссылку на политики при распечатке подписей" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "показывать все примечания при распечатке подписей" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "показывать стандартные IETF примечания при распечатке подписей" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" "показывать добавленные пользователем примечания при распечатке подписей" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "показывать предпочитаемый сервер ключей при распечатке подписей" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "показывать действительность Used ID при распечатке ключей" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "показывать отозванные и просроченные User ID при распечатке ключей" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "показывать отозванные и просроченные ключи при распечатке ключей" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "печатать имя таблиц ключей при распечатке ключей" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "печатать даты истечения при распечатке подписей" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "ЗАМЕЧАНИЕ: старый файл конфигурации по умолчанию `%s' проигнорирован\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libcrypt слишком старой версии (требуется %s, обнаружено %s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "ЗАМЕЧАНИЕ: %s не предназначен для обычного применения!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' недопустимая таблица символов\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "не могу проанализировать URL сервера ключей\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недопустимые параметры импорта\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "недопустимые параметры импорта\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недопустимые параметры экспорта\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "недопустимые параметры экспорта\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недопустимый список параметров\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "недопустимый список параметров\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "отображать Фото ID при проверке подписи" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "печатать ссылку на политики при проверке подписи" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "печатать все примечания в процессе проверки подписей" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "печатать стандартные IETF примечания в процессе проверки подписей" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "печатать добавленные пользователем примечания при проверке подписей" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "печатать предпочитаемые серверы ключей при проверке подписей" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "печатать действительность UserID при проверке подписей" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "печатать отозванные и просроченные User ID при проверке подписей" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "печатать только главный User ID при проверке подписей" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недопустимые параметры проверки \n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "недопустимые параметры проверки\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не могу определить путь запуска для %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недопустимый список auto-key-locate\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "недопустимый список auto-key-locate\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "ВНИМАНИЕ: возможно создание файла дампа памяти программы!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ВНИМАНИЕ: %s заместит %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не допускается использовать с %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s не имеет смысла совместно с %s!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "не будет работать с небезопасной памятью из-за %s\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "можно сделать только отделенную или прозрачную подпись в режиме --pgp2\n" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Нельзя одновременно подписать и зашифровать в режиме --pgp2\n" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Следует использовать файлы (а не каналы (pipe)) в режиме --pgp2.\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "для зашифрования сообщения в режиме --pgp2 требуется шифр IDEA\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "выбран неверный алгоритм шифрования\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "выбран неверный алгоритм сжатия\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция для сертификации\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed должен быть больше 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed должен быть больше 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth должен быть в диапазоне от 1 до 255\n" -#: g10/gpg.c:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "недопустимый min-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "ЗАМЕЧАНИЕ: простой режим S2K (0) строго не рекомендуется\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "недопустимый режим S2K; должно быть 0, 1 или 3\n" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "недопустимые предпочтения по умолчанию\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "недопустимые персональные предпочтения шифра\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "недопустимые персональные предпочтения хэш-функции\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "недопустимые персональные предпочтения алгоритмов сжатия\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s пока не работает совместно с %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "нельзя использовать шифрование `%s' в режиме %s\n" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "нельзя использовать хэш-функцию `%s' в режиме %s\n" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "нельзя использовать сжатие `%s' в режиме %s\n" -#: g10/gpg.c:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "сбой инициализации таблицы доверий: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым " "ключом\n" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [файл]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [файл]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "симметричное шифрование `%s' не удалось: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [файл]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [файл]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "нельзя использовать --symmetric --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --encrypt в режиме %s\n" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [файл]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [файл]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [файл]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --sign --encrypt в режиме %s\n" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [файл]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [файл]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [файл]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [команды]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "сбой при отправке на сервер ключей: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "сбой при получении с сервера ключей: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "сбой при экспорте ключа: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "сбой при поиске на сервере ключей: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "сбой при обновлении с сервера ключей: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "ошибка преобразования из ASCII формата: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "ошибка преобразования в ASCII формат: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "недопустимая хэш-функция `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[имяфайла]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Набирайте Ваше сообщение ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "заданный URL политики сертификации неверен\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "заданный URL политики подписи неверен\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "заданный URL предпочитаемого сервера ключей неправилен\n" @@ -3864,12 +3864,12 @@ msgstr "" "пока программа не будет перезапущена.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "отозван" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "просрочен с" @@ -3928,7 +3928,7 @@ msgstr "Удалено %d подписи.\n" msgid "Nothing deleted.\n" msgstr "Ничего не удалено.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "недопустимый" @@ -6353,7 +6353,7 @@ msgstr "абсолютно" msgid "no need for a trustdb check\n" msgstr "нет необходимости в проверке таблицы доверий\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "срок следующей проверки таблицы доверий %s\n" @@ -6368,7 +6368,7 @@ msgstr "нет необходимости проверять таблицу до msgid "no need for a trustdb update with `%s' trust model\n" msgstr "нет необходимости обновлять таблицу доверий при '%s' модели доверий\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "открытый ключ %s не найден: %s\n" @@ -6381,27 +6381,27 @@ msgstr "выполните --check-trustdb, пожалуйста\n" msgid "checking the trustdb\n" msgstr "проверка таблицы доверий\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d ключей обработано (%d действующих записей очищено)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "не найдено абсолютно доверяемых ключей\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "открытый ключ для абсолютно доверяемого ключа %s не найден\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" "%d ограниченных необходимо, %d выполненных необходимо, %s модель доверия\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6409,7 +6409,7 @@ msgstr "" "глубина: %d корректных: %3d подписанных: %3d доверия: %d-, %dq, %dn, %dm, " "%df, %du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6903,17 +6903,17 @@ msgstr "" "Синтаксис: scdaemon [параметры] [команда [аргументы]]\n" "Демон смарткарт для GnuPG\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" "Используйте параметр `--daemon' для запуска приложения в фоновом режиме\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "обработчик fd %d запущен\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "обработчик fd %d остановлен\n" @@ -7594,11 +7594,11 @@ msgstr "|NAME|использовать алгоритм шифрования NAM msgid "|NAME|use message digest algorithm NAME" msgstr "|NAME|использовать хеш-функцию NAME" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Использование: gpgsm [параметры] [файлы] (-h для подсказки)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7609,54 +7609,54 @@ msgstr "" "протокол\n" "операция по умолчанию зависит от входных данных\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "использование: gpgsm [параметры] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "Замечание: не могу зашифровать для `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "%s:%u: не обрабатываем эту строку\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 msgid "could not parse keyserver\n" msgstr "" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "ВНИМАНИЕ: выполняемся с подделанным системным временем: " -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "невозможно подписать используя `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/sk.po b/po/sk.po index 2e0d443ab..4f3e41394 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: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer \n" "Language-Team: Slovak \n" @@ -91,7 +91,7 @@ msgstr "nespr msgid "ssh keys greater than %d bits are not supported\n" msgstr "ochrann algoritmus %d%s nie je podporovn\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -101,12 +101,12 @@ msgstr "nem #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nemem otvori `%s': %s\n" @@ -422,7 +422,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -441,147 +441,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn sbor s monosami `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "sbor s monosami `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "tam monosti z `%s'\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "chyba pri vytvran `%s': %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemem vytvori adresr `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: nemem vytvori: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent nie je v tomto seden dostupn\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "chyba pri vytvran hesla: %s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba pri posielan na `%s': %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizcia zlyhala: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisujem tajn k do `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: adresr vytvoren\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "databza dvery: procedra read() (n=%d) zlyhala: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nemem vytvori adresr: %s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "chyba pri tan `%s': %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizcia tajnho ka zlyhala: %s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: preskoen: %s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nie je v tomto seden dostupn\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "zl formt premennej prostredia GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -703,7 +703,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "chyba pri tan `%s': %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -715,19 +715,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "ano" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -739,7 +739,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -749,11 +749,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1612,7 +1612,7 @@ msgstr "Neplatn msgid "--output doesn't work for this command\n" msgstr "--output pre tento prkaz nefunguje\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "nemono otvori `%s'\n" @@ -2144,7 +2144,7 @@ msgstr "" "podpsa, overi, ifrova alebo deifrova\n" "implicitn opercie zvisia od vstupnch dt\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2172,545 +2172,545 @@ msgstr "Kompresia: " msgid "usage: gpg [options] " msgstr "pouitie: gpg [monosti] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "konfliktn prkazy\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no = podpis njden v defincii skupiny \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "VAROVANIE: vlastnctvo adresra %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "VAROVANIE: vlastnctvo adresra %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "VAROVANIE: vlastnctvo adresra %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "VAROVANIE: prstupov prva adresra %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "" "VAROVANIE: prstupov prva adresra %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "VAROVANIE: prstupov prva adresra %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "neznma poloka konfigurcie \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 #, fuzzy msgid "show all notations during signature listings" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 #, fuzzy msgid "show the keyring name in key listings" msgstr "uk v ktorom sbore kov je vypsan k" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 #, fuzzy msgid "show expiration dates during signature listings" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn sbor s monosami `%s ignorovan'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZNMKA: %s nie je pre normlne pouitie!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nemono poui URI servera kov - chyba analzy URI\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 #, fuzzy msgid "invalid keyserver options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn parameter pre import\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "neplatn parameter pre import\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn parameter pre import\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 #, fuzzy msgid "invalid list options\n" msgstr "neplatn parameter pre import\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 #, fuzzy msgid "invalid verify options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nemono nastavi exec-path na %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "VAROVANIE: program me vytvori sbor core!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVANIE: %s prepe %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie je dovolen pouva %s s %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedva s %s zmysel!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "zapisujem tajn k do `%s'\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "poloka completes-needed mus by via ako 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus by via ako 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 #, 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNMKA: jednoduch md S2K (0) je drazne nedoporuovan\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "neplatn defaultn predvoby\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "neplatn uvatesk predvoby pre ifrovanie\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "neplatn uvatesk predvoby pre hashovanie\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "neplatn uvatesk predvoby pre kompresiu\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ete nepracuje s %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemem inicializova databzu dvery: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [meno sboru]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [meno sboru]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "deifrovanie zlyhalo: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [meno sboru]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [meno sboru]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [meno sboru]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [meno sboru]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [meno sboru]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key id uvatea" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key id uvatea" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uvatea [prkazy]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "nepodarilo posla k na server: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "nepodarilo sa prija k zo servera: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "nepodaril sa export ka: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "nepodarilo sa njs server: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aktualizcia servera zlyhala: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovanie z ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovanie do ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn hashovac algoritmus `%s'\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[meno sboru]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Zanite psa svoju sprvu ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pre certifikan politiku je neplatn\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan URL pre podpisov politiku je neplatn\n" @@ -4032,13 +4032,13 @@ msgstr "" "by sprvne, pokia znovu nespustte program.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 #, fuzzy msgid "revoked" msgstr "[revokovan]" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 #, fuzzy msgid "expired" msgstr "expire" @@ -4098,7 +4098,7 @@ msgstr "Zmazan msgid "Nothing deleted.\n" msgstr "Ni nebolo zmaznan.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 #, fuzzy msgid "invalid" msgstr "neplatn spsob reprezentcie v ASCII" @@ -6584,7 +6584,7 @@ msgstr "" msgid "no need for a trustdb check\n" msgstr "nie je nutn kontrolova databzu dvery\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "dalia kontrola databzy dvery %s\n" @@ -6599,7 +6599,7 @@ msgstr "nie je nutn msgid "no need for a trustdb update with `%s' trust model\n" msgstr "nie je nutn kontrolova databzu dvery\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, fuzzy, c-format msgid "public key %s not found: %s\n" msgstr "verejn k %08lX nebol njden: %s\n" @@ -6612,32 +6612,32 @@ msgstr "pros msgid "checking the trustdb\n" msgstr "kontrolujem databzu dvery\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d kov spracovanch (%d potov platnosti vymazanch)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "neboli njden iadne absoltne dveryhodn ke\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "verejn k k absoltne dveryhodnmu ku %08lX nebol njden\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "zznam dvery %lu, typ %d: zpis zlyhal: %s\n" @@ -7146,16 +7146,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7876,12 +7876,12 @@ msgstr "|ALG|pou msgid "|NAME|use message digest algorithm NAME" msgstr "|ALG|poui hashovac algoritmus ALG" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Pouitie: gpg [monosti] [sbory] (-h pre pomoc)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7892,56 +7892,56 @@ msgstr "" "podpsa, overi, ifrova alebo deifrova\n" "implicitn opercie zvisia od vstupnch dt\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "pouitie: gpg [monosti] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "nemem sa pripoji k `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "neznmy implicitn adrest `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(iadny popis)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = preskoi tento k\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "nemono poui URI servera kov - chyba analzy URI\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "zapisujem do '%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "nemem zavrie `%s': %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index 5eec45e7f..688ecf808 100644 --- a/po/sv.po +++ b/po/sv.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg trunk\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2008-07-21 09:04+0200\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -115,7 +115,7 @@ msgstr "Lösenfras" msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh-nycklar större än %d bitar stöds inte\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -125,12 +125,12 @@ msgstr "kan inte skapa \"%s\": %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "kan inte öppna \"%s\": %s\n" @@ -448,7 +448,7 @@ msgstr "|FIL|skriv miljöinställningar även till FIL" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -466,145 +466,145 @@ msgstr "" "Syntax: gpg-agent [flaggor] [kommando [argument]]\n" "Hantering av hemliga nycklar för GnuPG\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "ogiltig debug-level \"%s\" angiven\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "%s är för gammal (behöver %s, har %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "OBS: inställningsfilen \"%s\" saknas\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "inställningsfil \"%s\": %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "läser inställningar från \"%s\"\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "Fel när \"%s\" skapades: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan inte skapa katalog: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "namnet på uttaget är för långt\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "kan inte skapa uttag: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "namnet på uttaget \"%s\" är för långt\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "en gpg-agent är redan igång - startar inte en till\n" # Jag har valt att inte översätta nonce. Nonce är data eller information som endast används en gång -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 msgid "error getting nonce for the socket\n" msgstr "fel vid hämtning av nonce för uttaget\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "fel när \"%s\" bands till uttag: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "listen() misslyckades: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "lyssnar på uttaget \"%s\"\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "katalogen \"%s\" skapades\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat() misslyckades för \"%s\": %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "kan inte använda \"%s\" som hemkatalog\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fel vid läsning av nonce på fd %d: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "hanteraren 0x%lx för fd %d startad\n" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "hanteraren 0x%lx för fd %d avslutad\n" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "ssh-hanteraren 0x%lx för fd %d startad\n" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "ssh-hanteraren 0x%lx för fd %d avslutad\n" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select misslyckades: %s - väntar 1 s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s stoppad\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "ingen gpg-agent kör i den här sessionen\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "miljövariabeln GPG_AGENT_INFO är felformaterad\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -729,7 +729,7 @@ msgstr "ogiltig nyckelflagga i \"%s\", rad %d\n" msgid "error reading `%s', line %d: %s\n" msgstr "fel vid läsning av \"%s\", rad %d: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "fel vid inläsning av betrodda rotcertifikat\n" @@ -741,7 +741,7 @@ msgstr "fel vid inläsning av betrodda rotcertifikat\n" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " @@ -750,11 +750,11 @@ msgstr "" "Litar du förbehållslöst på%%0A \"%s\"%%0Aatt korrekt certifiera " "användarcertifikat?" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "Ja" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "Nej" @@ -766,7 +766,7 @@ msgstr "Nej" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -778,11 +778,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "Korrekt" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1600,7 +1600,7 @@ msgid "--output doesn't work for this command\n" msgstr "--output kan inte användas för detta kommando\n" # se förra kommentaren -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "kan inte öppna \"%s\"\n" @@ -2120,7 +2120,7 @@ msgstr "" "signera, kontrollera, kryptera eller dekryptera\n" "standardåtgärden beror på inmatningsdata\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2148,54 +2148,54 @@ msgstr "Komprimering: " msgid "usage: gpg [options] " msgstr "användning: gpg [flaggor] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "motstridiga kommandon\n" # Vad betyder detta? -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no = signatur hittad i gruppdefinitionen \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "VARNING: osäkert ägarskap på hemkatalogen \"%s\"\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "VARNING: osäkert ägarskap på konfigurationsfilen \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "VARNING: osäkert ägarskap på tillägget \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "VARNING: osäkra rättigheter på hemkatalogen \"%s\"\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "VARNING: osäkra rättigheter på konfigurationsfilen \"%s\"\n" # Extension är vad? FIXME -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VARNING: osäkra rättigheter på tillägget \"%s\"\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för hemkatalogen \"%s\"\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -2203,19 +2203,19 @@ msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för konfigurationsfilen \"%" "s\"\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för tillägget \"%s\"\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för hemkatalogen \"%s\"\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -2223,470 +2223,470 @@ msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för konfigurationsfilen " "\"%s\"\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för tillägget \"%s\"\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "okänd konfigurationspost \"%s\"\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "visa foto-id under nyckellistning" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "visa policy-url:er under signaturlistningar" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "visa alla notationer under signaturlistningar" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "visa IETF-standardnotationer under signaturlistningar" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "visa användarangivna notationer under signaturlistningar" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "visa url:er till föredragna nyckelservrar under signaturlistningar" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "visa giltighet för användaridentitet vid nyckellistningar " -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "visa spärrade och utgångna användaridentiteter i nyckellistningar" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "visa spärrade och utgångna undernycklar i nyckellistningar" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "visa nyckelringens namn i nyckellistningar" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "visa utgångsdatum under signaturlistningar" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt är för gammalt (behöver %s, har %s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, 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:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, 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:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "\"%s\" är ingen giltig teckentabell\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "kunde inte tolka url till nyckelserver\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ogiltiga importeringsflaggor\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "ogiltiga importflaggor\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ogiltiga exportflaggor\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "ogiltiga exportinställningar\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ogiltiga listflaggor\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "ogiltiga listflaggor\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "visa foto-id under signaturvalidering" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "visa policy-url:er under signaturvalidering" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "visa alla notationer under signaturvalidering" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "visa IETF-standardnotationer under signaturvalidering" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "visa användarangivna notationer under signaturvalidering" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "visa url:er till föredragna nyckelserver under signaturvalidering" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "visa giltighet för användaridentitet vid signaturvalidering" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "visa spärrade och utgångna användaridentiteter i signaturvalidering" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "visa endast primär användaridentitet i signaturvalidering" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "validera signaturer med PKA-data" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "öka tillit på signaturer med giltigt PKA-data" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ogiltiga flaggor för validering\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "ogiltiga flaggor för validering\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, 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:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ogiltig auto-key-locate-lista\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 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:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "VARNING: programmet kan komma att skapa en minnesavbild!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VARNING: %s gäller istället för %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s är inte tillåten tillsammans med %s!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, 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:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 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:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "den valda chifferalgoritmen är ogiltig\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "vald sammandragsalgoritm är ogiltig\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "vald komprimeringsalgoritm är ogiltig\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 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:3174 +#: g10/gpg.c:3201 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:3176 +#: g10/gpg.c:3203 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:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "OBS: enkelt S2K-läge (0) rekommenderas inte\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 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:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "ogiltig inställning av personligt chiffer\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "ogiltig inställning av föredragna kontrollsummealgoritmer\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "ogiltig inställning av föredragna kompressionsalgoritmer\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s fungerar ännu inte med %s\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, 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:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [filnamn]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [filnamn]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av \"%s\" misslyckades: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [filnamn]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnamn]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [filnamn]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnamn]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnamn]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnamn]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [filnamn]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [filnamn]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key användaridentitet" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key användaridentitet" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key användaridentitet [kommandon]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "sändning till nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "hämtning från nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "export av nyckeln misslyckades: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "sökning på nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "uppdatering av nyckeln från en nyckelserver misslyckades: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "misslyckades med att ta bort ASCII-skalet: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "misslyckades med att skapa ASCII-skal: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ogiltig kontrollsummealgoritm \"%s\"\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[filnamn]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "Skriv ditt meddelande här ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "den angivna URL som beskriver certifieringsspolicy är ogiltig\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "den angivna URL som beskriver signaturpolicy är ogiltig\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angivna föredragna nyckelserver-url:n är ogiltig\n" @@ -3961,12 +3961,12 @@ msgstr "" "såvida inte du startar om programmet.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "spärrad" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "utgånget" @@ -4027,7 +4027,7 @@ msgstr "Raderade %d signaturer.\n" msgid "Nothing deleted.\n" msgstr "Ingenting raderat.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "ogiltigt" @@ -6528,7 +6528,7 @@ msgstr "förbehållslös" msgid "no need for a trustdb check\n" msgstr "det behövs ingen kontroll av tillitsdatabasen\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "nästa kontroll av tillitsdatabasen kommer att äga rum %s\n" @@ -6545,7 +6545,7 @@ msgid "no need for a trustdb update with `%s' trust model\n" msgstr "" "det behövs ingen uppdatering av tillitsdatabasen med tillitsmodellen \"%s\"\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "publika nyckeln %s hittades inte: %s\n" @@ -6560,33 +6560,33 @@ msgid "checking the trustdb\n" msgstr "kontrollerar tillitsdatabasen\n" # Vad är detta!? -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d nycklar behandlade (%d validity counts rensade)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "hittade inga nycklar med förbehållslöst förtroende\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "publik nyckel för förbehållslöst betrodda nyckeln %s hittades inte\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "%d marginal(er) behövs, %d fullständig(a) behövs, tillitsmodell %s\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "djup: %d giltig: %3d signerad: %3d tillit: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7090,16 +7090,16 @@ msgstr "" "Syntax: scdaemon [flaggor] [kommando [argument]]\n" "Smartkortsdemon för GnuPG\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "använd flaggan \"--daemon\" för att köra programmet i bakgrunden\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "hanterare för fd %d startad\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "hanterare för fd %d avslutad\n" @@ -7787,12 +7787,12 @@ msgstr "|NAMN|använd chifferalgoritmen NAMN" msgid "|NAME|use message digest algorithm NAME" msgstr "|NAMN|använd sammandragsalgoritmen NAMN" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Användning: gpgsm [flaggor] [filer] (-h för hjälp)" # Om inget kommando anges (decrypt/encrypt etc) väljs åtgärd efter indata. -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7802,54 +7802,54 @@ msgstr "" "signera, kontrollera, kryptera eller dekryptera med S/MIME-protokollet\n" "standardåtgärden beror på inmatningsdata\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "användning: gpgsm [flaggor] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "OBSERVERA: kommer inte att kunna kryptera till \"%s\": %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "okänd valideringsmodell \"%s\"\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "%s:%u: inget värdnamn angivet\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "%s:%u: lösenord angivet utan användare\n" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "%s:%u: hoppar över denna rad\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 msgid "could not parse keyserver\n" msgstr "kunde inte tolka nyckelserver\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "VARNING: kör med falsk systemtid: " -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "importerar vanliga certifikat \"%s\"\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "kan inte signera med \"%s\": %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "ogiltigt kommando (det finns inget implicit kommando)\n" diff --git a/po/tr.po b/po/tr.po index aad7157ac..35a68bb36 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 2.0.10rc1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2008-12-14 23:25+0200\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish\n" @@ -92,7 +92,7 @@ msgstr "Anahtar Parolası" msgid "ssh keys greater than %d bits are not supported\n" msgstr "%d bitlikten daha büyük SSH anahtarları desteklenmiyor\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -102,12 +102,12 @@ msgstr "\"%s\" oluşturulamıyor: %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "`%s' açılamıyor: %s\n" @@ -420,7 +420,7 @@ msgstr "|DOSYA|ortam ayarlarını ayrıca DOSYAya da yazar" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -438,144 +438,144 @@ msgstr "" "Sözdizimi: gpg-agent [seçenekler] [komut [arg ...]]\n" "GnuPG için gizli anahtar yönetimi\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "belirtilen hata seviyesi `%s' geçersiz\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "%s çok eski (gereken %s, sizinki %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "BİLGİ: \"%s\" öntanımlı seçenek dosyası yok\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "seçenek dosyası \"%s\": %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "\"%s\"den seçenekler okunuyor\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "`%s' oluşturulurken hata: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "`%s' dizini oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "soketin ismi çok uzun\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "soket oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "soketin ismi `%s' çok uzun\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "çalışan bir gpg-agent zaten var - bir yenisi başlatılmayacak\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 msgid "error getting nonce for the socket\n" msgstr "soket için tuz alınırken hata\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "soket `%s'e bağlanırken hata: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "soket dinleme başarısız: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "`%s' soketi dinlemede\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "dizin `%s' oluşturuldu\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "%s için stat() başarısız oldu: %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "`%s' ev dizini olarak kullanılamıyor\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fd %d üzerinde tuz okunurken hata: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "tutamak 0x%lx, fd %d için başlatıldı\n" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "tutamak 0x%lx, fd %d için sonlandırıldı\n" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "ssh tutamağı 0x%lx, fd %d için başlatıldı\n" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "ssh tutamağı 0x%lx, fd %d için sonlandırıldı\n" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select başarısız: %s - 1s bekliyor\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s durdu\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "bu oturumda çalışan gpg-agent yok\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO çevre değişkeni hatalı\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -700,7 +700,7 @@ msgstr "`%s', %d. satırda anahtar bayrağı geçersiz\n" msgid "error reading `%s', line %d: %s\n" msgstr "`%s' okunurken %d. satırda hata: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "güvenilir kök sertifika listesinin okunmasında hata\n" @@ -712,7 +712,7 @@ msgstr "güvenilir kök sertifika listesinin okunmasında hata\n" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " @@ -721,11 +721,11 @@ msgstr "" "Kullanıcı sertifikalarının%%0A \"%s\"%%0Aile doğru olarak onaylanacağından " "son derece emin misiniz?" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "Evet" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "Hayır" @@ -737,7 +737,7 @@ msgstr "Hayır" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -749,11 +749,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "Doğru" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "Komut geçersiz (\"help\" komutunu deneyin)\n" msgid "--output doesn't work for this command\n" msgstr "--output seçeneği bu komutla çalışmaz\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "`%s' açılamadı\n" @@ -2069,7 +2069,7 @@ msgstr "" "imzalama, kontrol, şifreleme veya çözme\n" "öntanımlı işlem girilen veriye bağımlıdır\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2097,529 +2097,529 @@ msgstr "Sıkıştırma: " msgid "usage: gpg [options] " msgstr "kullanımı: gpg [seçenekler] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "çelişen komutlar\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "grup tanımı '%s' içinde = işareti yok\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "UYARI: '%s' evdizininde güvensiz iyelik\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasında güvensiz iyelik\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "UYARI: '%s' eklentisinde güvensiz iyelik\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "UYARI: UYARI: '%s' evdizininde güvensiz izinler\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasında güvensiz izinler\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "UYARI: '%s' eklentisinde güvensiz izinler\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "UYARI: '%s' evdizinindeki ilgili dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasını içeren dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "UYARI: '%s' eklentisini içeren dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "UYARI: '%s' evdizinindeki ilgili dizinin izinleri güvensiz\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasını içeren dizinin izinleri güvensiz\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "UYARI: '%s' eklentisini içeren dizinin izinleri güvensiz\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "yapılandırma öğesi '%s' bilinmiyor\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "anahtarların listelenmesi sırasında foto kimliklerini gösterir" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "imza listelemesi sırasında poliçe URLleri gösterilir" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "imza listelemesi sırasında tüm simgelemi gösterir" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "imza listelemesi sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "imza listelemesi sırasında kullanıcı kanaklı simgelemleri gösterir" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "" "imza listelemesi sırasında tercih edilen anahtar sunucusu adresi gösterilir" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "anahtar listelemesi sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "" "anahtar listelerinde yürürlükten kaldırılmış ve zamanaşımına uğramış " "kullanıcı kimlikleri gösterilir" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "" "anahtar listelerinde yürürlükten kaldırılmış ve zamanaşımına uğramış " "yardımcı anahtarlar gösterilir" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "anahtar zinciri ismini anahtar listelerinde gösterir" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "imza listelemesi sırasında zamanaşımı tarihleri gösterilir" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, 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:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt çok eski (%s lazım, sizinki %s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, 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:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "'%s' geçerli bir imza zamanaşımı değil\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, 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:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "anahtar sunucusunun adresi çözümlenemedi\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: geçersiz içselleştirme seçenekleri\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "içselleştirme seçenekleri geçersiz\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d geçersiz dışsallaştırma seçenekleri\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "dışsallaştırma seçenekleri geçersiz\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: liste seçenekleri geçersiz\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "liste seçenekleri geçersiz\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "imza doğrulaması sırasında foto kimliklerini gösterir" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "imza doğrulaması sırasında poliçe adreslerini gösterir" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "imza doğrulaması sırasında tüm simgelemi gösterir" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "imza doğrulaması sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kaynaklı simgelemleri gösterir" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "" "imza doğrulaması sırasında tercih edilen anahtar sunucusu adresleri " "gösterilir" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "" "imza doğrulamasında yürürlükten kaldırılan ve zamanaşımına uğrayan kullanıcı " "kimlikleri gösterilir" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "imza doğrulamasında sadece birincil kullanıcı kimlik gösterilir" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "imzaları PKA verisi ile doğrular" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "imzaların güvenilirliğini geçerli PKA verisi ile yükseltir" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, 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:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "UYARI: program bir \"core\" dosyası oluşturabilir!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "UYARI: %s %s'i aşıyor\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ile %s birlikte kullanılmaz!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s, %s ile etkisiz olur!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, 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:3049 +#: g10/gpg.c:3076 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:3055 +#: g10/gpg.c:3082 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:3061 +#: g10/gpg.c:3088 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:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2 kipinde ileti şifrelemesi IDEA şifresi gerektirir\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "seçilen özet algoritması geçersiz\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "seçilen sertifikalama özet algoritması geçersiz\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "\"completes-needed\" 0 dan büyük olmalı\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "\"marginals-needed\" 1 den büyük olmalı\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 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:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 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:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "BİLGİ: basit S2K kipi (0) kesinlikle tavsiye edilmez\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 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:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "öntanımlı tercihler geçersiz\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "kişisel şifre tercihleri geçersiz\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "kişisel özet tercihleri geçersiz\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "kişisel sıkıştırma tercihleri geçersiz\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s, %s ile henüz çalışmıyor\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, 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:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' özet algoritması kullanılamaz\n" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, 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:3384 +#: g10/gpg.c:3411 #, 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:3395 +#: g10/gpg.c:3422 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:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [dosyaismi]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [dosyaismi]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, 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:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [dosyaismi]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [dosyaismi]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 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:3453 +#: g10/gpg.c:3480 #, 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:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [dosyaismi]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosyaismi]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [dosyaismi]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 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:3504 +#: g10/gpg.c:3531 #, 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:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [DOSYA]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [dosyaismi]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [dosyaismi]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key kullanıcı-kimliği" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key kullanıcı-kimliği" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key kullanıcı-kimliği [komutlar]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, 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:3685 +#: g10/gpg.c:3712 #, 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:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "anahtar ihracı başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "anahtar sunucusunda arama başarısız: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "anahtar sunucusunda tazeleme başarısız: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "zırhın kaldırılması başarısız: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "zırhlama başarısız: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "`%s' çittirim algoritması geçersiz\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[dosyaismi]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "İletinizi yazın ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "belirtilen sertifika güvence adresi geçersiz\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "belirtilen imza güvence adresi geçersiz\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "belirtilen anahtar sunucusu adresi geçersiz\n" @@ -3910,12 +3910,12 @@ msgstr "" "doğrulukta olmayacağını lütfen gözönüne alınız.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "yürürlükten kaldırıldı" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "zamanaşımına uğradı" @@ -3975,7 +3975,7 @@ msgstr "%d imza silindi.\n" msgid "Nothing deleted.\n" msgstr "Hiçbir şey silinmedi.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "geçersiz" @@ -6439,7 +6439,7 @@ msgstr "son derece" msgid "no need for a trustdb check\n" msgstr "bir güvence veritabanı denetimi gereksiz\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "sonraki güvence veritabanı denetimi %s de\n" @@ -6454,7 +6454,7 @@ msgstr "`%s' güvence modelli güvence veritabanı sınaması için gereksiz\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "`%s' güvence modelli güvence veritabanı güncellemesi için gereksiz\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "genel anahtar %s yok: %s\n" @@ -6467,26 +6467,26 @@ msgstr "lütfen bir --check-trustdb yapın\n" msgid "checking the trustdb\n" msgstr "güvence veritabanı denetleniyor\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "%d anahtar işlendi (%d doğrulama temizlendi)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "son derece güvenli bir anahtar yok\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "son derece güvenli %s için genel anahtar yok\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "%d şöyle böyle gerekli, %d tamamen gerekli, %s güvence modeli\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -6494,7 +6494,7 @@ msgstr "" "derinlik: %d geçerli: %3d imzalı: %3d güvenilir: %d-, %dq, %dn, %dm, %df, " "%du\n" -#: g10/trustdb.c:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -6991,18 +6991,18 @@ msgstr "" "Sözdizimi: scdaemon [seçenekler] [komut [arg ...]]\n" "GnuPG için akıllı kart artalan süreci\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" "Programı artalanda çalışır bırakmak için lütfen `--daemon' seçeneğini " "kullanın\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "fd %d için eylemci başlatıldı\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "fd %d için eylemci sonlandı\n" @@ -7687,11 +7687,11 @@ msgstr "|İSİM|şifre algoritması olarak İSİM kullanılır" msgid "|NAME|use message digest algorithm NAME" msgstr "|İSİM|özet algoritması olarak İSİM kullanılır" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "Kullanımı: gpgsm [seçenekler] [dosyalar] (yardım için -h)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7701,54 +7701,54 @@ msgstr "" "imzalama, kontrol, şifreleme veya çözme S/MIME protokolü kullanarak yapılır\n" "öntanımlı işlem girilen veriye bağımlıdır\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "kullanımı: gpgsm [seçenekler] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "BİLGİ:`%s'e şifrelenemez: %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "`%s' geçerlilik modeli bilinmiyor\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "%s:%u: konak adı belirtilmemiş\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "%s:%u: kullanıcısız parola verilmiş\n" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "%s:%u: bu satır atlanıyor\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 msgid "could not parse keyserver\n" msgstr "anahtar sunucusu çözümlenemedi\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "UYARI: sahte sistem zamanıyla çalışıyor: " -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "ortak sertifikalar `%s' ithal ediliyor\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "`%s' kullanarak imzalanamıyor: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "geçersiz komut (hiç dolaylı komut yok)\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7c00df242..c9619c08d 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.4\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2009-07-09 10:03+0200\n" "Last-Translator: Meng Jie \n" "Language-Team: Chinese (simplified) \n" @@ -98,7 +98,7 @@ msgstr "错误的密码" msgid "ssh keys greater than %d bits are not supported\n" msgstr "不支持保护散列 %d\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -108,12 +108,12 @@ msgstr "无法建立‘%s’:%s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "无法打开‘%s’: %s\n" @@ -435,7 +435,7 @@ msgstr "" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 msgid "Please report bugs to <@EMAIL@>.\n" msgstr "" @@ -453,147 +453,147 @@ msgid "" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "注意:没有默认配置文件‘%s’\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "配置文件‘%s’:%s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "从‘%s’读取选项\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "建立‘%s’时发生错误:%s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "无法建立‘%s’:%s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent 在此次舍话中无法使用\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "获取新 PIN 时出错:%s\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在‘%s’中寻找信任度记录时出错:%s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失败:%s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在将私钥写至`%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "已创建目录‘%s’\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) 在 %s 中出错:%s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "读取‘%s’时出错:%s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私钥失败:%s\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s:已跳过:%s\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent 在此次舍话中无法使用\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO 环境变量格式错误\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -715,7 +715,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "读取‘%s’时出错:%s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "" @@ -727,19 +727,19 @@ msgstr "" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 #, fuzzy msgid "Yes" msgstr "yes" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "" @@ -751,7 +751,7 @@ msgstr "" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -761,11 +761,11 @@ msgstr "" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "" @@ -1591,7 +1591,7 @@ msgstr "无效的指令(尝试“help”)\n" msgid "--output doesn't work for this command\n" msgstr "--output 在这个命令中不起作用\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "无法打开‘%s’\n" @@ -2096,7 +2096,7 @@ msgstr "" "签名、检查、加密或解密\n" "默认的操作依输入数据而定\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2124,520 +2124,520 @@ msgstr "压缩:" msgid "usage: gpg [options] " msgstr "用法:gpg [选项] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "冲突的指令\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "在‘%s’组定义里找不到等号(=)\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "警告:用户目录‘%s’所有权不安全\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "警告:配置文件‘%s’所有权不安全\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "警告:扩展模块‘%s’所有权不安全\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "警告:用户目录‘%s’权限不安全\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "警告:配置文件‘%s’权限不安全\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "警告:扩展模块‘%s’权限不安全\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "警告:用户目录‘%s’的关闭目录所有权不安全\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "警告:配置文件‘%s’的关闭目录所有权不安全\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "警告:扩展模块‘%s’的关闭目录所有权不安全\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "警告:用户目录‘%s’的关闭目录权限不安全\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "警告:配置文件‘%s’的关闭目录权限不安全\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "警告:扩展模块‘%s’的关闭目录权限不安全\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "未知的配置项‘%s’\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "列出密钥时显示用户标识" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "列出签名时显示策略 URL" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "列出签名时显示 IETF 标准注记" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "列出签名时显示 IETF 标准注记" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "列出签名时显示用户提供的注记" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "列出密钥时显示首选公钥服务器 URL" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "列出密钥时显示用户标识的有效性" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "列出密钥时显示已吊销或已过期的用户标识" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "列出密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "列出密钥时显示钥匙环的名称" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "列出签名时显示过期日期" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "注意:旧式的默认配置文件‘%s’已被忽略\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "注意:一般情况下不会用到 %s!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "‘%s’不是一个有效的签名过期日期\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "‘%s’不是一个有效的字符集\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "无法解析公钥服务器 URL\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d:无效的公钥服务器选项\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "无效的公钥服务器选项\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d:无效的导入选项\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "无效的导入选项\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d:无效的导出选项\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "无效的导出选项\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d:无效的列表选项\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "无效的列表选项\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "验证签名时显示照片标识" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "验证签名时显示策略 URL" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "验证签名时显示所有注记" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "验证签名时显示 IETF 标准注记" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "验证签名时显示用户提供的注记" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "验证签名时显示首选公钥服务器 URL" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "验证签名时显示用户标识的有效性" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "使用 PKA 数据验证签名的有效性" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "提升带有有效 PKA 数据的签名的信任度" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d:无效的校验选项\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "无效的校验选项\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "无法把运行路径设成 %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d:无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "无效的 auto-key-locate 清单\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "警告:程序可能会创建核心内存转储!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告:%s 会使得 %s 失效\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不可与 %s 并用\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 与 %s 并用无意义!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "不会在内存不安全的情况下运行,原因是 %s\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "您只有在 --pgp2 模式下才能做分离式或明文签名\n" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "您在 --pgp2 模式下时,不能同时签名和加密\n" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "启用 --pgp2 时您应该只使用文件,而非管道\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密报文需要 IDEA 算法\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "所选的对称加密算法无效\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "所选的散列算法无效\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "所选的压缩算法无效\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "所选的证书散列算法无效\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "需要的完全可信签名数一定要大于 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "需要的勉强可信签名数一定要大于 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "最大验证深度一定要介于 1 和 255 之间\n" -#: g10/gpg.c:3180 +#: g10/gpg.c:3207 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "无效的默认验证级别;一定要是 0,1,2 或 3\n" -#: g10/gpg.c:3182 +#: g10/gpg.c:3209 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "无效的最小验证级别;一定要是 1,2 或 3\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "注意:强烈不建议使用简单的 S2K 模式(0)\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "无效的 S2K 模式;必须是 0,1 或 3\n" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "无效的默认首选项\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "无效的个人对称加密算法首选项\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "无效的个人散列算法首选项\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "无效的个人压缩算法首选项\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 尚不能和 %s 并用\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’对称加密算法\n" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’散列算法\n" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’压缩算法\n" -#: g10/gpg.c:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "初始化信任度数据库失败:%s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告:给定了收件人(-r)但并未使用公钥加密\n" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [文件名]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [文件名]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "对称加密‘%s’失败:%s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [文件名]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [文件名]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric -encrypt\n" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [文件名]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [文件名]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [文件名]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --sign --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric --sign -encrypt\n" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [文件名]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [文件名]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [文件名]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key 用户标识" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key 用户标识" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key 用户标识 [指令]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "上传至公钥服务器失败:%s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "从公钥服务器接收失败:%s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "导出密钥失败:%s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "搜寻公钥服务器失败:%s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "从公钥服务器更新失败:%s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "解开 ASCII 封装失败:%s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "进行 ASCII 封装失败:%s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "无效的‘%s’散列算法\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[文件名]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "请开始键入您的报文……\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "给定的的验证策略 URL 无效\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "给定的签名策略 URL 无效\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "给定的首选公钥服务器 URL 无效\n" @@ -3869,12 +3869,12 @@ msgid "" msgstr "请注意,在您重启程序之前,显示的密钥有效性未必正确,\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "已吊销" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "已过期" @@ -3932,7 +3932,7 @@ msgstr "已经删除了 %d 个签名。\n" msgid "Nothing deleted.\n" msgstr "没有东西被删除。\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "无效" @@ -6312,7 +6312,7 @@ msgstr "绝对" msgid "no need for a trustdb check\n" msgstr "不需要检查信任度数据库\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "下次信任度数据库检查将于 %s 进行\n" @@ -6327,7 +6327,7 @@ msgstr "使用‘%s’信任模型时不需要检查信任度数据库\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "使用‘%s’信任模型时不需要更新信任度数据库\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "找不到公钥 %s:%s\n" @@ -6340,33 +6340,33 @@ msgstr "请执行一次 --check-trustdb\n" msgid "checking the trustdb\n" msgstr "正在检查信任度数据库\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "已经处理了 %d 把密钥(共计已解决了 %d 份的有效性)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "没有找到任何绝对信任的密钥\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "绝对信任的密钥 %s 的公钥未被找到\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "需要 %d 份勉强信任和 %d 份完全信任,%s 信任模型\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format 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:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "无法更新信任度数据库版本记录:写入失败:%s\n" @@ -6868,16 +6868,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7596,12 +7596,12 @@ msgstr "未知的对称加密算法" msgid "|NAME|use message digest algorithm NAME" msgstr "%s 签名,散列算法 %s\n" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 #, fuzzy msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "用法: gpg [选项] [文件] (用 -h 求助)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 #, fuzzy msgid "" "Syntax: gpgsm [options] [files]\n" @@ -7612,56 +7612,56 @@ msgstr "" "签名、检查、加密或解密\n" "默认的操作依输入数据而定\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 #, fuzzy msgid "usage: gpgsm [options] " msgstr "用法:gpg [选项] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, fuzzy, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "无法连接至‘%s’:%s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, fuzzy, c-format msgid "unknown validation model `%s'\n" msgstr "未知的选项 '%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, fuzzy, c-format msgid "%s:%u: no hostname given\n" msgstr "(不给定描述)\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, fuzzy, c-format msgid "%s:%u: skipping this line\n" msgstr " s = 跳过这把密钥\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 #, fuzzy msgid "could not parse keyserver\n" msgstr "无法解析公钥服务器 URL\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "无法存取‘%s’:%s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index d0ea752a7..b2c0e266a 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 2.0.10rc1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2009-09-04 17:59+0200\n" +"POT-Creation-Date: 2009-12-03 18:46+0100\n" "PO-Revision-Date: 2009-09-03 02:47+0800\n" "Last-Translator: Jedi \n" "Language-Team: Chinese (traditional) \n" @@ -94,7 +94,7 @@ msgstr "密語" msgid "ssh keys greater than %d bits are not supported\n" msgstr "未支援大於 %d 位元的 ssh 金鑰\n" -#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1089 +#: agent/command-ssh.c:688 g10/card-util.c:830 g10/exec.c:473 g10/gpg.c:1116 #: g10/keygen.c:3362 g10/keygen.c:3395 g10/keyring.c:1237 g10/keyring.c:1569 #: g10/openfile.c:275 g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 #: g10/tdbio.c:547 jnlib/dotlock.c:310 @@ -104,12 +104,12 @@ msgstr "無法建立 `%s': %s\n" #: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:784 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1090 g10/import.c:193 g10/keygen.c:2845 +#: g10/encode.c:504 g10/gpg.c:1117 g10/import.c:193 g10/keygen.c:2845 #: g10/keyring.c:1595 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:142 g10/tdbdump.c:150 g10/tdbio.c:551 -#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2001 -#: sm/gpgsm.c:2031 sm/gpgsm.c:2069 sm/gpgsm.c:2107 sm/qualified.c:66 +#: g10/tdbio.c:615 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:2027 +#: sm/gpgsm.c:2057 sm/gpgsm.c:2095 sm/gpgsm.c:2133 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "無法開啟 `%s': %s\n" @@ -415,7 +415,7 @@ msgstr "|檔案|將環境設定也寫至「檔案」" #. reporting address without breaking the translations. #: agent/gpg-agent.c:332 agent/preset-passphrase.c:94 agent/protect-tool.c:160 #: g10/gpg.c:808 g10/gpgv.c:114 kbx/kbxutil.c:113 scd/scdaemon.c:245 -#: sm/gpgsm.c:512 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 +#: sm/gpgsm.c:515 tools/gpg-connect-agent.c:180 tools/gpgconf.c:102 #: tools/symcryptrun.c:204 tools/gpg-check-pattern.c:141 #, fuzzy msgid "Please report bugs to <@EMAIL@>.\n" @@ -433,144 +433,144 @@ msgstr "" "語法: gpg-agent [選項] [指令 [引數]]\n" "GnuPG 私鑰管理\n" -#: agent/gpg-agent.c:378 g10/gpg.c:990 scd/scdaemon.c:306 sm/gpgsm.c:651 +#: agent/gpg-agent.c:389 g10/gpg.c:1001 scd/scdaemon.c:317 sm/gpgsm.c:665 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "給定的除錯等級 `%s' 無效\n" -#: agent/gpg-agent.c:587 agent/protect-tool.c:1030 kbx/kbxutil.c:428 -#: scd/scdaemon.c:400 sm/gpgsm.c:880 sm/gpgsm.c:883 tools/symcryptrun.c:996 +#: agent/gpg-agent.c:609 agent/protect-tool.c:1030 kbx/kbxutil.c:428 +#: scd/scdaemon.c:423 sm/gpgsm.c:905 sm/gpgsm.c:908 tools/symcryptrun.c:996 #: tools/gpg-check-pattern.c:177 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "%s 太舊了 (需要 %s, 但是祇有 %s)\n" -#: agent/gpg-agent.c:698 g10/gpg.c:2099 scd/scdaemon.c:482 sm/gpgsm.c:977 +#: agent/gpg-agent.c:720 g10/gpg.c:2126 scd/scdaemon.c:505 sm/gpgsm.c:1002 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "請注意: 沒有預設選項檔 `%s'\n" -#: agent/gpg-agent.c:703 agent/gpg-agent.c:1304 g10/gpg.c:2103 -#: scd/scdaemon.c:487 sm/gpgsm.c:981 tools/symcryptrun.c:929 +#: agent/gpg-agent.c:725 agent/gpg-agent.c:1326 g10/gpg.c:2130 +#: scd/scdaemon.c:510 sm/gpgsm.c:1006 tools/symcryptrun.c:929 #, c-format msgid "option file `%s': %s\n" msgstr "選項檔 `%s': %s\n" -#: agent/gpg-agent.c:711 g10/gpg.c:2110 scd/scdaemon.c:495 sm/gpgsm.c:988 +#: agent/gpg-agent.c:733 g10/gpg.c:2137 scd/scdaemon.c:518 sm/gpgsm.c:1013 #, c-format msgid "reading options from `%s'\n" msgstr "從 `%s' 讀取選項中\n" -#: agent/gpg-agent.c:1073 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:1095 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "建立 `%s' 時出錯: %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1535 agent/gpg-agent.c:1539 -#: agent/gpg-agent.c:1580 agent/gpg-agent.c:1584 g10/exec.c:188 -#: g10/openfile.c:429 scd/scdaemon.c:992 +#: agent/gpg-agent.c:1439 agent/gpg-agent.c:1557 agent/gpg-agent.c:1561 +#: agent/gpg-agent.c:1602 agent/gpg-agent.c:1606 g10/exec.c:188 +#: g10/openfile.c:429 scd/scdaemon.c:1015 #, c-format msgid "can't create directory `%s': %s\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1431 scd/scdaemon.c:1006 +#: agent/gpg-agent.c:1453 scd/scdaemon.c:1029 msgid "name of socket too long\n" msgstr "socket 名稱太長\n" -#: agent/gpg-agent.c:1454 scd/scdaemon.c:1029 +#: agent/gpg-agent.c:1476 scd/scdaemon.c:1052 #, c-format msgid "can't create socket: %s\n" msgstr "無法建立 socket: %s\n" -#: agent/gpg-agent.c:1463 +#: agent/gpg-agent.c:1485 #, c-format msgid "socket name `%s' is too long\n" msgstr "socket 名稱 `%s' 太長\n" -#: agent/gpg-agent.c:1481 +#: agent/gpg-agent.c:1503 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "已經有一份 gpg-agent 在執行了 - 不會再啟動一份新的\n" -#: agent/gpg-agent.c:1492 scd/scdaemon.c:1048 +#: agent/gpg-agent.c:1514 scd/scdaemon.c:1071 msgid "error getting nonce for the socket\n" msgstr "為 socket 取得 nonce 時出錯\n" -#: agent/gpg-agent.c:1497 scd/scdaemon.c:1051 +#: agent/gpg-agent.c:1519 scd/scdaemon.c:1074 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "綁定 socket 至 `%s' 時出錯: %s\n" -#: agent/gpg-agent.c:1509 scd/scdaemon.c:1060 +#: agent/gpg-agent.c:1531 scd/scdaemon.c:1083 #, c-format msgid "listen() failed: %s\n" msgstr "listen() 失敗: %s\n" -#: agent/gpg-agent.c:1515 scd/scdaemon.c:1067 +#: agent/gpg-agent.c:1537 scd/scdaemon.c:1090 #, c-format msgid "listening on socket `%s'\n" msgstr "正在候聽 socket `%s'\n" -#: agent/gpg-agent.c:1543 agent/gpg-agent.c:1590 g10/openfile.c:432 +#: agent/gpg-agent.c:1565 agent/gpg-agent.c:1612 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "`%s' 目錄已建立\n" -#: agent/gpg-agent.c:1596 +#: agent/gpg-agent.c:1618 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat() 失敗於 `%s': %s\n" -#: agent/gpg-agent.c:1600 +#: agent/gpg-agent.c:1622 #, c-format msgid "can't use `%s' as home directory\n" msgstr "無法使用 `%s' 做為家目錄\n" -#: agent/gpg-agent.c:1730 scd/scdaemon.c:1083 +#: agent/gpg-agent.c:1752 scd/scdaemon.c:1106 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "於 fd %d 讀取 nonce 時出錯: %s\n" -#: agent/gpg-agent.c:1752 +#: agent/gpg-agent.c:1774 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "經手程式 0x%lx (用於 fd %d) 已啟動\n" -#: agent/gpg-agent.c:1757 +#: agent/gpg-agent.c:1779 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "經手程式 0x%lx (用於 fd %d) 已終止\n" -#: agent/gpg-agent.c:1777 +#: agent/gpg-agent.c:1799 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "ssh 經手程式 0x%lx (用於 fd %d) 已啟動\n" -#: agent/gpg-agent.c:1782 +#: agent/gpg-agent.c:1804 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "ssh 經手程式 0x%lx (用於 fd %d) 已終止\n" -#: agent/gpg-agent.c:1922 scd/scdaemon.c:1220 +#: agent/gpg-agent.c:1944 scd/scdaemon.c:1243 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select 失敗: %s - 等 1 秒鐘\n" -#: agent/gpg-agent.c:2045 scd/scdaemon.c:1287 +#: agent/gpg-agent.c:2067 scd/scdaemon.c:1310 #, c-format msgid "%s %s stopped\n" msgstr "%s %s 已停止\n" -#: agent/gpg-agent.c:2173 +#: agent/gpg-agent.c:2195 msgid "no gpg-agent running in this session\n" msgstr "在此階段中沒有執行中的 gpg-agent\n" -#: agent/gpg-agent.c:2184 common/simple-pwquery.c:352 common/asshelp.c:283 +#: agent/gpg-agent.c:2206 common/simple-pwquery.c:352 common/asshelp.c:283 #: tools/gpg-connect-agent.c:2134 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "被變造的 GPG_AGENT_INFO 環境變數\n" -#: agent/gpg-agent.c:2197 common/simple-pwquery.c:364 common/asshelp.c:295 +#: agent/gpg-agent.c:2219 common/simple-pwquery.c:364 common/asshelp.c:295 #: tools/gpg-connect-agent.c:2145 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -691,7 +691,7 @@ msgstr "無效的金鑰旗標於 `%s', 第 %d 列\n" msgid "error reading `%s', line %d: %s\n" msgstr "讀取 `%s' 時出錯, 第 %d 列: %s\n" -#: agent/trustlist.c:399 agent/trustlist.c:449 +#: agent/trustlist.c:400 agent/trustlist.c:450 msgid "error reading list of trusted root certificates\n" msgstr "讀取已信任根憑證清單時出錯\n" @@ -703,18 +703,18 @@ msgstr "讀取已信任根憑證清單時出錯\n" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as stored in the #. certificate. -#: agent/trustlist.c:610 +#: agent/trustlist.c:611 #, c-format msgid "" "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " "certificates?" msgstr "請問你是否徹底信任%%0A \"%s\"%%0A正確驗證使用者憑證的能力?" -#: agent/trustlist.c:619 common/audit.c:467 +#: agent/trustlist.c:620 common/audit.c:467 msgid "Yes" msgstr "Yes" -#: agent/trustlist.c:619 common/audit.c:469 +#: agent/trustlist.c:620 common/audit.c:469 msgid "No" msgstr "No" @@ -726,7 +726,7 @@ msgstr "No" #. "%%25". The second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives the name #. as stored in the certificate. -#: agent/trustlist.c:653 +#: agent/trustlist.c:654 #, c-format msgid "" "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " @@ -736,11 +736,11 @@ msgstr "請驗證憑證與此完全相同:%%0A \"%s\"%%0A其指紋為:%%0A %s" #. TRANSLATORS: "Correct" is the label of a button and intended #. to be hit if the fingerprint matches the one of the CA. The #. other button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Correct" msgstr "正確" -#: agent/trustlist.c:667 +#: agent/trustlist.c:668 msgid "Wrong" msgstr "錯了" @@ -1537,7 +1537,7 @@ msgstr "無效的指令 (試試看 \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output 在這個指令中沒有作用\n" -#: g10/decrypt.c:166 g10/gpg.c:3986 g10/keyring.c:387 g10/keyring.c:698 +#: g10/decrypt.c:166 g10/gpg.c:4013 g10/keyring.c:387 g10/keyring.c:698 #, c-format msgid "can't open `%s'\n" msgstr "無法開啟 `%s'\n" @@ -2034,7 +2034,7 @@ msgstr "" "簽署, 檢查, 加密或解密\n" "預設的操作會依輸入資料而定\n" -#: g10/gpg.c:844 sm/gpgsm.c:536 +#: g10/gpg.c:844 sm/gpgsm.c:539 msgid "" "\n" "Supported algorithms:\n" @@ -2062,519 +2062,519 @@ msgstr "壓縮: " msgid "usage: gpg [options] " msgstr "用法: gpg [選項] " -#: g10/gpg.c:1125 sm/gpgsm.c:687 +#: g10/gpg.c:1152 sm/gpgsm.c:712 msgid "conflicting commands\n" msgstr "指令彼此矛盾\n" -#: g10/gpg.c:1143 +#: g10/gpg.c:1170 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "在群組定義 `%s' 裡找不到 = 記號\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1367 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的所有權並不安全\n" -#: g10/gpg.c:1343 +#: g10/gpg.c:1370 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的所有權並不安全\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1373 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的所有權並不安全\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1379 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的權限並不安全\n" -#: g10/gpg.c:1355 +#: g10/gpg.c:1382 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的權限並不安全\n" -#: g10/gpg.c:1358 +#: g10/gpg.c:1385 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的權限並不安全\n" -#: g10/gpg.c:1364 +#: g10/gpg.c:1391 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1367 +#: g10/gpg.c:1394 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1370 +#: g10/gpg.c:1397 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1376 +#: g10/gpg.c:1403 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1379 +#: g10/gpg.c:1406 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1382 +#: g10/gpg.c:1409 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1561 +#: g10/gpg.c:1588 #, c-format msgid "unknown configuration item `%s'\n" msgstr "未知的組態項目 `%s'\n" -#: g10/gpg.c:1660 +#: g10/gpg.c:1687 msgid "display photo IDs during key listings" msgstr "列出金鑰時顯示照片 ID" -#: g10/gpg.c:1662 +#: g10/gpg.c:1689 msgid "show policy URLs during signature listings" msgstr "列出簽章時顯示原則 URL" -#: g10/gpg.c:1664 +#: g10/gpg.c:1691 msgid "show all notations during signature listings" msgstr "列出簽章時顯示所有的註記" -#: g10/gpg.c:1666 +#: g10/gpg.c:1693 msgid "show IETF standard notations during signature listings" msgstr "列出簽章時顯示 IETF 標準註記" -#: g10/gpg.c:1670 +#: g10/gpg.c:1697 msgid "show user-supplied notations during signature listings" msgstr "列出簽章時顯示使用者提供的註記" -#: g10/gpg.c:1672 +#: g10/gpg.c:1699 msgid "show preferred keyserver URLs during signature listings" msgstr "列出簽章時顯示偏好的金鑰伺服器 URL" -#: g10/gpg.c:1674 +#: g10/gpg.c:1701 msgid "show user ID validity during key listings" msgstr "列出金鑰時顯示使用者 ID 有效性" -#: g10/gpg.c:1676 +#: g10/gpg.c:1703 msgid "show revoked and expired user IDs in key listings" msgstr "列出金鑰時顯示已撤銷或過期的使用者 ID" -#: g10/gpg.c:1678 +#: g10/gpg.c:1705 msgid "show revoked and expired subkeys in key listings" msgstr "列出金鑰時顯示已撤銷或過期的子鑰" -#: g10/gpg.c:1680 +#: g10/gpg.c:1707 msgid "show the keyring name in key listings" msgstr "在金鑰清單中顯示鑰匙圈名稱" -#: g10/gpg.c:1682 +#: g10/gpg.c:1709 msgid "show expiration dates during signature listings" msgstr "列出簽章時顯示有效期限" -#: g10/gpg.c:1843 +#: g10/gpg.c:1870 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "請注意: 已忽略舊有的預設選項檔 `%s'\n" -#: g10/gpg.c:1935 +#: g10/gpg.c:1962 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt 太舊了 (需要 %s, 但是祇有 %s)\n" -#: g10/gpg.c:2327 g10/gpg.c:3015 g10/gpg.c:3027 +#: g10/gpg.c:2354 g10/gpg.c:3042 g10/gpg.c:3054 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "請注意: 一般情況下不會用到 %s!\n" -#: g10/gpg.c:2508 g10/gpg.c:2520 +#: g10/gpg.c:2535 g10/gpg.c:2547 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' 不是個有效的簽章使用期限\n" -#: g10/gpg.c:2602 +#: g10/gpg.c:2629 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' 不是個有效的字元集\n" -#: g10/gpg.c:2625 g10/gpg.c:2820 g10/keyedit.c:4131 +#: g10/gpg.c:2652 g10/gpg.c:2847 g10/keyedit.c:4131 msgid "could not parse keyserver URL\n" msgstr "無法剖析金鑰伺服器 URL\n" -#: g10/gpg.c:2637 +#: g10/gpg.c:2664 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: 無效的金鑰伺服器選項\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2667 msgid "invalid keyserver options\n" msgstr "無效的金鑰伺服器選項\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2674 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: 無效的匯入選項\n" -#: g10/gpg.c:2650 +#: g10/gpg.c:2677 msgid "invalid import options\n" msgstr "無效的匯入選項\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2684 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: 無效的匯出選項\n" -#: g10/gpg.c:2660 +#: g10/gpg.c:2687 msgid "invalid export options\n" msgstr "無效的匯出選項\n" -#: g10/gpg.c:2667 +#: g10/gpg.c:2694 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: 無效的清單選項\n" -#: g10/gpg.c:2670 +#: g10/gpg.c:2697 msgid "invalid list options\n" msgstr "無效的清單選項\n" -#: g10/gpg.c:2678 +#: g10/gpg.c:2705 msgid "display photo IDs during signature verification" msgstr "驗證簽章時顯示照片 ID" -#: g10/gpg.c:2680 +#: g10/gpg.c:2707 msgid "show policy URLs during signature verification" msgstr "驗證簽章時顯示原則 URL" -#: g10/gpg.c:2682 +#: g10/gpg.c:2709 msgid "show all notations during signature verification" msgstr "驗證簽章時顯示所有的註記" -#: g10/gpg.c:2684 +#: g10/gpg.c:2711 msgid "show IETF standard notations during signature verification" msgstr "驗證簽章時顯示 IETF 標準註記" -#: g10/gpg.c:2688 +#: g10/gpg.c:2715 msgid "show user-supplied notations during signature verification" msgstr "驗證簽章時顯示使用者提供的註記" -#: g10/gpg.c:2690 +#: g10/gpg.c:2717 msgid "show preferred keyserver URLs during signature verification" msgstr "驗證簽章時顯示偏好的金鑰伺服器 URL" -#: g10/gpg.c:2692 +#: g10/gpg.c:2719 msgid "show user ID validity during signature verification" msgstr "驗證簽章時顯示使用者 ID 有效性" -#: g10/gpg.c:2694 +#: g10/gpg.c:2721 msgid "show revoked and expired user IDs in signature verification" msgstr "驗證簽章時顯示已撤銷或過期的使用者 ID" -#: g10/gpg.c:2696 +#: g10/gpg.c:2723 msgid "show only the primary user ID in signature verification" msgstr "驗證簽章時祇顯示主要的使用者 ID" -#: g10/gpg.c:2698 +#: g10/gpg.c:2725 msgid "validate signatures with PKA data" msgstr "以 PKA 資料驗證簽章" -#: g10/gpg.c:2700 +#: g10/gpg.c:2727 msgid "elevate the trust of signatures with valid PKA data" msgstr "提高對持有有效 PKA 資料之簽章的信任" -#: g10/gpg.c:2707 +#: g10/gpg.c:2734 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:2710 +#: g10/gpg.c:2737 msgid "invalid verify options\n" msgstr "無效的驗證選項\n" -#: g10/gpg.c:2717 +#: g10/gpg.c:2744 #, c-format msgid "unable to set exec-path to %s\n" msgstr "無法把執行檔路徑設成 %s\n" -#: g10/gpg.c:2903 +#: g10/gpg.c:2930 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: 無效的自動金鑰定址清單\n" -#: g10/gpg.c:2906 +#: g10/gpg.c:2933 msgid "invalid auto-key-locate list\n" msgstr "無效的自動金鑰定址清單\n" -#: g10/gpg.c:3004 sm/gpgsm.c:1406 +#: g10/gpg.c:3031 sm/gpgsm.c:1431 msgid "WARNING: program may create a core file!\n" msgstr "警告: 程式可能會傾印出核心檔!\n" -#: g10/gpg.c:3008 +#: g10/gpg.c:3035 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告: %s 會推翻 %s\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3044 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不允許跟 %s 併用!\n" -#: g10/gpg.c:3020 +#: g10/gpg.c:3047 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 跟 %s 放在一起沒有意義!\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3062 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "因為 %s 而不會在不安全的記憶體中執行\n" -#: g10/gpg.c:3049 +#: g10/gpg.c:3076 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "你祇有在 --pgp2 模式下纔能做出分離式或明文簽章\n" -#: g10/gpg.c:3055 +#: g10/gpg.c:3082 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "你在 --pgp2 模式下時, 不能同時簽署和加密\n" -#: g10/gpg.c:3061 +#: g10/gpg.c:3088 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "啟用 --pgp2 時你祇應該使用檔案, 而非管道\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3101 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密訊息需要 IDEA 編密法\n" -#: g10/gpg.c:3141 g10/gpg.c:3165 sm/gpgsm.c:1478 +#: g10/gpg.c:3168 g10/gpg.c:3192 sm/gpgsm.c:1503 msgid "selected cipher algorithm is invalid\n" msgstr "所選的編密演算法無效\n" -#: g10/gpg.c:3147 g10/gpg.c:3171 sm/gpgsm.c:1484 sm/gpgsm.c:1490 +#: g10/gpg.c:3174 g10/gpg.c:3198 sm/gpgsm.c:1509 sm/gpgsm.c:1515 msgid "selected digest algorithm is invalid\n" msgstr "所選的摘要演算法無效\n" -#: g10/gpg.c:3153 +#: g10/gpg.c:3180 msgid "selected compression algorithm is invalid\n" msgstr "所選的壓縮演算法無效\n" -#: g10/gpg.c:3159 +#: g10/gpg.c:3186 msgid "selected certification digest algorithm is invalid\n" msgstr "所選的憑證摘要演算法無效\n" -#: g10/gpg.c:3174 +#: g10/gpg.c:3201 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 一定要大於 0\n" -#: g10/gpg.c:3176 +#: g10/gpg.c:3203 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 一定要大於 1\n" -#: g10/gpg.c:3178 +#: g10/gpg.c:3205 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 一定要介於 1 和 255 之間\n" -#: g10/gpg.c:3180 +#: g10/gpg.c:3207 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:3182 +#: g10/gpg.c:3209 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "無效的 min-cert-level; 一定要是 1, 2 或 3\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3212 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "請注意: 強烈不建議使用單純的 S2K 模式 (0)\n" -#: g10/gpg.c:3189 +#: g10/gpg.c:3216 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "無效的 S2K 模式; 一定要是 0, 1 或 3\n" -#: g10/gpg.c:3196 +#: g10/gpg.c:3223 msgid "invalid default preferences\n" msgstr "無效的預設偏好\n" -#: g10/gpg.c:3200 +#: g10/gpg.c:3227 msgid "invalid personal cipher preferences\n" msgstr "無效的個人編密法偏好\n" -#: g10/gpg.c:3204 +#: g10/gpg.c:3231 msgid "invalid personal digest preferences\n" msgstr "無效的個人摘要偏好\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3235 msgid "invalid personal compress preferences\n" msgstr "無效的個人壓縮偏好\n" -#: g10/gpg.c:3241 +#: g10/gpg.c:3268 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 還沒辦法跟 %s 一起運作\n" -#: g10/gpg.c:3288 +#: g10/gpg.c:3315 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "你不該將 `%s' 編密演算法用於 %s 模式中\n" -#: g10/gpg.c:3293 +#: g10/gpg.c:3320 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "你不該將 `%s' 摘要演算法用於 %s 模式中\n" -#: g10/gpg.c:3298 +#: g10/gpg.c:3325 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "你不該將 `%s' 壓縮演算法用於 %s 模式中\n" -#: g10/gpg.c:3384 +#: g10/gpg.c:3411 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "信任資料庫啟始失敗: %s\n" -#: g10/gpg.c:3395 +#: g10/gpg.c:3422 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告: 給定的收件者 (-r) 未使用公鑰加密\n" -#: g10/gpg.c:3416 +#: g10/gpg.c:3443 msgid "--store [filename]" msgstr "--store [檔名]" -#: g10/gpg.c:3423 +#: g10/gpg.c:3450 msgid "--symmetric [filename]" msgstr "--symmetric [檔名]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3452 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "`%s' 對稱式加密失敗: %s\n" -#: g10/gpg.c:3435 +#: g10/gpg.c:3462 msgid "--encrypt [filename]" msgstr "--encrypt [檔名]" -#: g10/gpg.c:3448 +#: g10/gpg.c:3475 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [檔名]" -#: g10/gpg.c:3450 +#: g10/gpg.c:3477 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "你不能在 --s2k-mode 0 中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3453 +#: g10/gpg.c:3480 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "你不能在 %s 模式中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3471 +#: g10/gpg.c:3498 msgid "--sign [filename]" msgstr "--sign [檔名]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3511 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [檔名]" -#: g10/gpg.c:3499 +#: g10/gpg.c:3526 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [檔名]" -#: g10/gpg.c:3501 +#: g10/gpg.c:3528 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "你不能在 --s2k-mode 0 中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3504 +#: g10/gpg.c:3531 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "你不能在 %s 模式中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3524 +#: g10/gpg.c:3551 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [檔名]" -#: g10/gpg.c:3533 +#: g10/gpg.c:3560 msgid "--clearsign [filename]" msgstr "--clearsign [檔名]" -#: g10/gpg.c:3558 +#: g10/gpg.c:3585 msgid "--decrypt [filename]" msgstr "--decrypt [檔名]" -#: g10/gpg.c:3566 +#: g10/gpg.c:3593 msgid "--sign-key user-id" msgstr "--sign-key 使用者ID" -#: g10/gpg.c:3570 +#: g10/gpg.c:3597 msgid "--lsign-key user-id" msgstr "--lsign-key 使用者ID" -#: g10/gpg.c:3591 +#: g10/gpg.c:3618 msgid "--edit-key user-id [commands]" msgstr "--edit-key 使用者ID [指令]" -#: g10/gpg.c:3683 +#: g10/gpg.c:3710 #, c-format msgid "keyserver send failed: %s\n" msgstr "送至金鑰伺服器失敗: %s\n" -#: g10/gpg.c:3685 +#: g10/gpg.c:3712 #, c-format msgid "keyserver receive failed: %s\n" msgstr "從金鑰伺服器接收失敗: %s\n" -#: g10/gpg.c:3687 +#: g10/gpg.c:3714 #, c-format msgid "key export failed: %s\n" msgstr "金鑰匯出失敗: %s\n" -#: g10/gpg.c:3698 +#: g10/gpg.c:3725 #, c-format msgid "keyserver search failed: %s\n" msgstr "用金鑰伺服器搜尋失敗: %s\n" -#: g10/gpg.c:3708 +#: g10/gpg.c:3735 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "從金鑰伺服器更新失敗: %s\n" -#: g10/gpg.c:3759 +#: g10/gpg.c:3786 #, c-format msgid "dearmoring failed: %s\n" msgstr "解開封裝失敗: %s\n" -#: g10/gpg.c:3767 +#: g10/gpg.c:3794 #, c-format msgid "enarmoring failed: %s\n" msgstr "進行封裝失敗: %s\n" -#: g10/gpg.c:3857 +#: g10/gpg.c:3884 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "無效的 `%s' 雜湊演算法\n" -#: g10/gpg.c:3972 +#: g10/gpg.c:3999 msgid "[filename]" msgstr "[檔名]" -#: g10/gpg.c:3976 +#: g10/gpg.c:4003 msgid "Go ahead and type your message ...\n" msgstr "請開始輸入你的訊息 ...\n" -#: g10/gpg.c:4290 +#: g10/gpg.c:4317 msgid "the given certification policy URL is invalid\n" msgstr "給定的的憑證原則 URL 無效\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4319 msgid "the given signature policy URL is invalid\n" msgstr "給定的簽章原則 URL 無效\n" -#: g10/gpg.c:4325 +#: g10/gpg.c:4352 msgid "the given preferred keyserver URL is invalid\n" msgstr "給定的偏好金鑰伺服器 URL 無效\n" @@ -3811,12 +3811,12 @@ msgstr "" "除非你重新執行程式.\n" #: g10/keyedit.c:2939 g10/keyedit.c:3285 g10/keyserver.c:542 -#: g10/mainproc.c:1849 g10/trustdb.c:1194 g10/trustdb.c:1722 +#: g10/mainproc.c:1849 g10/trustdb.c:1200 g10/trustdb.c:1728 msgid "revoked" msgstr "已撤銷" #: g10/keyedit.c:2941 g10/keyedit.c:3287 g10/keyserver.c:546 -#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1724 +#: g10/mainproc.c:1851 g10/trustdb.c:547 g10/trustdb.c:1730 msgid "expired" msgstr "已過期" @@ -3875,7 +3875,7 @@ msgstr "已經刪除了 %d 份簽章.\n" msgid "Nothing deleted.\n" msgstr "沒有刪除任何東西.\n" -#: g10/keyedit.c:3289 g10/trustdb.c:1726 +#: g10/keyedit.c:3289 g10/trustdb.c:1732 msgid "invalid" msgstr "無效" @@ -6259,7 +6259,7 @@ msgstr "徹底" msgid "no need for a trustdb check\n" msgstr "不需要檢查信任資料庫\n" -#: g10/trustdb.c:598 g10/trustdb.c:2477 +#: g10/trustdb.c:598 g10/trustdb.c:2483 #, c-format msgid "next trustdb check due at %s\n" msgstr "下次信任資料庫檢查將於 %s 進行\n" @@ -6274,7 +6274,7 @@ msgstr "在 `%s' 信任模型中並不需要檢查信任資料庫\n" msgid "no need for a trustdb update with `%s' trust model\n" msgstr "在 `%s' 信任模型中並不需要更新信任資料庫\n" -#: g10/trustdb.c:854 g10/trustdb.c:1300 +#: g10/trustdb.c:854 g10/trustdb.c:1306 #, c-format msgid "public key %s not found: %s\n" msgstr "找不到公鑰 %s: %s\n" @@ -6287,32 +6287,32 @@ msgstr "請做一次 --check-trustdb\n" msgid "checking the trustdb\n" msgstr "正在檢查信任資料庫\n" -#: g10/trustdb.c:2220 +#: g10/trustdb.c:2226 #, c-format msgid "%d keys processed (%d validity counts cleared)\n" msgstr "已經處理了 %d 把金鑰 (共計已解決了 %d 份有效性)\n" -#: g10/trustdb.c:2285 +#: g10/trustdb.c:2291 msgid "no ultimately trusted keys found\n" msgstr "沒有找到任何徹底信任的金鑰\n" -#: g10/trustdb.c:2299 +#: g10/trustdb.c:2305 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "找不到徹底信任金鑰 %s 的公鑰\n" -#: g10/trustdb.c:2322 +#: g10/trustdb.c:2328 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" msgstr "%d 個勉強信任以及 %d 個完全信任是 %s 信任模型的最小需求\n" -#: g10/trustdb.c:2408 +#: g10/trustdb.c:2414 #, c-format 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:2483 +#: g10/trustdb.c:2489 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "無法更新信任資料庫版本記錄: 寫入失敗: %s\n" @@ -6797,16 +6797,16 @@ msgstr "" "語法: scdaemon [選項] [指令 [引數]]\n" "GnuPg 智慧卡服務\n" -#: scd/scdaemon.c:738 +#: scd/scdaemon.c:761 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "請使用 `--daemon' 選項來將此程式執行於背景\n" -#: scd/scdaemon.c:1092 +#: scd/scdaemon.c:1115 #, c-format msgid "handler for fd %d started\n" msgstr "用於 fd %d 的經手程式已啟動\n" -#: scd/scdaemon.c:1104 +#: scd/scdaemon.c:1127 #, c-format msgid "handler for fd %d terminated\n" msgstr "用於 fd %d 的經手程式已終止\n" @@ -7485,11 +7485,11 @@ msgstr "|名稱|使用「名稱」編密演算法" msgid "|NAME|use message digest algorithm NAME" msgstr "|名稱|使用「名稱」訊息摘要演算法" -#: sm/gpgsm.c:515 +#: sm/gpgsm.c:518 msgid "Usage: gpgsm [options] [files] (-h for help)" msgstr "用法: gpgsm [選項] [檔案] (或用 -h 求助)" -#: sm/gpgsm.c:518 +#: sm/gpgsm.c:521 msgid "" "Syntax: gpgsm [options] [files]\n" "sign, check, encrypt or decrypt using the S/MIME protocol\n" @@ -7499,54 +7499,54 @@ msgstr "" "用 S/MIME 協定來簽署, 檢查, 加密或解密\n" "預設的操作會依輸入資料而定\n" -#: sm/gpgsm.c:610 +#: sm/gpgsm.c:613 msgid "usage: gpgsm [options] " msgstr "用法: gpgsm [選項] " -#: sm/gpgsm.c:710 +#: sm/gpgsm.c:735 #, c-format msgid "NOTE: won't be able to encrypt to `%s': %s\n" msgstr "請注意: 將無法加密為 `%s': %s\n" -#: sm/gpgsm.c:721 +#: sm/gpgsm.c:746 #, c-format msgid "unknown validation model `%s'\n" msgstr "未知的驗證模型 `%s'\n" -#: sm/gpgsm.c:772 +#: sm/gpgsm.c:797 #, c-format msgid "%s:%u: no hostname given\n" msgstr "%s:%u: 沒有給定主機名稱\n" -#: sm/gpgsm.c:791 +#: sm/gpgsm.c:816 #, c-format msgid "%s:%u: password given without user\n" msgstr "%s:%u: 給定的密碼沒有使用者\n" -#: sm/gpgsm.c:812 +#: sm/gpgsm.c:837 #, c-format msgid "%s:%u: skipping this line\n" msgstr "%s:%u: 正在跳過這一列\n" -#: sm/gpgsm.c:1342 +#: sm/gpgsm.c:1367 msgid "could not parse keyserver\n" msgstr "無法剖析金鑰伺服器\n" -#: sm/gpgsm.c:1423 +#: sm/gpgsm.c:1448 msgid "WARNING: running with faked system time: " msgstr "警告: 正在偽造的系統時間中執行: " -#: sm/gpgsm.c:1523 +#: sm/gpgsm.c:1548 #, c-format msgid "importing common certificates `%s'\n" msgstr "正在匯入通用憑證 `%s'\n" -#: sm/gpgsm.c:1561 +#: sm/gpgsm.c:1586 #, c-format msgid "can't sign using `%s': %s\n" msgstr "無法用 `%s' 來簽署: %s\n" -#: sm/gpgsm.c:1892 +#: sm/gpgsm.c:1918 msgid "invalid command (there is no implicit command)\n" msgstr "無效的指令 (沒有這樣的指令)\n" diff --git a/scd/ChangeLog b/scd/ChangeLog index 3a421ccfb..6c1944463 100644 --- a/scd/ChangeLog +++ b/scd/ChangeLog @@ -1,3 +1,8 @@ +2009-12-03 Werner Koch + + * scdaemon.c (set_debug): Allow for numerical debug levels. Print + active debug flags. + 2009-09-03 Werner Koch * app-openpgp.c (do_decipher): Compute required Le. diff --git a/scd/scdaemon.c b/scd/scdaemon.c index 175729a03..7fe9b478d 100644 --- a/scd/scdaemon.c +++ b/scd/scdaemon.c @@ -288,19 +288,30 @@ tid_log_callback (void) static void set_debug (const char *level) { + int numok = (level && digitp (level)); + int numlvl = numok? atoi (level) : 0; + if (!level) ; - else if (!strcmp (level, "none")) + else if (!strcmp (level, "none") || (numok && numlvl < 1)) opt.debug = 0; - else if (!strcmp (level, "basic")) + else if (!strcmp (level, "basic") || (numok && numlvl <= 2)) opt.debug = DBG_ASSUAN_VALUE; - else if (!strcmp (level, "advanced")) + else if (!strcmp (level, "advanced") || (numok && numlvl <= 5)) opt.debug = DBG_ASSUAN_VALUE|DBG_COMMAND_VALUE; - else if (!strcmp (level, "expert")) + else if (!strcmp (level, "expert") || (numok && numlvl <= 8)) opt.debug = (DBG_ASSUAN_VALUE|DBG_COMMAND_VALUE |DBG_CACHE_VALUE|DBG_CARD_IO_VALUE); - else if (!strcmp (level, "guru")) - opt.debug = ~0; + else if (!strcmp (level, "guru") || numok) + { + opt.debug = ~0; + /* Unless the "guru" string has been used we don't want to allow + hashing debugging. The rationale is that people tend to + select the highest debug value and would then clutter their + disk with debug files which may reveal confidential data. */ + if (numok) + opt.debug &= ~(DBG_HASHING_VALUE); + } else { log_error (_("invalid debug-level `%s' given\n"), level); @@ -318,6 +329,18 @@ set_debug (const char *level) if (opt.debug & DBG_CRYPTO_VALUE ) gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1); gcry_control (GCRYCTL_SET_VERBOSITY, (int)opt.verbose); + + if (opt.debug) + log_info ("enabled debug flags:%s%s%s%s%s%s%s%s%s\n", + (opt.debug & DBG_COMMAND_VALUE)? " command":"", + (opt.debug & DBG_MPI_VALUE )? " mpi":"", + (opt.debug & DBG_CRYPTO_VALUE )? " crypto":"", + (opt.debug & DBG_MEMORY_VALUE )? " memory":"", + (opt.debug & DBG_CACHE_VALUE )? " cache":"", + (opt.debug & DBG_MEMSTAT_VALUE)? " memstat":"", + (opt.debug & DBG_HASHING_VALUE)? " hashing":"", + (opt.debug & DBG_ASSUAN_VALUE )? " assuan":"", + (opt.debug & DBG_CARD_IO_VALUE)? " cardio":""); } diff --git a/sm/ChangeLog b/sm/ChangeLog index e5c51b275..67931eafe 100644 --- a/sm/ChangeLog +++ b/sm/ChangeLog @@ -1,3 +1,8 @@ +2009-12-03 Werner Koch + + * gpgsm.c (set_debug): Allow for numerical debug levels. Print + active debug flags. + 2009-10-16 Werner Koch * gpgsm.c (DEFAULT_INCLUDE_CERTS): New. diff --git a/sm/gpgsm.c b/sm/gpgsm.c index 2b99c2d9c..65de94ed3 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -636,23 +636,34 @@ set_opt_session_env (const char *name, const char *value) static void set_debug (void) { + int numok = (debug_level && digitp (debug_level)); + int numlvl = numok? atoi (debug_level) : 0; + if (!debug_level) ; - else if (!strcmp (debug_level, "none")) + else if (!strcmp (debug_level, "none") || (numok && numlvl < 1)) opt.debug = 0; - else if (!strcmp (debug_level, "basic")) + else if (!strcmp (debug_level, "basic") || (numok && numlvl <= 2)) opt.debug = DBG_ASSUAN_VALUE; - else if (!strcmp (debug_level, "advanced")) + else if (!strcmp (debug_level, "advanced") || (numok && numlvl <= 5)) opt.debug = DBG_ASSUAN_VALUE|DBG_X509_VALUE; - else if (!strcmp (debug_level, "expert")) + else if (!strcmp (debug_level, "expert") || (numok && numlvl <= 8)) opt.debug = (DBG_ASSUAN_VALUE|DBG_X509_VALUE |DBG_CACHE_VALUE|DBG_CRYPTO_VALUE); - else if (!strcmp (debug_level, "guru")) - opt.debug = ~0; + else if (!strcmp (debug_level, "guru") || numok) + { + opt.debug = ~0; + /* Unless the "guru" string has been used we don't want to allow + hashing debugging. The rationale is that people tend to + select the highest debug value and would then clutter their + disk with debug files which may reveal confidential data. */ + if (numok) + opt.debug &= ~(DBG_HASHING_VALUE); + } else { log_error (_("invalid debug-level `%s' given\n"), debug_level); - gpgsm_exit(2); + gpgsm_exit (2); } opt.debug |= debug_value; @@ -667,6 +678,17 @@ set_debug (void) if (opt.debug & DBG_CRYPTO_VALUE ) gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1); gcry_control (GCRYCTL_SET_VERBOSITY, (int)opt.verbose); + + if (opt.debug) + log_info ("enabled debug flags:%s%s%s%s%s%s%s%s\n", + (opt.debug & DBG_X509_VALUE )? " x509":"", + (opt.debug & DBG_MPI_VALUE )? " mpi":"", + (opt.debug & DBG_CRYPTO_VALUE )? " crypto":"", + (opt.debug & DBG_MEMORY_VALUE )? " memory":"", + (opt.debug & DBG_CACHE_VALUE )? " cache":"", + (opt.debug & DBG_MEMSTAT_VALUE)? " memstat":"", + (opt.debug & DBG_HASHING_VALUE)? " hashing":"", + (opt.debug & DBG_ASSUAN_VALUE )? " assuan":"" ); } -- cgit v1.2.3