From 30a97e770cce0d6529058052cd78990ff08b84ad Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Thu, 14 Feb 2008 19:50:10 +0000 Subject: [PATCH] Poems for AllowSetForegroundWindow (W32) --- agent/ChangeLog | 7 + agent/call-pinentry.c | 44 ++- agent/command.c | 24 +- common/ChangeLog | 5 + common/sysutils.c | 17 +- common/sysutils.h | 1 + g10/ChangeLog | 10 + g10/call-agent.c | 96 +++++-- po/be.po | 621 +++++++++++++++++++++-------------------- po/ca.po | 622 ++++++++++++++++++++++-------------------- po/cs.po | 605 ++++++++++++++++++++-------------------- po/da.po | 619 +++++++++++++++++++++-------------------- po/de.po | 606 ++++++++++++++++++++-------------------- po/el.po | 619 +++++++++++++++++++++-------------------- po/eo.po | 622 ++++++++++++++++++++++-------------------- po/es.po | 608 +++++++++++++++++++++-------------------- po/et.po | 619 +++++++++++++++++++++-------------------- po/fi.po | 619 +++++++++++++++++++++-------------------- po/fr.po | 605 ++++++++++++++++++++-------------------- po/gl.po | 622 ++++++++++++++++++++++-------------------- po/hu.po | 619 +++++++++++++++++++++-------------------- po/id.po | 619 +++++++++++++++++++++-------------------- po/it.po | 619 +++++++++++++++++++++-------------------- po/ja.po | 605 ++++++++++++++++++++-------------------- po/nb.po | 605 ++++++++++++++++++++-------------------- po/pl.po | 606 ++++++++++++++++++++-------------------- po/pt.po | 619 +++++++++++++++++++++-------------------- po/pt_BR.po | 622 ++++++++++++++++++++++-------------------- po/ro.po | 605 ++++++++++++++++++++-------------------- po/ru.po | 605 ++++++++++++++++++++-------------------- po/sk.po | 619 +++++++++++++++++++++-------------------- po/sv.po | 606 ++++++++++++++++++++-------------------- po/tr.po | 606 ++++++++++++++++++++-------------------- po/zh_CN.po | 605 ++++++++++++++++++++-------------------- po/zh_TW.po | 605 ++++++++++++++++++++-------------------- sm/ChangeLog | 13 + sm/call-agent.c | 104 +++++-- sm/gpgsm.h | 2 + sm/server.c | 21 +- 39 files changed, 8817 insertions(+), 8079 deletions(-) diff --git a/agent/ChangeLog b/agent/ChangeLog index 7dfd7c618..6a0006817 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,10 @@ +2008-02-14 Werner Koch + + * command.c (agent_inq_pinentry_launched): New. + (option_handler): Add option allow-pinentry-notify. + * call-pinentry.c (getinfo_pid_cb): New. + (start_pinentry): Ask for the PID and notify the client. + 2008-01-15 Marcus Brinkmann * call-pinentry.c (start_pinentry): Start pinentry in detached diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index 9c350a670..8b9f2afd4 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -1,5 +1,5 @@ /* call-pinentry.c - fork of the pinentry to query stuff from the user - * Copyright (C) 2001, 2002, 2004, 2007 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2007, 2008 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -177,6 +177,23 @@ atfork_cb (void *opaque, int where) } } +static int +getinfo_pid_cb (void *opaque, const void *buffer, size_t length) +{ + unsigned long *pid = opaque; + char pidbuf[50]; + + /* There is only the pid in the server's response. */ + if (length >= sizeof pidbuf) + length = sizeof pidbuf -1; + if (length) + { + strncpy (pidbuf, buffer, length); + pidbuf[length] = 0; + *pid = strtoul (pidbuf, NULL, 10); + } + return 0; +} /* Fork off the pin entry if this has not already been done. Note, that this function must always be used to aquire the lock for the @@ -193,6 +210,7 @@ start_pinentry (ctrl_t ctrl) int i; pth_event_t evt; const char *tmpstr; + unsigned long pinentry_pid; evt = pth_event (PTH_EVENT_TIME, pth_timeout (LOCK_TIMEOUT, 0)); if (!pth_mutex_acquire (&entry_lock, 0, evt)) @@ -357,9 +375,33 @@ start_pinentry (ctrl_t ctrl) } } + + /* Now ask the Pinentry for its PID. If the Pinentry is new enough + it will send the pid back and we will use an inquire to notify + our client. The client may answer the inquiry either with END or + with CAN to cancel the pinentry. */ + rc = assuan_transact (entry_ctx, "GETINFO pid", + getinfo_pid_cb, &pinentry_pid, + NULL, NULL, NULL, NULL); + if (rc) + { + log_info ("You may want to update to a newer pinentry\n"); + rc = 0; + } + else if (!rc && (pid_t)pinentry_pid == (pid_t)(-1)) + log_error ("pinentry did not return a PID\n"); + else + { + rc = agent_inq_pinentry_launched (ctrl, pinentry_pid); + if (gpg_err_code (rc) == GPG_ERR_CANCELED) + return unlock_pinentry (gpg_error (GPG_ERR_CANCELED)); + rc = 0; + } + return 0; } + /* Returns True is the pinentry is currently active. If WAITSECONDS is greater than zero the function will wait for this many seconds before returning. */ diff --git a/agent/command.c b/agent/command.c index 91279fa0f..9c2b8b7f9 100644 --- a/agent/command.c +++ b/agent/command.c @@ -1,6 +1,6 @@ /* command.c - gpg-agent command handler * Copyright (C) 2001, 2002, 2003, 2004, 2005, - * 2006 Free Software Foundation, Inc. + * 2006, 2008 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -60,6 +60,8 @@ struct server_local_s int stopme; /* If set to true the agent will be terminated after the end of this session. */ #endif + int allow_pinentry_notify; /* Set if pinentry notifications should + be done. */ }; @@ -318,6 +320,22 @@ agent_write_status (ctrl_t ctrl, const char *keyword, ...) } +/* Helper to notify the client about a lauchned Pinentry. Because + that might disturb some older clients, this is only done when + enabled via an option. Returns an gpg error code. */ +gpg_error_t +agent_inq_pinentry_launched (ctrl_t ctrl, unsigned long pid) +{ + char line[100]; + + if (!ctrl || !ctrl->server_local + || !ctrl->server_local->allow_pinentry_notify) + return 0; + snprintf (line, DIM(line)-1, "PINENTRY_LAUNCHED %lu", pid); + return assuan_inquire (ctrl->server_local->assuan_ctx, line, NULL, NULL, 0); +} + + /* GETEVENTCOUNTER @@ -697,7 +715,7 @@ cmd_pkdecrypt (assuan_context_t ctx, char *line) part. Here is an example transaction: C: GENKEY - S: INQUIRE KEYPARM + S: INQUIRE KEYPARAM C: D (genkey (rsa (nbits 1024))) C: END S: D (public-key @@ -1465,6 +1483,8 @@ option_handler (assuan_context_t ctx, const char *key, const char *value) } else if (!strcmp (key, "use-cache-for-signing")) ctrl->server_local->use_cache_for_signing = *value? atoi (value) : 0; + else if (!strcmp (key, "allow-pinentry-notify")) + ctrl->server_local->allow_pinentry_notify = 1; else return gpg_error (GPG_ERR_UNKNOWN_OPTION); diff --git a/common/ChangeLog b/common/ChangeLog index f8b2858e5..d509cd4a7 100644 --- a/common/ChangeLog +++ b/common/ChangeLog @@ -1,3 +1,8 @@ +2008-02-14 Werner Koch + + * sysutils.c (gnupg_allow_set_foregound_window): New. + (WINVER) [W32]: Define. + 2008-01-31 Werner Koch * audit.c (audit_print_result): Make sure that the output is diff --git a/common/sysutils.c b/common/sysutils.c index 869dc2a10..5e550b43a 100644 --- a/common/sysutils.c +++ b/common/sysutils.c @@ -1,6 +1,6 @@ /* sysutils.c - system helpers * Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, - * 2007 Free Software Foundation, Inc. + * 2007, 2008 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -43,6 +43,7 @@ # include #endif #ifdef HAVE_W32_SYSTEM +# define WINVER 0x0500 /* Required for AllowSetForegroundWindow. */ # include #endif #ifdef HAVE_PTH @@ -471,3 +472,17 @@ gnupg_reopen_std (const char *pgmname) #endif /* HAVE_STAT && !HAVE_W32_SYSTEM */ } + +/* Hack required for Windows. */ +void +gnupg_allow_set_foregound_window (pid_t pid) +{ + if (!pid || pid == (pid_t)(-1)) + log_info ("%s called with invalid pid %lu\n", + "gnupg_allow_set_foregound_window", (unsigned long)pid); +#ifdef HAVE_W32_SYSTEM + else if (!AllowSetForegroundWindow (pid)) + log_info ("AllowSetForegroundWindow(%lu) failed: %s\n", + (unsigned long)pid, w32_strerror (-1)); +#endif +} diff --git a/common/sysutils.h b/common/sysutils.h index 44f7ca68c..de1e3bb1e 100644 --- a/common/sysutils.h +++ b/common/sysutils.h @@ -47,6 +47,7 @@ int translate_sys2libc_fd (gnupg_fd_t fd, int for_write); int translate_sys2libc_fd_int (int fd, int for_write); FILE *gnupg_tmpfile (void); void gnupg_reopen_std (const char *pgmname); +void gnupg_allow_set_foregound_window (pid_t pid); #ifdef HAVE_W32_SYSTEM diff --git a/g10/ChangeLog b/g10/ChangeLog index 5659db147..47636a333 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,13 @@ +2008-02-14 Werner Koch + + * call-agent.c (default_inq_cb): New. + (agent_learn, agent_scd_getattr, agent_scd_pksign) + (agent_scd_pkdecrypt, agent_scd_change_pin, agent_scd_checkpin) + (agent_get_passphrase, agent_clear_passphrase): Use new callback. + (inq_writekey_parms): Fall back to the new callback for other + inquiries. + (start_agent): Tell agent that we accept pinentry notifications. + 2008-02-11 Werner Koch * server.c (cmd_getinfo): New. diff --git a/g10/call-agent.c b/g10/call-agent.c index 8800f938a..fa68e6149 100644 --- a/g10/call-agent.c +++ b/g10/call-agent.c @@ -1,5 +1,6 @@ -/* call-agent.c - divert operations to the agent - * Copyright (C) 2001, 2002, 2003, 2006, 2007 Free Software Foundation, Inc. +/* call-agent.c - Divert GPG operations to the agent. + * Copyright (C) 2001, 2002, 2003, 2006, 2007, + * 2008 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -36,6 +37,7 @@ #include "options.h" #include "i18n.h" #include "asshelp.h" +#include "sysutils.h" #include "call-agent.h" #ifndef DBG_ASSUAN @@ -72,19 +74,31 @@ struct genkey_parm_s static int start_agent (void) { + int rc; + if (agent_ctx) return 0; /* Fixme: We need a context for each thread or serialize the access to the agent. */ - return start_new_gpg_agent (&agent_ctx, - GPG_ERR_SOURCE_DEFAULT, - opt.homedir, - opt.agent_program, - opt.display, opt.ttyname, opt.ttytype, - opt.lc_ctype, opt.lc_messages, - opt.xauthority, opt.pinentry_user_data, - opt.verbose, DBG_ASSUAN, - NULL, NULL); + rc = start_new_gpg_agent (&agent_ctx, + GPG_ERR_SOURCE_DEFAULT, + opt.homedir, + opt.agent_program, + opt.display, opt.ttyname, opt.ttytype, + opt.lc_ctype, opt.lc_messages, + opt.xauthority, opt.pinentry_user_data, + opt.verbose, DBG_ASSUAN, + NULL, NULL); + if (!rc) + { + /* Tell the agent that we support Pinentry notifications. No + error checking so that it will work also with older + agents. */ + assuan_transact (agent_ctx, "OPTION allow-pinentry-notify", + NULL, NULL, NULL, NULL, NULL, NULL); + } + + return rc; } @@ -187,6 +201,29 @@ store_serialno (const char *line) +/* This is the default inquiry callback. It mainly handles the + Pinentry notifications. */ +static int +default_inq_cb (void *opaque, const char *line) +{ + (void)opaque; + + if (!strncmp (line, "PINENTRY_LAUNCHED", 17) && (line[17]==' '||!line[17])) + { + /* There is no working server mode yet thus we use + AllowSetForegroundWindow window right here. We might want to + do this anyway in case gpg is called on the console. */ + gnupg_allow_set_foregound_window ((pid_t)strtoul (line+17, NULL, 10)); + /* We do not pass errors to avoid breaking other code. */ + } + else + log_debug ("ignoring gpg-agent inquiry `%s'\n", line); + + return 0; +} + + + /* Release the card info structure INFO. */ void agent_release_card_info (struct agent_card_info_s *info) @@ -326,7 +363,7 @@ agent_learn (struct agent_card_info_s *info) memset (info, 0, sizeof *info); rc = assuan_transact (agent_ctx, "LEARN --send", - NULL, NULL, NULL, NULL, + NULL, NULL, default_inq_cb, NULL, learn_status_cb, info); return rc; @@ -353,7 +390,7 @@ agent_scd_getattr (const char *name, struct agent_card_info_s *info) if (rc) return rc; - rc = assuan_transact (agent_ctx, line, NULL, NULL, NULL, NULL, + rc = assuan_transact (agent_ctx, line, NULL, NULL, default_inq_cb, NULL, learn_status_cb, info); return rc; @@ -401,7 +438,8 @@ agent_scd_setattr (const char *name, if (rc) return rc; - rc = assuan_transact (agent_ctx, line, NULL, NULL, NULL, NULL, NULL, NULL); + rc = assuan_transact (agent_ctx, line, NULL, NULL, + default_inq_cb, NULL, NULL, NULL); return rc; } @@ -409,12 +447,20 @@ agent_scd_setattr (const char *name, /* Handle a KEYDATA inquiry. Note, we only send the data, assuan_transact takes care of flushing and writing the end */ -static assuan_error_t -inq_writekey_parms (void *opaque, const char *keyword) +static int +inq_writekey_parms (void *opaque, const char *line) { + int rc; struct writekey_parm_s *parm = opaque; - return assuan_send_data (parm->ctx, parm->keydata, parm->keydatalen); + if (!strncmp (line, "KEYDATA", 7) && (line[7]==' '||!line[7])) + { + rc = assuan_send_data (parm->ctx, parm->keydata, parm->keydatalen); + } + else + rc = default_inq_cb (opaque, line); + + return rc; } @@ -529,7 +575,7 @@ agent_scd_genkey (struct agent_card_genkey_s *info, int keyno, int force, memset (info, 0, sizeof *info); rc = assuan_transact (agent_ctx, line, - NULL, NULL, NULL, NULL, + NULL, NULL, default_inq_cb, NULL, scd_genkey_cb, info); return rc; @@ -589,7 +635,7 @@ agent_scd_pksign (const char *serialno, int hashalgo, serialno); line[DIM(line)-1] = 0; rc = assuan_transact (agent_ctx, line, membuf_data_cb, &data, - NULL, NULL, NULL, NULL); + default_inq_cb, NULL, NULL, NULL); if (rc) { xfree (get_membuf (&data, &len)); @@ -639,7 +685,7 @@ agent_scd_pkdecrypt (const char *serialno, line[DIM(line)-1] = 0; rc = assuan_transact (agent_ctx, line, membuf_data_cb, &data, - NULL, NULL, NULL, NULL); + default_inq_cb, NULL, NULL, NULL); if (rc) { xfree (get_membuf (&data, &len)); @@ -679,7 +725,7 @@ agent_scd_change_pin (int chvno, const char *serialno) snprintf (line, DIM(line)-1, "SCD PASSWD %s %d", reset, chvno); line[DIM(line)-1] = 0; rc = assuan_transact (agent_ctx, line, NULL, NULL, - NULL, NULL, NULL, NULL); + default_inq_cb, NULL, NULL, NULL); return rc; } @@ -701,7 +747,7 @@ agent_scd_checkpin (const char *serialno) line[DIM(line)-1] = 0; return assuan_transact (agent_ctx, line, NULL, NULL, - NULL, NULL, NULL, NULL); + default_inq_cb, NULL, NULL, NULL); } @@ -775,7 +821,8 @@ agent_get_passphrase (const char *cache_id, init_membuf_secure (&data, 64); rc = assuan_transact (agent_ctx, line, - membuf_data_cb, &data, NULL, NULL, NULL, NULL); + membuf_data_cb, &data, + default_inq_cb, NULL, NULL, NULL); if (rc) xfree (get_membuf (&data, NULL)); @@ -806,5 +853,6 @@ agent_clear_passphrase (const char *cache_id) snprintf (line, DIM(line)-1, "CLEAR_PASSPHRASE %s", cache_id); line[DIM(line)-1] = 0; - return assuan_transact (agent_ctx, line, NULL, NULL, NULL, NULL, NULL, NULL); + return assuan_transact (agent_ctx, line, NULL, NULL, + default_inq_cb, NULL, NULL, NULL); } diff --git a/po/be.po b/po/be.po index e3b059021..8802ff3c0 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2003-10-30 16:35+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -15,18 +15,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0.2\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -34,7 +34,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,44 +44,44 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "пароль занадта доўгі\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "пароль занадта доўгі\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 msgid "Invalid characters in PIN" msgstr "" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "дрэнны MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "дрэнны пароль" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "дрэнны пароль" @@ -93,18 +93,18 @@ msgstr "" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -400,18 +400,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "" @@ -424,16 +424,16 @@ msgstr "памылка стварэньня \"%s\": %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" @@ -447,22 +447,22 @@ msgstr "" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "запіс у stdout\n" @@ -482,7 +482,7 @@ msgstr "немагчыма адкрыць %s: %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" @@ -507,12 +507,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, c-format msgid "%s %s stopped\n" msgstr "" @@ -696,43 +696,43 @@ msgstr "дрэнны пароль" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "памылка стварэньня \"%s\": %s\n" @@ -773,17 +773,17 @@ msgstr "скасавана карыстальнікам\n" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "" @@ -953,24 +953,24 @@ msgstr "дрэнны сэртыфікат" msgid "Included certificates" msgstr "дрэнны сэртыфікат" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "невядомая вэрсыя" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Для \"%s\" даведка адсутнічае" @@ -1083,7 +1083,7 @@ msgstr "" msgid "not human readable" msgstr "" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "сакрэтны ключ недаступны" @@ -1093,160 +1093,160 @@ msgstr "сакрэтны ключ недаступны" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "" -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "непадтрымліваецца" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "за шмат пераваг для \"%c\"\n" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1254,133 +1254,133 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Калі ласка, абярыце від ключа, які Вам патрэбны:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Подпіс створаны ў %.*s з выкарыстаньнем %s ID ключа %08lX\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr "" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Калі ласка, абярыце від ключа, які Вам патрэбны:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "невядомы альгарытм сьцісканьня" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "сакрэтны ключ недаступны" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "паказаць гэтую даведку" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Даведка адсутнічае" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 -msgid "change the login name" -msgstr "" - -#: g10/card-util.c:1319 -#, fuzzy -msgid "change the language preferences" -msgstr "за шмат пераваг для \"%c\"\n" - #: g10/card-util.c:1320 -msgid "change card holder's sex" +msgid "change the login name" msgstr "" #: g10/card-util.c:1321 #, fuzzy -msgid "change a CA fingerprint" -msgstr "паказаць ключы й адбіткі пальцаў" +msgid "change the language preferences" +msgstr "за шмат пераваг для \"%c\"\n" #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "стварыць новую пару ключоў" +msgid "change a CA fingerprint" +msgstr "паказаць ключы й адбіткі пальцаў" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "стварыць новую пару ключоў" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Загад> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "несумяшчальныя загады\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "сакрэтны ключ недаступны" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Нерэчаісны загад (паспрабуйце \"help\")\n" @@ -1388,7 +1388,7 @@ msgstr "Нерэчаісны загад (паспрабуйце \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "немагчыма адкрыць \"%s\"\n" @@ -2061,407 +2061,407 @@ msgstr "" msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не дазваляецца разам з %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "запіс у stdout\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3095 +#: g10/gpg.c:3114 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3097 +#: g10/gpg.c:3116 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [назва_файла]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [назва_файла]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [назва_файла]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [назва_файла]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [назва_файла]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [назва_файла]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [назва_файла]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [загады]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[назва_файла]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "" @@ -2938,22 +2938,22 @@ msgstr "" msgid "NOTE: secondary key is online and stored on card\n" msgstr "" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "" @@ -5816,12 +5816,12 @@ msgstr "памылка чытаньня файла" msgid "trustdb: sync failed: %s\n" msgstr "" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -5835,112 +5835,112 @@ msgstr "" msgid "can't access `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "немагчыма адкрыць \"%s\"\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" @@ -6483,16 +6483,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6502,6 +6502,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6525,11 +6530,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "даведка (help)" @@ -6539,224 +6544,238 @@ msgstr "даведка (help)" msgid "critical certificate extension %s is not supported" msgstr "" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "сакрэтны ключ недаступны" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "памылка стварэньня \"%s\": %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "грамадскі ключ ня знойдзены" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "дрэнны сэртыфікат" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Даведка адсутнічае" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "збой падпісаньня: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "сакрэтны ключ недаступны" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Гэты ключ згубіў састарэў!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Гэты ключ згубіў састарэў!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Гэты ключ згубіў састарэў!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Гэты ключ згубіў састарэў!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr "Подпіс створаны ў %.*s з выкарыстаньнем %s ID ключа %08lX\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "дрэнны сэртыфікат" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "дрэнны сэртыфікат" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "паказаць ключы й адбіткі пальцаў" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 msgid "no issuer found in certificate" msgstr "" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "праверыць подпіс" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "грамадскі ключ ня знойдзены" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "дрэнны сэртыфікат" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "дрэнны сэртыфікат" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7617,7 +7636,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index 7cbe085f1..1a7651eb1 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2005-02-04 02:04+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -35,18 +35,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "no s'ha pogut emmagatzemar l'empremta digital: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -55,7 +55,7 @@ msgstr "Introduïu la contrasenya; aquesta ha de ser una frase secreta \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -65,45 +65,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "la línia és massa llarga\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "la contrasenya és massa llarga\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Hi ha un caràcter invàlid en el camp *nom*\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "l'MPI és erroni" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "la contrasenya és errònia" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "la contrasenya és errònia" @@ -115,18 +115,18 @@ msgstr "l'algoritme de protecció %d%s no està suportat\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -430,18 +430,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, 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:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fitxer d'opcions «%s»: %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "s'estan llegint opcions de «%s»\n" @@ -454,16 +454,16 @@ msgstr "error en crear «%s»: %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no es pot crear el directori «%s»: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" @@ -478,22 +478,22 @@ msgstr "Certificat de revocació vàlid" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "error en crear «%s»: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error mentre s'enviava a «%s»: %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "ha fallat l'actualització: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "s'està escrivint la clau secreta a «%s»\n" @@ -513,7 +513,7 @@ msgstr "base de dades de confiança: ha fallat la lectura (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: no s'ha pogut crear el directori: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "error en la lectura de «%s»: %s\n" @@ -538,12 +538,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, 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:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claus es descarta\n" @@ -732,43 +732,43 @@ msgstr "canvia la contrasenya" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "error en la creació de la contrasenya: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "no es pot obrir el fitxer: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "s'ha produït un error mentre s'escrivia l'anell secret «%s»: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "error en la lectura de «%s»: %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "error en la lectura de «%s»: %s\n" @@ -812,18 +812,18 @@ msgid "problem with the agent\n" msgstr "hi ha un problema amb l'agent: l'agent ha tornat 0x%lx\n" # bolcats de memòria? ivb -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "no s'han pogut desactivar els bolcats de memòria: %s\n" # Indi. ivb -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" @@ -1010,24 +1010,24 @@ msgstr "Certificat correcte" msgid "Included certificates" msgstr "Certificat invàlid" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "la versió és desconeguda" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "No hi ha ajuda disponible per a `%s'" @@ -1151,7 +1151,7 @@ msgstr "AVÍS: s'hi han trobat dades de notació invàlides\n" msgid "not human readable" msgstr "no llegible per humans" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "la clau secreta no està disponible" @@ -1163,31 +1163,31 @@ msgstr "" # Destès? ivb # Desatès, sí. jm -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "no es pot fet això en mode desatès\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "La vostra selecció? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[no establert]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "home" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "dóna" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "no especificat" @@ -1195,134 +1195,134 @@ msgstr "no especificat" # Probablement és una clau, femení. jm # Werner FIXME: please add translator comment saying *what* is # uncompressed so we know the gender. jm -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "no forçat" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "forçat" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "no hi ha cap clau pública corresponent: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "preferències actualitzades" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "error: l'empremta digital és invàlida\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "Empremta digital:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "error: l'empremta digital és invàlida\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "La generació de claus ha fallat: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "no s'han trobat dades OpenPGP vàlides.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "s'ha produït un error mentre s'escrivia l'anell secret «%s»: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1330,135 +1330,135 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Seleccioneu quin tipus de clau voleu:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr "" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "La selecció és invàlida.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Seleccioneu la raó de la revocació:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "l'algorisme de protecció és desconegut\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Les parts secretes de la clau primària no estan disponibles.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "ix del menú" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "les ordres entren en conflicte\n" # «pantalla» o «ajuda»? ivb # «ajuda», evidentment. jm -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "mostra aquesta ajuda" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "La clau és disponible en: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "canvia la data de caducitat" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "canvia la confiança" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra empremta" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "genera un nou parell de claus" +msgid "change a CA fingerprint" +msgstr "mostra empremta" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "genera un nou parell de claus" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Ordre> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "les ordres entren en conflicte\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "L'ordre no és vàlida (proveu «help»)\n" @@ -1466,7 +1466,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "no s'ha pogut obrir «%s»\n" @@ -2187,419 +2187,419 @@ msgstr "mostra en quin anell de claus està una clau llistada" msgid "show expiration dates during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no és per a ús normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, 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:2532 +#: g10/gpg.c:2550 #, 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:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, 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:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, 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:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, 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:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, 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:2822 +#: g10/gpg.c:2840 #, 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:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 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:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVÍS: %s té preferència sobre %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no és permés amb %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no té sentit amb %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "l'algorisme de resum seleccionat no és vàlid\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algorisme de resum de certificació seleccionat no és vàlid\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ha de ser major que 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ha de ser major que 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 #, 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:3097 +#: g10/gpg.c:3116 #, 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:3100 +#: g10/gpg.c:3119 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:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "les preferències per defecte són invàlides\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "les preferències personals de xifrat són invàlides\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "les preferències personals de digest són invàlides\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "les preferències personals de compressió són invàlides\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s encara no funciona amb %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, 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:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nom_del_fitxer]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nom_del_fitxer]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "ha fallat el desxifratge: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nom_del_fitxer]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nom_del_fitxer]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom_del_fitxer]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nom_del_fitxer]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nom_del_fitxer]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [ordres]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'enviament al servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la recepció des del servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "l'exportació de la clau ha fallat: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "ha fallat la cerca al servidor de claus: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "ha fallat el refresc des del servidor de claus: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "no s'ha pogut llevar l'armadura: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "no s'ha pogut crear l'armadura: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "l'algoritme de dispersió és invàlid «%s»\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nom_del_fitxer]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Endavant, escriviu el missatge...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 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:4211 +#: g10/gpg.c:4230 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:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" @@ -3101,22 +3101,22 @@ msgstr "es descarta: la clau secreta ja és present\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "error en crear l'anell «%s»: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "s'ha creat l'anell «%s»\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "error en crear «%s»: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "no s'ha pogut reconstruir la memòria cau de l'anell: %s\n" @@ -6269,12 +6269,12 @@ msgstr "error de lectura: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "base de dades de confiança: no s'ha pogut sincronitzar: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "reg de la base de dades de confiança %lu: ha fallat lseek: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -6291,112 +6291,112 @@ msgstr "la transacció de la base de dades de confiança és massa gran\n" msgid "can't access `%s': %s\n" msgstr "no s'ha pogut tancar «%s»: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: el directori no existeix!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "no es pot crear el directori «%s»: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "no s'ha pogut obrir «%s»\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: no s'ha pogut crear un registre de versió: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: s'ha creat una base de dades de confiança invàlida\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: s'ha creat la base de dades de confiança\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOTA: no es pot escriure en la base de dades de confiança\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: la base de dades de confiança és invàlida\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: no s'ha pogut crear la taula de dispersió: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: error en actualitzar el registre de la versió: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: error en llegir el registre de la versió: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: error en escriure el registre de la versió: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "base de dades de confiança: ha fallat lseek: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "base de dades de confiança: ha fallat la lectura (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s no és un fitxer de base de dades de confiança\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: registre de versió amb número de registre %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: la versió de fitxer %d és invàlida\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: error en llegir el registre lliure: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: error en escriure el registre de directoris: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: no s'ha pogut posar a zero un registre: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: no s'ha pogut afegir un registre: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "la base de dades de confiança està corrompuda; per favor, executeu «gpg --" @@ -6958,16 +6958,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6977,6 +6977,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "el caràcter radix64 %02x invàlid s'ha omés\n" +#: sm/call-agent.c:136 +#, fuzzy, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "no s'ha pogut posar «%s» en la base de dades de confiança - %s\n" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -7001,11 +7006,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "ajuda" @@ -7015,238 +7020,252 @@ msgstr "ajuda" msgid "critical certificate extension %s is not supported" msgstr "la versió %d del protocol de gpg-agent no està suportada\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "no s'ha pogut obrir «%s»: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "error en la creació de la contrasenya: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "no s'ha pogut eliminar el bloc de claus: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "no s'ha pogut inicialitzar la base de dades de confiança: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: aquesta clau ha estat revocada!" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "Certificat correcte" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "La clau és disponible en: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "no s'ha pogut comprovar la signatura creada: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 #, fuzzy msgid "certificate not yet valid" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " signatures noves: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "S'ha creat el certificat de revocació.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Empremta digital:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 #, fuzzy msgid "root certificate has now been marked as trusted\n" msgstr "" "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "Certificat correcte" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 #, fuzzy msgid "root certificate is not marked trusted" msgstr "" "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "no s'ha pogut comprovar la signatura creada: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 #, fuzzy msgid "certificate chain too long\n" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 #, fuzzy msgid "issuer certificate not found" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verifica una signatura" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "certificat duplicat: esborrat" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "" "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -8130,7 +8149,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" @@ -9818,9 +9837,6 @@ msgstr "" #~ msgstr "" #~ "l'usuari «%s» no està en la base de dades de confiança - inserint-lo\n" -#~ msgid "failed to put '%s' into trustdb: %s\n" -#~ msgstr "no s'ha pogut posar «%s» en la base de dades de confiança - %s\n" - #~ msgid "WARNING: can't yet handle long pref records\n" #~ msgstr "AVÍS: encara no es poden manejar registres de prefències llargs\n" diff --git a/po/cs.po b/po/cs.po index 0b1edae14..28f9454cd 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-11-26 09:12+0200\n" "Last-Translator: Roman Pavlik \n" "Language-Team: Czech \n" @@ -15,18 +15,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "uloen fingerprintu se nezdailo: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -35,7 +35,7 @@ msgstr "Pros #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "platnost: %s" @@ -46,45 +46,45 @@ msgstr "platnost: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "dek je pli dlouh" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "dek je pli dlouh" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Neplatn znak ve jmn\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "patn MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "patn heslo" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "patn heslo" @@ -96,18 +96,18 @@ msgstr "ochrann #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "nemohu vytvoit `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -408,18 +408,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn soubor s monostmi `%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "soubor s monostmi `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "tu monosti z `%s'\n" @@ -432,16 +432,16 @@ msgstr "chyba p #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemohu vytvoit adres `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nemohu vytvoit `%s': %s\n" @@ -456,22 +456,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "chyba pi zskn novho PINu: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, 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:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizace selhala: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisuji tajn kl do `%s'\n" @@ -491,7 +491,7 @@ msgstr "fstat(%d) selhal v %s: %s\n" msgid "can't use `%s' as home directory\n" msgstr "nemohu vytvoit adres `%s': %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "chyba pi ten `%s': %s\n" @@ -516,12 +516,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizace tajnho kle selhala: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: peskoeno: %s\n" @@ -709,43 +709,43 @@ msgstr "zm msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "chyba pi vytven hesla: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "nemohu otevt podepsan data '%s'\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "chyba pi ten `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "chyba pi zskn informac o aktulnm kli: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "chyba pi ten `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "chyba pi ten `%s': %s\n" @@ -787,18 +787,18 @@ msgstr "zru msgid "problem with the agent\n" msgstr "problm s agentem - pouvn agenta vypnuto\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nemohu vypnout vytven core soubor: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" "VAROVN: vlastnictv roziujcho modulu nen nastaveno bezpen `%s'\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "VAROVN: pstupov prva roziujcmu modulu nejsou bezpen `%s'\n" @@ -970,24 +970,24 @@ msgstr " msgid "Included certificates" msgstr "patn certifikt" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "neznm verze" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Pomoc nen dostupn pro '%s'" @@ -1105,7 +1105,7 @@ msgstr "VAROV msgid "not human readable" msgstr "nen v pmo itelnm formtu" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGp karta nen dostupn: %s\n" @@ -1115,153 +1115,153 @@ msgstr "OpenPGp karta nen msgid "OpenPGP card no. %s detected\n" msgstr "Nalezena OpenPGP karta slo %s\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "nelze provst v dvkovm mdu\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "V vbr? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[nen nastaven]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "mu" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "ena" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "neuvedeno" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "nen vyadovno" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "vyadovno" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Chyba: V souasn verzi je povolenou pouze plain ASCII.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Chyba: Znak \"<\" nelze pout.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Chyba: Vce mezer nen povoleno.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Pjmen dritele karty: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Jmno (kestn) dritele karty: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Chyba: jmno a pjmen je pli dlouh (limit je %d znak).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL pro zskn veejnho kle: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Chyba: URL je pli dlouh (limit je %d znak).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "chyba pi ten `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Login (jmnu tu): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Chyba: Login je pli dlouh (limit je %d znak).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Privtn DO data: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Chyba: Privtn DO je pli dlouh (limit je %d znak).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Jazykov pedvolby: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Chyba: neplatn dlka etezce s pedvolbami.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Chyba: neplatn znak v etzci s pedvolbami\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Zadejte pohlav: M - musk, F - ensk nebo stisnte mezernk: " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Chyba: neplatn odpov.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CA fingerprint: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Chyba: nesprvn naformtovan fingerprint.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "operace s klem nen mon: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "toto nen OpenPGP karta" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "chyba pi zskn informac o aktulnm kli: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Pepsat existujc kl? (a/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Vytvoit zlohu ifrovacho kle mimo kartu? (A/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Pepsat existujc kle? (a/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1272,120 +1272,120 @@ msgstr "" " PIN = `%s' PIN administrtora = `%s'\n" "Toto nastaven mete zmnit pkazem --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Prosm, vyberte druh kle, kter chcete generovat:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Podepisovac kl\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) ifrovac kl\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Autentizan kl\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Neplatn vbr.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Prosm vyberte msto pro uchovn kle:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "neznm algoritmus pro ochranu kle\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "tajn sti kle nejsou dostupn\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "tajn kl je na kart uloen\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "ukonit toto menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "zobraz administrtorsk pkazy" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "ukzat tuto pomoc" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "vypi vechna dostupn data" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "zmn jmno majitele karty" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "zmn URL pro zskn kle" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "zsk kl specifikovan v URL karty" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "zmnit login name" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "zmnit jazykov pedvolby" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "zmn pohlav dritele karty" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "vypsat fingerprint certifikan autority" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "zapnout/vypnout poadovn PINu pi kad self-sign operaci" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "vytvoit nov pr kl" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "nabdka pro zmnu anebo odblokovn PINu" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "ov PIN a vypi vechna data" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Pkaz> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "pouze administrtorsk pkazy\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "administrtorsk pkazy jsou povoleny\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "administrtorsk pkazy nejsou povoleny\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Neplatn pkaz (zkuste \"help\")\n" @@ -1393,7 +1393,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nelze otevt `%s'\n" @@ -2102,410 +2102,410 @@ msgstr "p msgid "show expiration dates during signature listings" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn soubor s monostmi `%s ignorovn'\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZNMKA: %s nen pro normln pouit!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nen platn znakov sada\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "nelze zpracovat URL serveru kl\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn parametr pro server kl\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "neplatn parametr pro server kl\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn parametr pro import\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "neplatn parametr pro import\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn parametr pro export\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "neplatn parametr pro export\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn parametr pro vpis\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "neplatn parametr pro vpis\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan URL preferovanho serveru kl je neplat\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn parametr pro oven\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "neplatn parametr pro oven\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nelze nastavit exec-path na %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn parametr pro oven\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "VAROVN: program me vytvoit soubor core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVN: %s pepe %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nen dovoleno pouvat %s s %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedv s %s smysl!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "vybran komprimovac algoritmus je neplatn\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "poloka completes-needed mus bt vt ne 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus bt vt ne 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNMKA: jednoduch md S2K (0) je drazn nedoporuovn\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "neplatn defaultn pedvolby\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "neplatn uivatelsk pedvolby pro ifrovn\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "neplatn uivatelsk pedvolby pro hashovn\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "neplatn uivatelsk pedvolby pro komprimaci\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s dosud nen funkn s %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemohu inicializovat databzi dvry: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [jmno souboru]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [jmno souboru]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symetrick ifrovn `%s' se nepovedlo: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [jmno souboru]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [jmno souboru]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [jmno souboru]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [jmno souboru]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [jmno souboru]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [jmno souboru]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [jmno souboru]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [jmno souboru]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id uivatele" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id uivatele" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uivatele [pkazy]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "odesln na keyserver se nezdailo: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "zskn dat z keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "export kle se nepodail: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "hledn na keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh dat na keyserveru se nezdail: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovn z ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovn do ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn hashovac algoritmus `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[jmno souboru]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Zante pst svou zprvu ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pro certifikan politiku je neplatn\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "zadan URL pro podepisovac politiku je neplatn\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan URL preferovanho serveru kl je neplat\n" @@ -2990,22 +2990,22 @@ msgstr "POZN msgid "NOTE: secondary key is online and stored on card\n" msgstr "POZNMKA: sekundrn kl je online a je uloen na kart\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "chyba pi vytven souboru kl (keyring)`%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "soubor kl (keyring) `%s' vytvoen\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "zdroj bloku kle `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "selhalo obnoven vyrovnvac pamti kl: %s\n" @@ -5980,12 +5980,12 @@ msgstr "chyba p msgid "trustdb: sync failed: %s\n" msgstr "databze dvry: synchronizace selhala %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "zznam v databzi dvry %lu: lseek() se nepodail: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "zznam v databzi dvry %lu: zpis se nepodail (n=%d): %s\n" @@ -5999,112 +5999,112 @@ msgstr "transakce s datab msgid "can't access `%s': %s\n" msgstr "nemohu otevt `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: adres neexistuje!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "nemohu vytvoit zmek pro `%s'\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "nelze zamt `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: nepodailo se vytvoit zznam verze: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: vytvoena neplatn databze dvry\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: databze dvry vytvoena\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "POZNMKA: do trustedb nezle zapisovat\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: neplatn databze dvry\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: nepodailo se vytvoit hashovac tabulku: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: chyba pi aktualizaci zznamu verze: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: chyba pi ten zznamu verze: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: chyba pi zpisu zznamu verze: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "databze dvry: procedura lseek() selhala: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "databze dvry: procedura read() (n=%d) selhala: %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: nen soubor databze dvry\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: zznam verze s slem %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: neplatn verze souboru %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: chyba pi ten volnho zznamu: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: chyba pi zpisu adresovho zznamu: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: vynulovn zznamu selhalo: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: pidn zznamu selhalo: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "databze dvry je pokozena; prosm spuste \"gpg --fix-trustdb\".\n" @@ -6652,16 +6652,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6671,6 +6671,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "neplatn radix64 znak %02X byl peskoen\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6695,11 +6700,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6708,227 +6713,241 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "gpg-agent protokol verze %d nen podporovn\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "Nemohu otevt `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "exportovn tajnho kle nen povoleno\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "chyba pi vytven hesla: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "ten veejnho kle se nezdailo: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "nelze uloit kl: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "POZNMKA: kl byl revokovn" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "patn certifikt" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Kl k dispozici na: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "kontrola vytvoenho podpisu se nepodaila: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "exportovn tajnho kle nen povoleno\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Platnost kle vyprela!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Platnost kle vyprela!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Platnost kle vyprela!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Platnost kle vyprela!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " odstrann podpisy: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Revokan certifikt vytvoen.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "patn certifikt" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " Seriov slo karty =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "CA fingerprint: " -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "vytvoit revokan certifikt" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrola vytvoenho podpisu se nepodaila: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verifikovat podpis" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "duplicita pedvolby `%s'\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Revokan certifikt vytvoen.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "patn certifikt" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7804,7 +7823,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/da.po b/po/da.po index e5b77583f..1cb00f2d1 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2003-12-03 16:11+0100\n" "Last-Translator: Birger Langkjer \n" "Language-Team: Danish \n" @@ -17,18 +17,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" # er det klogt at overstte TrustDB? -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -36,7 +36,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -46,43 +46,43 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 msgid "PIN too long" msgstr "" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 msgid "Passphrase too long" msgstr "" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Ugyldige bogstaver i navn\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "drlig mpi" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "drlig kodestning" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "drlig kodestning" @@ -94,18 +94,18 @@ msgstr "valgte cifferalgoritme %d er ugyldig\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, fuzzy, c-format msgid "can't create `%s': %s\n" msgstr "kan ikke oprette %s: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -406,18 +406,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "alternativfil`%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "lser indstillinger fra `%s'\n" @@ -430,16 +430,16 @@ msgstr "fejl ved l #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke oprette %s: %s\n" @@ -453,22 +453,22 @@ msgstr "certifikatl msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "fejl ved oprettelse af kodestning: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "signering fejlede: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmeligt certifikat til '%s'\n" @@ -488,7 +488,7 @@ msgstr "kan ikke msgid "can't use `%s' as home directory\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fejl ved lsning af '%s': %s\n" @@ -513,12 +513,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: udelod: %s\n" @@ -701,43 +701,43 @@ msgstr " msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "fejl ved oprettelse af kodestning: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "kan ikke bne %s: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "fejl ved skrivning af nglering `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "fejl ved lsning af '%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "fejl ved lsning af '%s': %s\n" @@ -777,17 +777,17 @@ msgstr "" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan ikke sl core-dump fra: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "" @@ -957,24 +957,24 @@ msgstr "Godt certifikat" msgid "Included certificates" msgstr "Godt certifikat" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "ukendt version" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Ingen hjlp tilgngelig for `%s'" @@ -1093,7 +1093,7 @@ msgstr "ingen gyldig OpenPGP data fundet.\n" msgid "not human readable" msgstr "" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "hemmelig ngle ikke tilgngelig" @@ -1103,166 +1103,166 @@ msgstr "hemmelig n msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Dit valg? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "sltil" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "sltil" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "ikke bearbejdet" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "skriver offentligt certifikat til '%s'\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "vis prferencer" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Ugyldige bogstaver i navn\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Ugyldige bogstaver i navn\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "fejl i trailerlinie\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "Fingeraftryk:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "fejl i trailerlinie\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "ingen gyldig OpenPGP data fundet.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "fejl ved skrivning af nglering `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 #, fuzzy msgid "Replace existing key? (y/N) " msgstr "Vil du gerne signere? " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 #, fuzzy msgid "Replace existing keys? (y/N) " msgstr "Vil du gerne signere? " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1270,136 +1270,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Vlg venligst hvilken slags ngle du vil have:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Denne ngle er ikke beskyttet.\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) ElGamal (kryptr kun)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Ugyldigt valg.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "rev- forkert ngletilbagekald\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "ukendt kompressionsalgoritme" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "hemmelig ngle ikke tilgngelig" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "udelod: hemmelig ngle er allerede tilstede\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "afslut denne menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "vis denne hjlp" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Ingen hjlp tilgngelig" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "ndr udlbsdatoen" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "vis prferencer" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "vis fingeraftryk" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "generr et nyt nglepar" +msgid "change a CA fingerprint" +msgstr "vis fingeraftryk" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "generr et nyt nglepar" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "" -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "konfliktende kommandoer\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "" @@ -1407,7 +1407,7 @@ msgstr "" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke bne `%s'\n" @@ -2088,423 +2088,423 @@ msgstr "skift imellem hemmelig og offentlig n msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTITS: %s er ikke til normal brug!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "importr ngler fra en ngleserver: %s\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 #, fuzzy msgid "invalid import options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 #, fuzzy msgid "invalid export options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ikke tilladt med %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er meningsls sammen med %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "valgte resumalgoritme er ugyldig\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "valgte resumalgoritme er ugyldig\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3095 +#: g10/gpg.c:3114 #, 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:3097 +#: g10/gpg.c:3116 #, 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: simpel S2K modus (0) frardes p det skarpeste\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 #, fuzzy msgid "invalid default preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s er meningsls sammen med %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [filnavn (som gemmes)]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn (som krypteres)]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [filnavn (som signeres)]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn (som dekrypteres)]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key bruger-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key bruger-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key bruger-id [kommandoer]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "signering fejlede: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hash-algoritme `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "G til sagen og skriv meddelelsen ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" @@ -2987,22 +2987,22 @@ msgstr "udelod: hemmelig n msgid "NOTE: secondary key is online and stored on card\n" msgstr "udelod: hemmelig ngle er allerede tilstede\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, fuzzy, c-format msgid "error creating keyring `%s': %s\n" msgstr "fejl ved skrivning af nglering `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, fuzzy, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "ingen standard offentlig nglering\n" @@ -5963,12 +5963,12 @@ msgstr "panser: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -5982,112 +5982,112 @@ msgstr "" msgid "can't access `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "kan ikke oprette %s: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "kan ikke bne `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" @@ -6636,16 +6636,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6655,6 +6655,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "ugyldigt radix64 tegn %02x udeladt\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6678,11 +6683,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "hjlp" @@ -6692,228 +6697,242 @@ msgstr "hj msgid "critical certificate extension %s is not supported" msgstr "valgte cifferalgoritme %d er ugyldig\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "fejl ved oprettelse af kodestning: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "fjernelse af beskyttelse fejlede: %s\n" + # er det klogt at overstte TrustDB? -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "ngle %08lX: ngle er blevet annulleret!\n" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "Godt certifikat" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Ingen hjlp tilgngelig" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "Kan ikke tjekke signatur: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " nye signaturer: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "ngle %08lX: offentlig ngle importeret\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Fingeraftryk:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "Godt certifikat" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "Kan ikke tjekke signatur: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 #, fuzzy msgid "certificate chain too long\n" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "godkend en signatur" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "certifikatlseproblem: %s\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "ngle %08lX: offentlig ngle importeret\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "Godt certifikat" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7779,7 +7798,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/de.po b/po/de.po index 39a7916be..3baf8e193 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-2.0.6\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2008-01-22 12:46+0100\n" "Last-Translator: Walter Koch \n" "Language-Team: German \n" @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "Die Sperre für das Pinentry kann nicht gesetzt werden: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" @@ -31,7 +31,7 @@ msgstr "" "Bitte geben Sie Ihre PIN ein, so daß der geheime Schlüssel benutzt werden " "kann" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -41,7 +41,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "Qualität:" @@ -51,43 +51,43 @@ msgstr "Qualität:" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" "Die Qualität der Passphrase, die Sie oben eingegeben haben.\n" "Bitte fragen sie Ihren Systembeauftragten nach den\n" "Kriterien für die Messung der Qualität." -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "SETERROR %s (Versuch %d von %d)" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 msgid "PIN too long" msgstr "Die PIN ist zu lang" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 msgid "Passphrase too long" msgstr "Das Mantra (Passphrase) ist zu lang" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 msgid "Invalid characters in PIN" msgstr "Ungültige Zeichen in der PIN" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "Die PIN ist zu kurz" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 msgid "Bad PIN" msgstr "Falsche PIN" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 msgid "Bad Passphrase" msgstr "Falsche Passphrase" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 msgid "Passphrase" msgstr "Passphrase" @@ -98,18 +98,18 @@ msgstr "SSH Schlüssel von mehr als %d Bits werden nicht unterstützt\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "'%s' kann nicht erzeugt werden: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -413,18 +413,18 @@ msgstr "ungültige Debugebene `%s' angegeben\n" 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:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "Optionendatei '%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" @@ -437,16 +437,16 @@ msgstr "Fehler beim Erstellen von `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Verzeichnis `%s' kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "Der Name des Sockets ist zu lang\n" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, c-format msgid "can't create socket: %s\n" msgstr "Socket kann nicht erzeugt werden: %s\n" @@ -460,21 +460,21 @@ msgstr "Der Name des Sockets `%s' ist zu lang\n" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 msgid "error getting nonce for the socket\n" msgstr "Fehler beim Ermitteln der \"Nonce\" dieses Sockets\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, 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:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, c-format msgid "listen() failed: %s\n" msgstr "Der listen()-Aufruf ist fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, c-format msgid "listening on socket `%s'\n" msgstr "Es wird auf Socket `%s' gehört\n" @@ -494,7 +494,7 @@ msgstr "stat()-Aufruf für `%s' fehlgeschlagen: %s\n" 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:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "Fehler beim Lesen der \"Nonce\" von FD %d: %s\n" @@ -519,12 +519,12 @@ msgstr "SSH-Handhabungsroutine 0x%lx für fd %d gestartet\n" 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:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select()-Aufruf fehlgeschlagen: %s - warte 1s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, c-format msgid "%s %s stopped\n" msgstr "%s %s angehalten\n" @@ -722,43 +722,43 @@ msgstr "Die Passphrase ändern" msgid "I'll change it later" msgstr "Ich werde sie später ändern" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, c-format msgid "error creating a pipe: %s\n" msgstr "Fehler beim Erzeugen einer \"Pipe\": %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "Pipe kann nicht zum Lesen \"fdopen\"t werden: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, c-format msgid "error forking process: %s\n" msgstr "Fehler beim \"Forken\" des Prozess: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "Das Warten auf die Beendigung des Prozesses %d schlug fehl: %s\n" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, c-format msgid "error getting exit code of process %d: %s\n" msgstr "Fehler beim Holen des Exitwerte des Prozesses %d: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, c-format msgid "error running `%s': exit status %d\n" msgstr "Fehler bei Ausführung von `%s': Endestatus %d\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "Feler bei Ausführung von `%s': wahrscheinlich nicht installiert\n" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, c-format msgid "error running `%s': terminated\n" msgstr "Fehler bei Ausführung von `%s': beendet\n" @@ -797,17 +797,17 @@ msgstr "Vom Benutzer abgebrochen\n" msgid "problem with the agent\n" msgstr "Problem mit dem Agenten\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "core-dump-Dateierzeugung kann nicht abgeschaltet werden: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "WARNUNG: Unsichere Besitzrechte für %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "WARNUNG: Unsichere Zugriffsrechte für %s \"%s\"\n" @@ -965,23 +965,23 @@ msgstr "CRL/OCSP Prüfung der Zertifikate" msgid "Included certificates" msgstr "Mitgesendete Zertifikate" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "Keine Einträge in der Audit-Datei" -#: common/audit.c:1014 +#: common/audit.c:1017 msgid "Unknown operation" msgstr "Unbekannte Operation" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "Gpg-Agent benutzbar" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "Dirmngr benutzbar" -#: common/audit.c:1078 +#: common/audit.c:1081 #, c-format msgid "No help available for `%s'." msgstr "Keine Hilfe für '%s' vorhanden." @@ -1097,7 +1097,7 @@ msgstr "WARNUNG: Ungültige \"Notation\"-Daten gefunden\n" msgid "not human readable" msgstr "nicht als Klartext darstellbar" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP Karte ist nicht vorhanden: %s\n" @@ -1107,155 +1107,155 @@ msgstr "OpenPGP Karte ist nicht vorhanden: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP Karte Nr. %s erkannt\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "Dies kann im Batchmodus nicht durchgeführt werden.\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Ihre Auswahl? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[nicht gesetzt]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "männlich" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "weiblich" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "unbestimmt" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "nicht zwingend" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "zwingend" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Fehler: Nur reines ASCII ist derzeit erlaubt.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Fehler: Das Zeichen \"<\" kann nicht benutzt werden.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Fehler: Doppelte Leerzeichen sind nicht erlaubt.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Familienname des Kartenbesitzers:" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Vorname des Kartenbesitzers:" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" "Fehler: Der zusammengesetzte Name ist zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL um den öffentlichen Schlüssel zu holen: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Fehler: URL ist zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "Fehler beim Lesen von `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Logindaten (Kontenname): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Fehler: Logindaten sind zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Geheime DO-Daten: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Fehler: Geheime DO-Daten sind zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Spracheinstellungen" -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Fehler: Ungültige Länge der Einstellungs-Zeichenfolge.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Fehler: Ungültige Zeichen in der Einstellungs-Zeichenfolge\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Geschlecht: (Männlich (M), Weiblich (F) oder Leerzeichen): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Fehler: ungültige Antwort.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CA-Fingerabdruck: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fehler: ungültig geformter Fingerabdruck.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "Schlüsseloperation nicht möglich: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "Keine gültige OpenPGP-Karte" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "Fehler beim Holen der aktuellen Schlüsselinfo: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Vorhandenen Schlüssel ersetzen? (j/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Sicherung des Verschlüsselungsschlüssel außerhalb der Karte erstellen? (J/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Vorhandene Schlüssel ersetzen? (j/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1266,120 +1266,120 @@ msgstr "" " PIN = `%s' Admin-PIN = `%s'\n" "Sie sollten sie mittels des Befehls --change-pin ändern\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Bitte wählen Sie die Art des Schlüssel, der erzeugt werden soll:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Unterschriften-Schlüssel\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Verschlüsselungs-Schlüssel\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Authentisierungs-Schlüssel\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Ungültige Auswahl.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Wählen Sie den Speicherort für den Schlüssel:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "Unbekanntes Schlüssel-Schutzverfahren\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "Geheime Teile des Schlüssels sind nicht vorhanden\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "geheimer Schlüssel ist bereits auf einer Karte gespeichert\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "Menü verlassen" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "Zeige Admin-Befehle" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "Diese Hilfe zeigen" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "Alle vorhandenen Daten auflisten" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "Kartenbesitzernamen ändern" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "Schlüssel-holen-URL ändern" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "Holen des Schlüssels mittels der URL auf der Karte" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "Ändern der Logindaten" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "Ändern der Spracheinstellungen" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "Ändern des Geschlechts des Kartenbesitzers" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "Ändern des CA-Fingerabdrucks" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "Umschalte des \"Signature-force-PIN\"-Schalters" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "neue Schlüssel erzeugen" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "Menü für Ändern oder Entsperren der PIN" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "überprüfe die PIN und liste alle Daten auf" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Befehl> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "nur-Admin Befehl\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Admin-Befehle sind erlaubt\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Admin-Befehle sind nicht erlaubt\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Ungültiger Befehl (versuchen Sie's mal mit \"help\")\n" @@ -1387,7 +1387,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "'%s' kann nicht geöffnet werden\n" @@ -2093,419 +2093,419 @@ msgstr "Anzeigen des Schlüsselbundes, in dem ein Schlüssel drin ist" msgid "show expiration dates during signature listings" msgstr "Das Ablaufdatum mit den Signaturen anlisten" -#: g10/gpg.c:1839 +#: g10/gpg.c:1805 +#, c-format +msgid "NOTE: old default options file `%s' ignored\n" +msgstr "Hinweis: Alte voreingestellte Optionendatei '%s' wurde ignoriert\n" + +#: g10/gpg.c:1896 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" "Die Bibliothek \"libgcrypt\" is zu alt (benötigt wird %s, vorhanden ist %s)\n" -#: g10/gpg.c:1997 -#, c-format -msgid "NOTE: old default options file `%s' ignored\n" -msgstr "Hinweis: Alte voreingestellte Optionendatei '%s' wurde ignoriert\n" - -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, 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:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' ist kein gültiges Unterschriftablaufdatum\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' ist kein gültiger Zeichensatz\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "Schlüsselserver-URL konnte nicht analysiert werden\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "Ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ungültige Import-Option\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "Ungültige Import-Option\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ungültige Export-Option.\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "Ungültige Export-Option\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ungültige Listen-Option.\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "Ungültige Listen-Option\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "Zeige die Foto-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "Zeige Richtlinien-URLs während der Unterschriftenprüfung" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "Alle Notationen wahrend der Signaturprüfung anzeigen" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "Zeige IETF-Standard-Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "Zeie anwenderseitige Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 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:2622 +#: g10/gpg.c:2640 msgid "show user ID validity during signature verification" msgstr "Die Gültigkeit der User-ID während der Unterschriftenprüfung anzeigen" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 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:2626 +#: g10/gpg.c:2644 msgid "show only the primary user ID in signature verification" msgstr "Zeige nur die Hauptuser-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "Prüfe Unterschriftengültigkeit mittels PKA-Daten" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 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:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ungültige Überprüfuns-Option.\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "Ungültige Überprüfungs-Option\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, 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:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNUNG: %s ersetzt %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s kann nicht zusammen mit %s verwendet werden!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s zusammen mit %s ist nicht sinnvoll!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "Verschlüssen einer Botschaft benötigt im --pgp2-Modus die IDEA-" "Verschlüsselung\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "Das ausgewählte Verschlüsselungsverfahren ist ungültig\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "Das ausgewählte Komprimierungsverfahren ist ungültig\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed müssen größer als 0 sein\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed müssen größer als 1 sein\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "ungültige Standard-Voreinstellungen\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "ungültige private Verschlüsselungsvoreinstellungen\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "ungültige private Hashvoreinstellungen\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "ungültige private Komprimierungsvoreinstellungen\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s arbeitet noch nicht mit %s zusammen\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [Dateiname]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [Dateiname]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Symmetrische Entschlüsselung von `%s' fehlgeschlagen: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [Dateiname]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [Dateiname]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [Dateiname]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [Dateiname]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [Dateiname]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [Dateiname]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [Dateiname]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [Dateiname]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key User-ID" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key User-ID" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key User-ID [Befehle]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "Senden an Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Empfangen vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "Schlüsselexport fehlgeschlagen: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "Suche auf dem Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "Entfernen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "Anbringen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "Ungültiges Hashverfahren '%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[Dateiname]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Auf geht's - Botschaft eintippen ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "Die angegebene Zertifikat-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "Die angegebene Unterschriften-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "Die angegebene URL des bevorzugten Schlüsselserver ist ungültig\n" @@ -2999,22 +2999,22 @@ msgstr "Hinweis: Hauptschlüssel ist online und auf der Karte gespeichert\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "Hinweis: Zweitschlüssel ist online und auf der Karte gespeichert\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "Fehler beim Erzeugen des Schlüsselbundes `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "Schlüsselbund `%s' erstellt\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "Schlüsselblockhilfsmittel`%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "Schlüsselbund-Cache konnte nicht neu erzeugt werden: %s\n" @@ -6049,12 +6049,12 @@ msgstr "Lesefehler in `%s': %s\n" msgid "trustdb: sync failed: %s\n" msgstr "\"Trust-DB\": sync fehlgeschlagen: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb Satz %lu: lseek fehlgeschlagen: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb Satz %lu: write fehlgeschlagen (n=%d): %s\n" @@ -6068,112 +6068,112 @@ msgstr "trustdb Transaktion zu groß\n" msgid "can't access `%s': %s\n" msgstr "kann aus `%s' nicht zugreifen: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: Verzeichnis existiert nicht!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "Datei `%s' konnte nicht gesperrt werden\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "'%s' kann nicht gesperrt werden\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: Fehler beim Erzeugen des Versionsatzes: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: ungültige trust-db erzeugt\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: trust-db erzeugt\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "Notiz: Die \"trustdb\" ist nicht schreibbar\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: ungültige 'Trust'-Datenbank\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: hashtable kann nicht erzeugt werden: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: Fehler beim Ändern des Versionsatzes: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: Fehler beim Lesen des Versionsatzes: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: Fehler beim Schreiben des Versionsatzes: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek fehlgeschlagen: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: read failed (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: keine trustdb Datei\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: version record with recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: invalid file version %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: Fehler beim Lesen eines freien Satzes: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: Fehler beim Schreiben eines Verzeichnis-Satzes: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: konnte einen Satz nicht Nullen: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: konnte Satz nicht anhängen: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "Die \"Trust\"-Datenbank ist beschädigt; verwenden Sie \"gpg --fix-trustdb" @@ -6720,18 +6720,18 @@ msgstr "" "Synatx: scdaemon [Optionen] [Befehl [Argumente]]\n" "Smartcard Daemon für GnuPG\n" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 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:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "Handhabungsroutine für fd %d gestartet\n" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "Handhabungsroutine für den fd %d beendet\n" @@ -6741,6 +6741,11 @@ msgstr "Handhabungsroutine für den fd %d beendet\n" msgid "invalid radix64 character %02x skipped\n" msgstr "Ungültiges Basis-64 Zeichen %02X wurde übersprungen\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6766,11 +6771,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "Durch Zertifikat angefordertes Gültigkeitsmodell: %s" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "Kette" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "Schale" @@ -6779,220 +6784,235 @@ msgstr "Schale" msgid "critical certificate extension %s is not supported" msgstr "Die kritische Zertifikaterweiterung %s wird nicht unterstützt" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "Das Herausgeberzertifikat ist nicht für eine CA gekennzeichnet" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "entscheidende Richtlinie ohne konfigurierte Richtlinien" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, c-format msgid "failed to open `%s': %s\n" msgstr "Datei `%s' kann nicht geöffnet werden: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "Notiz: Die unkritische Zertifikatrichtlinie ist nicht erlaubt" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 msgid "certificate policy not allowed" msgstr "Die Zertifikatrichtlinie ist nicht erlaubt" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "Der Herausgeber wird von einer externen Stelle gesucht\n" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "Anzahl der übereinstimmenden Herausgeber: %d\n" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +#, fuzzy +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "Der Herausgeber wird von einer externen Stelle gesucht\n" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "Fehler beim Importieren des Zertifikats: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "\"Shadowing\" des Schlüssels schlug fehl: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 msgid "failed to allocated keyDB handle\n" msgstr "Ein keyDB Handle konnte nicht bereitgestellt werden\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "Das Zertifikat wurde widerrufen" -#: sm/certchain.c:752 +#: sm/certchain.c:836 msgid "no CRL found for certificate" msgstr "Keine CRL für das Zertifikat gefunden" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "Der Status des Zertifikats ist nicht bekannt" -#: sm/certchain.c:762 +#: sm/certchain.c:846 msgid "the available CRL is too old" msgstr "Die vorhandene CRL ist zu alt" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" "Bitte vergewissern Sie sich das der \"dirmngr\" richtig installierrt ist\n" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, c-format msgid "checking the CRL failed: %s" msgstr "Die CRL konnte nicht geprüft werden: %s" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "Zertifikat mit unzulässiger Gültigkeit: %s" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "Das Zertifikat ist noch nicht gültig" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 msgid "root certificate not yet valid" msgstr "Das Wurzelzertifikat ist noch nicht gültig" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "Das Zwischenzertifikat ist noch nicht gültig" -#: sm/certchain.c:829 +#: sm/certchain.c:913 msgid "certificate has expired" msgstr "Das Zertifikat ist abgelaufen" -#: sm/certchain.c:830 +#: sm/certchain.c:914 msgid "root certificate has expired" msgstr "Das Wurzelzertifikat ist abgelaufen" -#: sm/certchain.c:831 +#: sm/certchain.c:915 msgid "intermediate certificate has expired" msgstr "Das Zwischenzertifikat ist abgelaufen" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "Notwendige Zertifikatattribute fehlen: %s%s%s" -#: sm/certchain.c:882 +#: sm/certchain.c:966 msgid "certificate with invalid validity" msgstr "Zertifikat mit unzulässiger Gültigkeit" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" "Die Unterschrift wurde nicht in der Gültigkeitszeit des Zertifikat erzeugt" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" "Das Zertifikat wurde nicht während der Gültigkeitszeit des Herausgebers " "erzeugt" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" "Das Zwischenzertifikat wurde nicht während der Gültigkeitszeit des " "Herausgebers erzeugt" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 msgid " ( signature created at " msgstr " (Unterschrift erzeugt am " -#: sm/certchain.c:927 +#: sm/certchain.c:1011 msgid " (certificate created at " msgstr " ( Zertifikat erzeugt am " -#: sm/certchain.c:930 +#: sm/certchain.c:1014 msgid " (certificate valid from " msgstr " ( Zertifikat gültig von " -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr " ( Herausgeber gültig von " -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, c-format msgid "fingerprint=%s\n" msgstr "Fingerprint=%s\n" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "Das Wurzelzertifikat wurde nun als vertrauenswürdig markiert\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" "Interaktives vertrauenswürdig-Markieren ist in gpg-agent ausgeschaltet\n" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" "Interaktives vertrauenswürdig-Markieren ist in dieser Sitzung ausgeschaltet\n" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "WARNUNG: Der Erzeugungszeitpunkt der Unterschrift ist nicht bekannt - Nehme " "die aktuelle Zeit an" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 msgid "no issuer found in certificate" msgstr "Im Zertifikat ist kein Herausgeber enthalten" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "Das eigenbeglaubigte Zertifikat hat eine FALSCHE Signatur" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "Das Wurzelzertifikat ist nicht als vertrauenswürdig markiert" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, c-format msgid "checking the trust list failed: %s\n" msgstr "Fehler beim Prüfen der vertrauenswürdigen Zertifikate: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "Der Zertifikatkette ist zu lang\n" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "Herausgeberzertifikat nicht gefunden" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 msgid "certificate has a BAD signature" msgstr "Das Zertifikat hat eine FALSCHE Signatur" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" "Eine anderes möglicherweise passendes CA-Zertifikat gefunden - versuche " "nochmal" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "Die Zertifikatkette ist länger als von der CA erlaubt (%d)" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 msgid "certificate is good\n" msgstr "Das Zertifikat ist korrekt\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 msgid "intermediate certificate is good\n" msgstr "Das Zwischenzertifikat ist korrekt\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 msgid "root certificate is good\n" msgstr "Das Wurzelzertifikat ist korrekt\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "Umgeschaltet auf das Kettenmodell" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "Benutztes Gültigkeitsmodell: %s" @@ -7842,7 +7862,7 @@ msgstr "Liste der LDAP Server" msgid "Configuration for OCSP" msgstr "Konfiguration zu OCSP" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "Beachten Sie, daß Gruppenspezifiaktionen ignoriert werden\n" diff --git a/po/el.po b/po/el.po index 4048560f2..04f8d8c83 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2003-06-27 12:00+0200\n" "Last-Translator: Dokianakis Theofanis \n" "Language-Team: Greek \n" @@ -14,18 +14,18 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-7\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr " TrustDB: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -34,7 +34,7 @@ msgstr " #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,45 +44,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr " \n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr " \n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr " \n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr " MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr " " -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr " " @@ -94,18 +94,18 @@ msgstr " #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr " `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -405,18 +405,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr ": `%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr " `%s'\n" @@ -429,16 +429,16 @@ msgstr " #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr " %s: %s\n" @@ -453,22 +453,22 @@ msgstr "" msgid "a gpg-agent is already running - not starting a new one\n" msgstr " gpg-agent \n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr " `%s'\n" @@ -488,7 +488,7 @@ msgstr "trustdb: read msgid "can't use `%s' as home directory\n" msgstr "%s: : %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr " `%s': %s\n" @@ -513,12 +513,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: : %s\n" @@ -706,43 +706,43 @@ msgstr " msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr " : %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr " : %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr " `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr " `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr " `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr " `%s': %s\n" @@ -785,17 +785,17 @@ msgstr " msgid "problem with the agent\n" msgstr " agent: agent 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr " core dump: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr ": %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr ": %s \"%s\"\n" @@ -967,24 +967,24 @@ msgstr " msgid "Included certificates" msgstr " " -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr " " -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr " `%s'" @@ -1105,7 +1105,7 @@ msgstr " msgid "not human readable" msgstr " " -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr " " @@ -1115,166 +1115,166 @@ msgstr " msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr " (batchmode)\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr " ; " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr " " -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr " " -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr " : %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr " `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr " " -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr " \"\" \n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr " \"\" \n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr ": \n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr " fingerprint" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr ": \n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr " : %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr " OpenPGP .\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr " `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1282,136 +1282,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr " :\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr " %s.\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA ( )\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr " .\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr " :\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr " \n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr " .\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr ": \n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr " " -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr " \n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr " " -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr " : " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr " " -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr " " -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr " fingerprint" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr " " +msgid "change a CA fingerprint" +msgstr " fingerprint" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr " " + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr " \n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr " \n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr " `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr " ( \"help\")\n" @@ -1419,7 +1419,7 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "--output \n" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr " `%s'\n" @@ -2126,421 +2126,421 @@ msgstr " msgid "show expiration dates during signature listings" msgstr " \n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr ": `%s'\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr ": %s !\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr " %s \n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr " %s \n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr " URI \n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr " \n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr " \n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr " \n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr " \n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr " %s \n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr " URL \n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr " %s \n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr " %s \n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr " \n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr " exec-path %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr ": core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr ": %s %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr " %s %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr " %s %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr " `%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" " --pgp2 \n" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" " --pgp2 " "\n" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr " ( pipes) --pgp2.\n" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" " --pgp2 . IDEA\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "" " \n" " \n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr " min-cert-level 0, 1, 2, 3\n" -#: g10/gpg.c:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr ": S2K (0) \n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr " S2K; 0, 1 3\n" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr " \n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr " \n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr " \n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr " \n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr " %s %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr " \"%s\" %s\n" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" " \"%s\" %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" " \"%s\" %s\n" -#: g10/gpg.c:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr " TrustDB: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" ": (-r) \n" " \n" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [ ]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [ ]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [ ]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr " %s %s.\n" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [ ]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr " %s %s.\n" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ ]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [ ]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [ ]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id []" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr " hash `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[ ]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr " ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr " URL \n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr " URL \n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr " URL \n" @@ -3034,22 +3034,22 @@ msgstr " msgid "NOTE: secondary key is online and stored on card\n" msgstr ": \n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr " `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr " `%s' \n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr " `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr " cache : %s\n" @@ -6152,12 +6152,12 @@ msgstr " msgid "trustdb: sync failed: %s\n" msgstr "trustdb: sync : %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb rec %lu: lseek: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb rec %lu: write (n=%d): %s\n" @@ -6171,112 +6171,112 @@ msgstr " msgid "can't access `%s': %s\n" msgstr " `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: !\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr " `%s': %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr " `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: : %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: trustdb\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: trustdb\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr ": trustdb \n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: trustdb\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: hashtable: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: : %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: : %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: : %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: read (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: trustdb \n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: free : %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: dir : %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: : %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: : %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr " trustdb - \"gpg --fix-trustdb\".\n" @@ -6830,16 +6830,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6849,6 +6849,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr " radix64 %02x \n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6873,11 +6878,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6887,226 +6892,240 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr " %d gpg-agent\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr " `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr " `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr " : %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr " block : %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr " TrustDB: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr ": " -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr " " -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr " : " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr " : %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr " `%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr " !" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr " !" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr " !" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr " !" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " : %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr " .\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr " " -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr " fingerprint" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr " " -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr " : %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr " " -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr " %c%lu \n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr " .\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr " " -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7976,7 +7995,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/eo.po b/po/eo.po index 2fdb55cfd..00b0966ab 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" @@ -14,18 +14,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-3\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -34,7 +34,7 @@ msgstr "Bonvolu doni la pasfrazon; tio estas sekreta frazo \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,45 +44,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "pasfrazo estas tro longa\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "pasfrazo estas tro longa\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Nevalida signo en nomo\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "malbona MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "malbona pasfrazo" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "malbona pasfrazo" @@ -94,18 +94,18 @@ msgstr "protekto-metodo %d%s ne estas realigita\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "ne povas krei '%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -405,18 +405,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "opcio-dosiero '%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "legas opciojn el '%s'\n" @@ -429,16 +429,16 @@ msgstr "eraro dum kreado de '%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ne povas krei %s: %s\n" @@ -453,22 +453,22 @@ msgstr "Valida atestilrevoko" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eraro dum sendo al '%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skribas sekretan losilon al '%s'\n" @@ -488,7 +488,7 @@ msgstr "fido-datenaro: lego malsukcesis (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "eraro dum legado de '%s': %s\n" @@ -513,12 +513,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualigo de sekreto malsukcesis: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu losiloj ignoritaj\n" @@ -706,43 +706,43 @@ msgstr " msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "ne povas malfermi %s: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "eraro dum skribado de sekreta losilaro '%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "eraro dum legado de '%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "eraro dum legado de '%s': %s\n" @@ -785,17 +785,17 @@ msgstr "nuligita de uzanto\n" msgid "problem with the agent\n" msgstr "problemo kun agento: agento redonas 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "ne povas malalti kreadon de core-dosieroj: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" @@ -972,24 +972,24 @@ msgstr "Bona atestilo" msgid "Included certificates" msgstr "Nevalida atestilo" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "nekonata versio" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Nenia helpo disponata por '%s'" @@ -1112,7 +1112,7 @@ msgstr "AVERTO: nevalida notacia dateno trovita\n" msgid "not human readable" msgstr "ne homlegebla" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "sekreta losilo ne havebla" @@ -1122,166 +1122,166 @@ msgstr "sekreta msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "ne povas fari tion en neinteraga reimo\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Via elekto? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "en" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "en" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Nenia kialo specifita" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "ne traktita" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "skribas publikan losilon al '%s'\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "aktualigitaj preferoj" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "nevalida signo en signoeno\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "nevalida signo en signoeno\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "Fingrospuro:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "validaj OpenPGP-datenoj ne trovitaj.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "eraro dum skribado de sekreta losilaro '%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1289,136 +1289,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Bonvolu elekti, kian losilon vi deziras:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "i tiu losilo eksvalidios je %s.\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (nur ifri)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Nevalida elekto.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Kialo por revoko: " -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "nekonata densig-metodo" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Sekretaj partoj de efa losilo ne estas disponataj.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ignorita: sekreta losilo jam eestas\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "forlasi i tiun menuon" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "montri i tiun helpon" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Nenia helpo disponata" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "ani la daton de eksvalidio" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "ani la posedantofidon" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "montri fingrospuron" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "krei novan losilparon" +msgid "change a CA fingerprint" +msgstr "montri fingrospuron" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "krei novan losilparon" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Komando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "skribas sekretan losilon al '%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Nevalida komando (provu per \"helpo\")\n" @@ -1426,7 +1426,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "ne povas malfermi '%s'\n" @@ -2112,420 +2112,420 @@ msgstr "montri, en kiu msgid "show expiration dates during signature listings" msgstr "Mankas responda subskribo en sekreta losilaro\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTO: %s ne estas por normala uzado!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ne povis analizi URI de losilservilo\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 #, fuzzy msgid "invalid import options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 #, fuzzy msgid "invalid export options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "AVERTO: programo povas krei core-dosieron!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTO: %s nuligas %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ne eblas kun %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skribas sekretan losilon al '%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "elektita ifrad-metodo ne validas\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "elektita ifrad-metodo ne validas\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed devas esti pli granda ol 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed devas esti pli granda ol 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 #, 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:3097 +#: g10/gpg.c:3116 #, 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTO: simpla S2K-reimo (0) estas forte malrekomendata\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 #, fuzzy msgid "invalid default preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [dosiero]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [dosiero]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "malifrado malsukcesis: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [dosiero]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [dosiero]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [dosiero]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [dosiero]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [dosiero]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key uzantidentigilo" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key uzantidentigilo" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key uzantidentigilo [komandoj]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "listigo de sekretaj losiloj malsukcesis: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record malsukcesis: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "listigo de sekretaj losiloj malsukcesis: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "elkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[dosiero]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Ektajpu vian mesaon ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "la donita gvidlinia URL por atestado ne validas\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" @@ -3009,22 +3009,22 @@ msgstr "ignorita: sekreta msgid "NOTE: secondary key is online and stored on card\n" msgstr "ignorita: sekreta losilo jam eestas\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "eraro dum kreado de losilaro '%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "losilaro '%s' kreita\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "eraro dum kreado de '%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "malsukcesis rekonstrui losilaran staplon: %s\n" @@ -6109,12 +6109,12 @@ msgstr "kiraso: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "fido-datenaro: sync malsukcesis: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "fido-datenaro loko %lu: lseek malsukcesis: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "fido-datenaro loko %lu: skribo malsukcesis (n=%d): %s\n" @@ -6128,112 +6128,112 @@ msgstr "fido-datenaro-transakcio tro granda\n" msgid "can't access `%s': %s\n" msgstr "ne povas fermi '%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: dosierujo ne ekzistas!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "ne povas krei '%s': %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "ne povas malfermi '%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: malsukcesis krei versiregistron: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: nevalida fido-datenaro kreita\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: fido-datenaro kreita\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: nevalida fido-datenaro\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: malsukcesis krei haktabelon: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: eraro dum aktualigo de versiregistro: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: eraro dum legado de versiregistro: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: eraro dum skribado de versiregistro: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "fido-datenaro: lseek malsukcesis: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "fido-datenaro: lego malsukcesis (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: ne estas fido-datenaro\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: versiregistro kun registronumero %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: eraro dum legado de libera registro: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: eraro dum skribo de dosieruja registro: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: malsukcesis nuligi registron: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: malsukcesis aldoni registron: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "la fido-datenaro estas fuita; bonvolu ruli \"gpg --fix-trustdb\".\n" @@ -6784,16 +6784,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6803,6 +6803,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "nevalida signo %02x en bazo 64 ignorita\n" +#: sm/call-agent.c:136 +#, fuzzy, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "malsukcesis meti '%s' en fido-datenaron: %s\n" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6827,11 +6832,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "helpo" @@ -6841,238 +6846,252 @@ msgstr "helpo" msgid "critical certificate extension %s is not supported" msgstr "protokolversio %d de gpg-agent ne estas uzebla\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "ne povas malfermi '%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "skribas sekretan losilon al '%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "eraro dum kreado de pasfrazo: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "forvio de losilbloko malsukcesis: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "losilo %08lX: losilo estas revokita!\n" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "Bona atestilo" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Nenia helpo disponata" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "kontrolo de kreita subskribo malsukcesis: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problemo e legado de atestilo: %s\n" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 #, fuzzy msgid "certificate not yet valid" msgstr "Valida atestilrevoko" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "Valida atestilrevoko" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Valida atestilrevoko" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "problemo e legado de atestilo: %s\n" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "problemo e legado de atestilo: %s\n" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "problemo e legado de atestilo: %s\n" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "problemo e legado de atestilo: %s\n" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " novaj subskriboj: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "losilo %08lX: revokatestilo aldonita\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "Valida atestilrevoko" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Fingrospuro:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 #, fuzzy msgid "root certificate has now been marked as trusted\n" msgstr "" "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "Bona atestilo" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 #, fuzzy msgid "root certificate is not marked trusted" msgstr "" "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrolo de kreita subskribo malsukcesis: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 #, fuzzy msgid "certificate chain too long\n" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 #, fuzzy msgid "issuer certificate not found" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "kontroli subskribon" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "ripetita atestilo - forviita" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "" "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7941,7 +7960,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" @@ -9564,9 +9583,6 @@ msgstr "" #~ msgid "user '%s' not in trustdb - inserting\n" #~ msgstr "uzanto '%s' ne estas en fido-datenaro - enovas\n" -#~ msgid "failed to put '%s' into trustdb: %s\n" -#~ msgstr "malsukcesis meti '%s' en fido-datenaron: %s\n" - #~ msgid "too many random bits requested; the limit is %d\n" #~ msgstr "tro da stokastaj bitoj petitaj; la limo estas %d\n" diff --git a/po/es.po b/po/es.po index f6d1ceb29..699da778b 100644 --- a/po/es.po +++ b/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2007-08-16 11:35+0200\n" "Last-Translator: Jaime Surez \n" "Language-Team: Spanish \n" @@ -18,18 +18,18 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "fallo al almacenar la huella digital: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -38,7 +38,7 @@ msgstr "Por favor introduzca la contrase #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "validez: %s" @@ -49,35 +49,35 @@ msgstr "validez: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "lnea demasiado larga" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "frase contrasea demasiado larga\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Caracter invlido en el nombre\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI incorrecto" @@ -91,7 +91,7 @@ msgstr "MPI incorrecto" # Por qu los ingleses entonces s que saben lo que es un "passphrase"? # Es que son ms listos? :-) # -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "Frase contrasea incorrecta" @@ -105,7 +105,7 @@ msgstr "Frase contrase # Por qu los ingleses entonces s que saben lo que es un "passphrase"? # Es que son ms listos? :-) # -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "Frase contrasea incorrecta" @@ -117,18 +117,18 @@ msgstr "el resumen protector %d no puede ser utilizado\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "no se puede crear %s: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -427,18 +427,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, 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:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fichero de opciones `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "leyendo opciones desde `%s'\n" @@ -451,16 +451,16 @@ msgstr "error creando `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no se puede crear el directorio `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no se puede crear %s: %s\n" @@ -475,22 +475,22 @@ msgstr "Revocaci msgid "a gpg-agent is already running - not starting a new one\n" msgstr "el agente gpg no esta disponible en esta sesin\n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "error obteniendo nuevo PIN: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error enviando a `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizacin fallida: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escribiendo clave privada en `%s'\n" @@ -510,7 +510,7 @@ msgstr "fstat(%d) fall msgid "can't use `%s' as home directory\n" msgstr "%s: no se puede crear el directorio: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "error leyendo `%s': %s\n" @@ -535,13 +535,13 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizacin de la clave secreta fallida: %s\n" # msgstr "clave %08lX: %d nuevas subclaves\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claves omitidas\n" @@ -738,43 +738,43 @@ msgstr "cambia la frase contrase msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "error creando frase contrasea: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "no puede abrirse el fichero: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "error leyendo `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "error obteniendo la informacin actual de la clave: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "error leyendo `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "error leyendo `%s': %s\n" @@ -817,17 +817,17 @@ msgstr "cancelado por el usuario\n" msgid "problem with the agent\n" msgstr "problema con el agente: el agente devuelve 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "no se pueden desactivar los volcados de core: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVISO: propiedad insegura de la extensin `%s'\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVISO: permisos inseguros de la extensin `%s'\n" @@ -1003,24 +1003,24 @@ msgstr "Certificado correcto" msgid "Included certificates" msgstr "Certificado incorrecto" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "Versin desconocida" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "No hay ayuda disponible para `%s'" @@ -1139,7 +1139,7 @@ msgstr "ATENCI msgid "not human readable" msgstr "ilegible" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "tarjeta OpenPGP no disponible: %s\n" @@ -1149,155 +1149,155 @@ msgstr "tarjeta OpenPGP no disponible: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "tarjeta OpenPGP num. %s detectada\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "imposible hacer esto en modo de proceso por lotes\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Su eleccin: " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[no establecido]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "hombre" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "mujer" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "no especificado" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "no forzado" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "forzado" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Error: slo se permite ASCII sin formato actualmente.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Error: El caracter \"<\" no puede usarse.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Error: no se permiten dobles espacios.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Apellido del titular de la tarjeta: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Nombre del titular de la tarjeta: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Error: nombre combinado demasiado largo (mximo %d caracteres).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL de donde recuperar la clave pblica: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Error: URL demasiado larga (el mximo son %d caracteres).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "error leyendo `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Datos de login (nombre de la cuenta): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Error: el login es demasiado largo (lmite de %d caracteres).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Datos privados: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" "Error: los datos privados son demasiado largos (lmite de %d caracteres).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Preferencias de idioma: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Error: longitud de la cadena de preferencias invlida.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Error: caracteres invlidos en cadena de preferencias.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Sexo ((H)ombre, (M)mujer o espacio): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Error: respuesta no vlida.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "Huella dactilar CA:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Error: formato invlido de huella dactilar.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "la operacin con la clave no es posible: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "no es una tarjeta OpenPGP" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "error obteniendo la informacin actual de la clave: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Reemplazar la clave existente? (s/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Hacer copia de seguridad externa a la tarjeta de clave de cifrado? (S/n)" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Reemplazar las claves existentes? (s/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1308,120 +1308,120 @@ msgstr "" " PIN = `%s' PIN Administrador = `%s'\n" "Debera cambiarlos usando la orden --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Por favor seleccione tipo de clave que generar:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Clave de firmado\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Clave de cifrado\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Clave de autentificacin\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Eleccin invlida.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Por favor elija donde guardar la clave:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "algoritmo de proteccin de clave desconocido\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "las partes secretas de la clave no estn disponibles\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "clave secreta ya almacenada en una tarjeta\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "sale de este men" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "ver rdenes de administrador" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "muestra esta ayuda" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "listar todos los datos disponibles" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "cambiar el nombre del titular de la tarjeta" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "cambiar URL de donde obtener la clave" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "recuperar la clave especificada en la URL de la tarjeta" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "cambiar nombre de usuario" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "cambiar preferencias de idioma" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "cambiar sexo del titular de la tarjeta" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "cambiar huella dactilar de una CA" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "cambiar estado de la opcin forzar firma del PIN" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "generar nuevas claves" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "men para cambiar o desbloquear el PIN" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Orden> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "rdenes slo de administrador\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Se permiten rdenes de administrador\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "No se permiten rdenes de administrador\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Orden invlida (pruebe \"help\")\n" @@ -1429,7 +1429,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "no se puede abrir `%s'\n" @@ -2131,387 +2131,387 @@ msgstr "muestra en qu msgid "show expiration dates during signature listings" msgstr "No existe la firma correspondiente en el anillo secreto\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no es para uso normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "no se puede interpretar la URL del servidor de claves\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opciones de importacin invlidas\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opciones de importacin invlidas\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opciones de exportacin invlidas\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opciones de exportacin invlidas\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: lista de opciones invlida\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "lista de opciones invlida\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la URL del servidor de claves preferido no es vlida\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opciones de verificacin invlidas\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "opciones de verificacin invlidas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "imposible establecer camino de ejecutables %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opciones de verificacin invlidas\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "ATENCIN: el programa podra volcar un fichero core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sustituye a %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido con %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no tiene sentido con %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "el algoritmo de cifrado seleccionado es invlido\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "el algoritmo de resumen seleccionado no invlido\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "el algoritmo de compresin seleccionado es invlido\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "el algoritmo de certificacin por resumen elegido es invlido\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser mayor que 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser mayor que 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 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:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "preferencias por defecto invlidas\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "preferencias personales de cifrado invlidas\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "preferencias personales de algoritmo de resumen invlidas\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "preferencias personales de compresin invlidas\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s an no funciona con %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, 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:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nombre_fichero]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nombre_fichero]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "el cifrado simtrico de `%s' fall: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nombre_fichero]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nombre_fichero]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nombre_fichero]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nombre_fichero]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nombre_fichero]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nombre_fichero]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id-usuario" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id-usuario" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usuario [rdenes]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "envo al servidor de claves fallido: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepcin del servidor de claves fallida: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "exportacin de clave fallida: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "bsqueda del servidor de claves fallida: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "renovacin al servidor de claves fallida: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminacin de armadura fallida: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "creacin de armadura fallida: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de distribucin invlido `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nombre_fichero]" @@ -2519,19 +2519,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:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Adelante, teclee su mensaje...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "URL de poltica de certificado invlida\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "URL de poltica invlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL del servidor de claves preferido no es vlida\n" @@ -3021,22 +3021,22 @@ msgstr "NOTA: clave primaria en l msgid "NOTE: secondary key is online and stored on card\n" msgstr "NOTA: clave secundaria en lnea y almacenada en la tarjeta\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "error escribiendo anillo `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "anillo `%s' creado\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "%s: problema lectura del bloque de clave: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "fallo reconstruyendo cach del anillo de claves: %s\n" @@ -6009,12 +6009,12 @@ msgstr "error de lectura `%s': %s\n" msgid "trustdb: sync failed: %s\n" msgstr "base de datos de confianza: fallo sincronizacin: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "registro base de datos de confianza %lu: lseek fallido: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -6029,112 +6029,112 @@ msgstr "transacci msgid "can't access `%s': %s\n" msgstr "no se puede acceder a `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: el directorio no existe!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "no se puede crear el bloqueo para `%s'\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "no se puede bloquear `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: fallo en la creacin del registro de versin: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: se ha creado base de datos de confianza invlida\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: se ha creado base de datos de confianza\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOTA: no se puede escribir base de datos de confianza\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: base de datos de confianza invlida\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: fallo en la creacin de la tabla hash: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: error actualizando el registro de versin: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: error leyendo registro de versin: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: error escribiendo registro de versin: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "base de datos de confianza: fallo lseek: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "base de datos de confianza: error lectura (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: no es una base de datos de confianza\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: registro de versin con nmero de registro %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: versin del fichero %d invlida\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: error leyendo registro libre: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: error escribiendo registro de directorio: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: fallo en poner a cero un registro: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: fallo al aadir un registro: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "La base de datos de confianza est daada. Por favor, ejecute\n" @@ -6690,16 +6690,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6709,6 +6709,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "caracter invlido radix64 %02X omitido\n" +#: sm/call-agent.c:136 +#, fuzzy, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "fallo al poner '%s' en la tabla de confianza: %s\n" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6733,11 +6738,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "ayuda" @@ -6747,239 +6752,253 @@ msgstr "ayuda" msgid "critical certificate extension %s is not supported" msgstr "el programa no permite usar el protocolo agente gpg versin %d\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "No se puede abrir `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "no se permite exportar claves secretas\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "error obteniendo el nmero de serie: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "fallo leyendo la clave\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "fallo al almacenar la clave: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: la clave ha sido revocada" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "Certificado correcto" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Clave disponible en: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "la comprobacin de la firma creada fall: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problema en la lectura del certificado: %s\n" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 #, fuzzy msgid "certificate not yet valid" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "problema en la lectura del certificado: %s\n" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "problema en la lectura del certificado: %s\n" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "problema en la lectura del certificado: %s\n" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "problema en la lectura del certificado: %s\n" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr "firmas creadas hasta ahora: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Certificado de revocacin creado.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " Nmero de serie de la tarjeta =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Huella dactilar CA:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 #, fuzzy msgid "root certificate has now been marked as trusted\n" msgstr "" "No se ha encontrado ningn certificado sin valor de confianza.\n" "\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "Certificado correcto" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 #, fuzzy msgid "root certificate is not marked trusted" msgstr "" "No se ha encontrado ningn certificado sin valor de confianza.\n" "\n" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "la comprobacin de la firma creada fall: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 #, fuzzy msgid "certificate chain too long\n" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 #, fuzzy msgid "issuer certificate not found" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verifica una firma" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "certificado duplicado - eliminado" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "" "No se ha encontrado ningn certificado sin valor de confianza.\n" "\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7855,7 +7874,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" @@ -9577,9 +9596,6 @@ msgstr "" #~ msgid "user '%s' not in trustdb - inserting\n" #~ msgstr "usuario '%s' no est en la tabla de confianza - insertando\n" -#~ msgid "failed to put '%s' into trustdb: %s\n" -#~ msgstr "fallo al poner '%s' en la tabla de confianza: %s\n" - #~ msgid "WARNING: can't yet handle long pref records\n" #~ msgstr "" #~ "ATENCON: todava no puedo tratar registros de preferencias largos\n" diff --git a/po/et.po b/po/et.po index 5827c7af9..19dc2cd3a 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -14,18 +14,18 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8-bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "TrustDB initsialiseerimine ebannestus: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -34,7 +34,7 @@ msgstr "Palun sisestage parool; see on salajane tekst \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,45 +44,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "rida on liiga pikk\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "liiga pikk parool\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Lubamatu smbol nimes\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "halb MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "halb parool" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "halb parool" @@ -94,18 +94,18 @@ msgstr "kaitse algoritm %d%s ei ole toetatud\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "`%s' ei nnestu luua: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -404,18 +404,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MRKUS: vaikimisi vtmete fail `%s' puudub\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "vtmete fail `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "loen vtmeid failist `%s'\n" @@ -428,16 +428,16 @@ msgstr "viga `%s' loomisel: %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kataloogi `%s' ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s ei nnestu luua: %s\n" @@ -452,22 +452,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "viga parooli loomisel: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "viga teate saatmisel serverile `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "uuendamine ebannestus: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjutan salajase vtme faili `%s'\n" @@ -487,7 +487,7 @@ msgstr "trustdb: lugemine eba msgid "can't use `%s' as home directory\n" msgstr "%s: kataloogi ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "viga `%s' lugemisel: %s\n" @@ -512,12 +512,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salajase vtme uuendamine ebannestus: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: jtsin vahele: %s\n" @@ -705,43 +705,43 @@ msgstr "muuda parooli" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "viga parooli loomisel: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "faili ei nnestu avada: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "viga salajase vtme vtmehoidlasse `%s' kirjutamisel: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "viga `%s' lugemisel: %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "viga `%s' lugemisel: %s\n" @@ -784,17 +784,17 @@ msgstr "katkestatud kasutaja poolt\n" msgid "problem with the agent\n" msgstr "probleem agendiga: agent tagastas 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "ei nnestu blokeerida mlupildi salvestamist: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" @@ -966,24 +966,24 @@ msgstr "halb sertifikaat" msgid "Included certificates" msgstr "halb sertifikaat" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "tundmatu versioon" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "`%s' kohta abiinfo puudub" @@ -1103,7 +1103,7 @@ msgstr "HOIATUS: leidsin vigased noteerimise andmed\n" msgid "not human readable" msgstr "pole inimese poolt loetav" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "salajane vti ei ole kttesaadav" @@ -1113,166 +1113,166 @@ msgstr "salajane v msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "seda ei saa teha pakettmoodis\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Teie valik? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Phjus puudub" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "ei tdeldud" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "vastavat avalikku vtit pole: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "uuendatud eelistused" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "lubamatu smbol eelistuste snes\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "lubamatu smbol eelistuste snes\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "viga: vigane srmejlg\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "nita srmejlge" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "viga: vigane srmejlg\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Vtme genereerimine ebannestus: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "ei leia OpenPGP andmeid.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "viga salajase vtme vtmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1280,136 +1280,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Palun valige, millist vtmetpi te soovite:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Allkiri aegus %s\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (ainult krpteerimiseks)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Vigane valik.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Palun valige thistamise phjus:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "tundmatu kaitsealgoritm\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Primaarse vtme salajased komponendid ei ole kttesaadavad.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "jtsin vahele: avalik vti on juba olemas\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "vlju sellest menst" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "nita seda abiinfot" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Vtme leiate: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "muuda aegumise kuupeva" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "muuda omaniku usaldust" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "nita srmejlge" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "genereeri uus vtmepaar" +msgid "change a CA fingerprint" +msgstr "nita srmejlge" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "genereeri uus vtmepaar" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Ksklus> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "vastuolulised ksud\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjutan salajase vtme faili `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Vigane ksklus (proovige \"help\")\n" @@ -1417,7 +1417,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "`%s' ei nnestu avada\n" @@ -2114,413 +2114,413 @@ msgstr "n msgid "show expiration dates during signature listings" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MRKUS: ignoreerin vana vaikimisi vtmete faili `%s'\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MRKUS: %s ei ole tavapraseks kasutamiseks!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ei saa parsida vtmeserveri URI\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path vrtuseks ei nnestu seada %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "HOIATUS: programm vib salvestada oma mlupildi!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "HOIATUS: %s mrab le %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s ei ole koos lubatud!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s ei oma koos mtet!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjutan salajase vtme faili `%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "teate krpteerimine --pgp2 moodis nuab IDEA iffrit\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "valitud ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "valitud lhendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valitud ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "valitud sertifikaadi lhendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed peab olema suurem, kui 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed peab olema suurem, kui 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MRKUS: lihtne S2K mood (0) ei soovitata kasutada\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "vigased vaikimisi eelistused\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "vigased isikliku ifri eelistused\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "vigased isikliku lhendi eelistused\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "vigased isikliku pakkimise eelistused\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ei tta veel koos %s-ga\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB initsialiseerimine ebannestus: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [failinimi]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [failinimi]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "lahtikrpteerimine ebannestus: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [failinimi]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [failinimi]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [failinimi]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [failinimi]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [failinimi]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key kasutaja-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key kasutaja-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key kasutaja-id [ksud]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "vtmeserverile saatmine ebannestus: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "vtmeserverilt lugemine ebannestus: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "vtme eksport ebannestus: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "vtmeserveri otsing ebannestus: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "vtmeserveri uuendamine ebannestus: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "lahtipakendamine ebannestus: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "pakendamine ebannestus: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "vigane rsialgoritm `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[failinimi]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Kirjutage nd oma teade ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "antud sertifikaadi poliisi URL on vigane\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" @@ -3008,22 +3008,22 @@ msgstr "j msgid "NOTE: secondary key is online and stored on card\n" msgstr "jtsin vahele: avalik vti on juba olemas\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "viga vtmehoidla `%s' loomisel: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "vtmehoidla `%s' on loodud\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "viga `%s' loomisel: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "vtmehoidla vahemlu uuesti loomine ebannestus: %s\n" @@ -6076,12 +6076,12 @@ msgstr "viga lugemisel: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "trustdb: sync ebannestus: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb kirje %lu: lseek ebannestus: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb rec %lu: write failed (n=%d): %s\n" @@ -6095,112 +6095,112 @@ msgstr "trustdb transaktsioon on liiga suur\n" msgid "can't access `%s': %s\n" msgstr "`%s' ei nnestu sulgeda: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: kataloogi ei ole!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "`%s' ei nnestu luua: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "`%s' ei nnestu avada\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: versioonikirje loomine ei nnestu: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: loodi vigane usalduse andmebaas\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: trustdb on loodud\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "MRKUS: trustdb pole kirjutatav\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: vigane trustdb\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: paisktabeli loomine ebannestus: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: viga versioonikirje uuendamisel: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: viga versioonikirje lugemisel: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: viga versioonikirje kirjutamisel: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek ebannestus: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: lugemine ebannestus (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: ei ole trustdb fail\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: versioonikirje kirje numbriga %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: vigane faili versioon %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: viga vaba kirje lugemisel: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: viga kataloogikirje kirjutamisel: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: kirje nullimine ebannestus: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: kirje lisamine ebannestus: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "trustdb on vigane; palun kivitage \"gpg --fix-trustdb\".\n" @@ -6751,16 +6751,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6770,6 +6770,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "vigane radix64 smbol %02x vahele jetud\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6794,11 +6799,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6808,226 +6813,240 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "gpg-agendi protokolli versioon %d ei ole toetatud\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "`%s' ei nnestu avada: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "kirjutan salajase vtme faili `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "viga parooli loomisel: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "vtmebloki kustutamine ebannestus: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "TrustDB initsialiseerimine ebannestus: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "MRKUS: vti on thistatud" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "halb sertifikaat" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Vtme leiate: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "Loodud allkirja ei nnestu kontrollida: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "kirjutan salajase vtme faili `%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "See vti on aegunud!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "See vti on aegunud!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "See vti on aegunud!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "See vti on aegunud!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " uusi allkirju: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Thistamise sertifikaat on loodud.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "halb sertifikaat" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "nita srmejlge" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "genereeri thistamise sertifikaat" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "Loodud allkirja ei nnestu kontrollida: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "kontrolli allkirja" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "eelistus %c%lu on duplikaat\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Thistamise sertifikaat on loodud.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "halb sertifikaat" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7896,7 +7915,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 7a9352894..64161f26f 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" @@ -30,18 +30,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -50,7 +50,7 @@ msgstr "Ole hyvä ja syötä salasana, tämän on salainen lause \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -60,45 +60,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "rivi on liian pitkä\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "salasana on liian pitkä\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Nimessä on epäkelpo merkki\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI ei kelpaa" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "väärä salasana" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "väärä salasana" @@ -110,18 +110,18 @@ msgstr "suojausalgoritmi %d%s ei ole käytettävissä\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -421,18 +421,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "HUOM: Ei oletusasetustiedostoa \"%s\"\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "asetustiedosto \"%s\": %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "luetaan asetukset tiedostosta \"%s\"\n" @@ -445,16 +445,16 @@ msgstr "virhe luotaessa \"%s\": %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "hakemiston \"%s\" luominen ei onnistu: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ei voida luoda kohdetta %s: %s\n" @@ -469,22 +469,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "virhe lähettäessä kohteeseen \"%s\": %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" @@ -504,7 +504,7 @@ msgstr "trustdb: luku epäonnistui (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: hakemistoa ei voi luoda: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" @@ -529,12 +529,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salaisen päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ohitettu: %s\n" @@ -722,43 +722,43 @@ msgstr "muuta salasanaa" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "ei voi avata tiedostoa: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "virhe kirjoitettaessa salaiseen avainrenkaaseen \"%s\": %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" @@ -801,17 +801,17 @@ msgstr "käyttäjän peruma\n" msgid "problem with the agent\n" msgstr "agentin käytössä on ongelmia: agentti vastaa 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "core-tiedostojen luontia ei voi estää: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" @@ -983,24 +983,24 @@ msgstr "virheellinen varmenne" msgid "Included certificates" msgstr "virheellinen varmenne" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "tuntematon versio" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Ei ohjetta aiheesta \"%s\"" @@ -1122,7 +1122,7 @@ msgstr "VAROITUS: löydettiin väärin muotoiltua notaatiodataa\n" msgid "not human readable" msgstr "ei ihmisten luettavissa" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "salaista avainta ei löydy" @@ -1132,166 +1132,166 @@ msgstr "salaista avainta ei löydy" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "tätä ei voi tehdä eräajossa\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Valintasi? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Ei eriteltyä syytä" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "ei käsitelty" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "ei vastaavaa julkista avainta: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "päivitä valinnat" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "virhe: sormenjälki on väärä\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "näytä sormenjälki" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "virhe: sormenjälki on väärä\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Avaimen luonti epäonnistui: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "kelvollista OpenPGP-dataa ei löytynyt.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "virhe kirjoitettaessa salaiseen avainrenkaaseen \"%s\": %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1299,136 +1299,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Valitse millaisen avaimen haluat:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Allekirjoitus vanheni %s\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Valinta ei kelpaa.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Valitse mitätöinnin syy:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "tuntematon suojausalgoritmi\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Ensisijaisen avaimen salaiset osat eivät ole saatavilla.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "ulos tästä valikosta" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "näytä tämä ohje" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Avain saatavilla kohteessa: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "muuta voimassoloaikaa" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "muuta luottamusastetta" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "näytä sormenjälki" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "luo uusi avainpari" +msgid "change a CA fingerprint" +msgstr "näytä sormenjälki" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "luo uusi avainpari" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Komento> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Komento ei kelpaa (kirjoita \"help\")\n" @@ -1436,7 +1436,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "tiedostoa \"%s\" ei voi avata\n" @@ -2134,414 +2134,414 @@ msgstr "näytä mihin avainrenkaaseen tulostettu avain kuuluu" msgid "show expiration dates during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "HUOM: %s ei ole normaaliin käyttöön!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-polkua kohteeseen %s ei voi asettaa\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "VAROITUS: ohjelma voi luoda core-tiedoston!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROITUS: %s korvaa %s:n\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s eivät ole sallittuja yhdessä!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s yhdessä on järjetöntä!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "viestin salaaaminen --pgp2-tilassa vaatii IDEA-salaimen\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "valittu tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "valittu varmenteen tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed täytyy olla suurempi kuin 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed täytyy olla suurempi kuin 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 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:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "virheelliset oletusarvoiset valinnat\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "virheelliset henkilökohtaisen salaimen valinnat\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "virheelliset henkilökohtaiset tiivisteen valinnat\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "virheelliset henkilökohtaiset pakkausvalinnat\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ja %s eivät vielä toimi yhdessä\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [tiedostonimi]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [tiedostonimi]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "avaus epäonnistui: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [tiedostonimi]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--allekirjoita [tiedostonimi]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [tiedostonimi]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [tiedostonimi]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [tiedostonimi]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key käyttäjätunnus" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key käyttäjätunnus" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key käyttäjätunnus [komennot]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "avainpalvelimelta vastaanotto epäonnistui: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "avaimen vienti epäonnistui: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "avainpalvelimelta etsiminen epäonnistui: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "avainpalvelimen päivitys epäonnistui: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "ascii-koodauksen purku epäonnistui: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "ascii-koodaaminen epäonnistui: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "virheellinen tiivistealgoritmi \"%s\"\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[tiedostonimi]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Kirjoita viestisi...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "annettu varmennekäytännön URL on virheellinen\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" @@ -3032,22 +3032,22 @@ msgstr "ohitetaan: salainen avain on jo paikalla\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "virhe luotaessa avainrengasta \"%s\": %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "avainrengas \"%s\" luotu\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "virhe luotaessa \"%s\": %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "avainrenkaan välimuistin uudelleenluominen epäonnistui: %s\n" @@ -6139,12 +6139,12 @@ msgstr "lukuvirhe: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "trustdb: synkronointi epäonnistui: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb rec %lu: lseek epäonnistui: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb rec %lu: kirjoittaminen epäonnistuin (n=%d): %s\n" @@ -6158,112 +6158,112 @@ msgstr "trustdb-tapahtuma on liian suuri\n" msgid "can't access `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi sulkea: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: hakemistoa ei ole olemassa!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "tiedostoa \"%s\" ei voi avata\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: versiotietueen luonti epäonnistui: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: luotu trustdb ei kelpaa\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: trustdb luotu\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "HUOM: trustdb:n ei voida kirjoittaa\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: trustdb ei kelpaa\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: hajautustaulukon luonti ei onnistu: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: virhe päivitettäessä versiotietuetta: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: virhe luettaessa versiotietuetta: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: virhe kirjoitettaessa versiotietuetta: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek epäonnistui: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: luku epäonnistui (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: ei ole trustdb-tiedosto\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: versiotietue tietuenumerolla %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: tiedostoversio %d ei kelpaa\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: virhe luettaessa vapaata tietuetta: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: virhe kirjoitettaessa hakemistotietuetta: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: tietueen nollaaminen epäonnistui: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: tietueeseen lisääminen epäonnistui: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "trustdb on turmeltunut; suorita \"gpg --fix-trustdb\"\n" @@ -6817,16 +6817,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6836,6 +6836,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "epäkelpo radix64-merkki %02x ohitettu\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6860,11 +6865,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "apua" @@ -6874,226 +6879,240 @@ msgstr "apua" msgid "critical certificate extension %s is not supported" msgstr "gpg-agent-protokollaversio %d ei ole tuettu\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi avata: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "virhe luotaessa salasanaa: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "avainlohkojen poisto epäonnistui: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "HUOM: avain on mitätöity!" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "virheellinen varmenne" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Avain saatavilla kohteessa: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "luodun allekirjoituksen tarkistus epäonnistui: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " uusia allekirjoituksia: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Mitätöintivarmenne luotu.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "virheellinen varmenne" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "näytä sormenjälki" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "luo mitätöintivarmenne" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "luodun allekirjoituksen tarkistus epäonnistui: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "tarkista allekirjoitus" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "valinta %c%lu on kopio\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Mitätöintivarmenne luotu.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "virheellinen varmenne" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7962,7 +7981,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index 91e5968a1..83a70456a 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2005-06-28 00:24+0200\n" "Last-Translator: Gal Quri \n" "Language-Team: French \n" @@ -19,18 +19,18 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "impossible de stocker l'empreinte: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -39,7 +39,7 @@ msgstr "Entrez le mot de passe ; c'est une phrase secr #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "validit: %s" @@ -50,45 +50,45 @@ msgstr "validit #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "ligne trop longue" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "ligne trop longue" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Caractre invalide dans le nom\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "mauvais entier en prcision multiple (MPI)" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "mauvaise phrase de passe" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "mauvaise phrase de passe" @@ -100,18 +100,18 @@ msgstr "le hachage de protection %d n'est pas support #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "impossible de crer `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -420,18 +420,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, 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:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fichier d'options `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "lire les options de `%s'\n" @@ -444,16 +444,16 @@ msgstr "erreur pendant la cr #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossible de crer le rpertoire `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossible de crer `%s': %s\n" @@ -468,24 +468,24 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erreur pendant l'obtention du nouveau code PIN: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, 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:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "la mise jour a chou: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "criture de la cl secrte dans `%s'\n" @@ -505,7 +505,7 @@ msgstr "fstat(%d) msgid "can't use `%s' as home directory\n" msgstr "impossible de crer le rpertoire `%s': %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" @@ -530,12 +530,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, 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:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignor: %s\n" @@ -723,45 +723,45 @@ msgstr "changer la phrase de passe" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "erreur pendant la cration de la phrase de passe: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "impossible d'ouvir les donnes signes `%s'\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "" "erreur durant la lecture des informations contenues actuellement\n" "dans la cl: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "erreur pendant la lecture de `%s': %s\n" @@ -803,19 +803,19 @@ msgstr "annul msgid "problem with the agent\n" msgstr "problme avec l'agent - arrt d'utilisation de l'agent\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossible d'empcher la gnration de fichiers core: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" "AVERTISSEMENT: le propritaire de l'extension `%s' est peu\n" "sr\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "" @@ -989,24 +989,24 @@ msgstr "mauvais certificat" msgid "Included certificates" msgstr "mauvais certificat" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "version inconnue" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Pas d'aide disponible pour `%s'" @@ -1124,7 +1124,7 @@ msgstr "ATTENTION: des donn msgid "not human readable" msgstr "illisible par un humain" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "la carte OpenPGP n'est pas disponible: %s\n" @@ -1134,157 +1134,157 @@ msgstr "la carte OpenPGP n'est pas disponible: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "carte OpenPGP n %s dtecte\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "impossible de faire cela en mode automatique\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Votre choix ? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[non positionn]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "masculin" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "fminin" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "non spcifi" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "non forc" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "forc" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Erreur: Seul l'ASCII standard est permis pour l'instant.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Erreur: Le caractre < ne peut pas tre utilis.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Erreur: Les espaces doubles ne sont pas permis.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Nom du dteneur de la carte: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Prnom du dteneur de la carte: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Erreur: Nom combin trop long (la limite est %d caractres).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL pour rcuprer la cl publique: %s" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Erreur: URL trop long (la limite est %d caractres).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Donnes d'identification (nom du compte): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" "Erreur: Donnes d'indentification trop longues (la limite est\n" "%d caractres).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Donnes DO prives: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Erreur: DO priv trop long (la limite est %d caractres).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Prfrences de langue: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Erreur: longueur invalide de la chane de prfrences.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Erreur: caractres invalide dans la chane de prfrences.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Sexe ((M)asculin, (F)minin ou espace): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Erreur: rponse invalide.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "empreinte de l'autorit de certification: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Erreur: empreinte mal formate.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "l'opration sur la cl n'est pas possible: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "ce n'est pas une carte OpenPGP" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "" "erreur durant la lecture des informations contenues actuellement\n" "dans la cl: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Remplacer la cl existante ? (o/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Faire une sauvegarde hors carte de la cl de chiffrement ? (O/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Remplacer les cls existantes ? (o/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1295,122 +1295,122 @@ msgstr "" " PIN = `%s' PIN admin = `%s'\n" "Vous devriez les changer avec la commande --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Slectionnez le type de cl gnrer:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Cl de signature\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Cl de chiffrement\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Cl d'authentification\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Choix invalide.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Slectionnez l'endroit o stocker la cl:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "algorithme de protection de cl inconnu\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "Les parties secrtes de la cl ne sont pas disponibles.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "la cl secrte est dj stocke sur une carte\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "quitter ce menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "indiquer les commandes d'administration" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "afficher cette aide" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "lister toutes les donnes disponibles" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "changer le nom du propritaire de la carte" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "changer l'URL pour rcuprer la cl" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "aller chercher la cl spcifie dans l'URL de la carte" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "changer le nom d'identification" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "changer les prfrences de langue" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "changer le sexe du propritaire de la carte" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "changer l'empreinte d'une autorit de certification" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "" "inverser le paramtre obligeant rentrer le code PIN pour les\n" "signatures" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "gnrer de nouvelles cls" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "menu pour changer ou dverrouiller le PIN" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "vrifier le code PIN et lister toutes les donnes" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Commande> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "La commande n'est utilisable qu'en mode administration\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Les commandes d'administration sont permises\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Les commandes d'administration ne sont pas permises\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Commande invalide (essayez help)\n" @@ -1418,7 +1418,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossible d'ouvrir `%s'\n" @@ -2149,420 +2149,420 @@ msgstr "" msgid "show expiration dates during signature listings" msgstr "Pas de signature correspondante dans le porte-cls secret\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, 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:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, 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:2532 +#: g10/gpg.c:2550 #, 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:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "impossible d'interprter l'URL du serveur de cls\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: les options du serveur de cls sont invalides\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "les options du serveur de cls sont invalides\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: options d'import invalides\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "options d'import invalides\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: options d'export invalides\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "options d'export invalides\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: options de liste invalides\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "options de liste invalides\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, 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:2622 +#: g10/gpg.c:2640 #, 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:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, 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:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: options de vrification invalides\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "options de vrification invalides\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossible de mettre le chemin d'excution %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: options de vrification invalides\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "ATTENTION: Le programme peut crer un fichier core !\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENTION: %s remplace %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n'est pas permis avec %s !\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n'a aucun sens avec %s !\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorithme de chiffrement slectionn est invalide\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "la fonction de hachage slectionne est invalide\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "l'algorithme de compression slectionn est invalide\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "la fonction de hachage de certification slectionne est invalide\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed doit tre suprieur 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed doit tre suprieur 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: le mode S2K simple (0) est fortement dconseill\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "prfrences par dfaut invalides\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "prfrences de chiffrement personnelles invalides\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "prfrences de hachage personnelles invalides\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "prfrences de compression personnelles invalides\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne marche pas encore avec %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "impossible d'initialiser la base de confiance: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nom du fichier]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nom du fichier]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "le chiffrement symtrique de `%s' a chou: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nom du fichier]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nom du fichier]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nom du fichier]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom du fichier]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nom du fichier]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom du fichier]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nom du fichier]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nom du fichier]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key utilisateur" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key utilisateur" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key utilisateur [commandes]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'envoi vers le serveur de cls a chou: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la rception depuis le serveur de cls a chou: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "l'export de la cl a chou: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "la recherche au sein du serveur de cls a chou: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "le rafrachissement par le serveur de cls a chou: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "la suppression d'une armure a chou: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "la construction d'une armure a chou: %s \n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algorithme de hachage `%s' invalide\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nom du fichier]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Vous pouvez taper votre message...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "l'URL de politique de certification donne est invalide\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "l'URL de politique de signature donne est invalide\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL du serveur de cls favori qui a t donne est invalide\n" @@ -3057,22 +3057,22 @@ msgstr "NOTE: la cl msgid "NOTE: secondary key is online and stored on card\n" msgstr "NOTE: la cl secondaire est en ligne et stocke sur la carte\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "erreur durant la cration du porte-cls `%s' : %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "le porte-cls `%s` a t cr\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "ressource bloc de cls `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "la reconstruction du cache de porte-cls a chou : %s\n" @@ -6146,12 +6146,12 @@ msgstr "erreur de lecture dans `%s': %s\n" msgid "trustdb: sync failed: %s\n" msgstr "base de confiance: la synchronisation a chou: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "enregistrement de base de confiance %lu: lseek a chou: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -6166,114 +6166,114 @@ msgstr "transaction de base de confiance trop volumineuse\n" msgid "can't access `%s': %s\n" msgstr "impossible d'accder `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: le rpertoire n'existe pas !\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "impossible de crer un verrou pour `%s'\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "impossible de verrouiller `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: impossible de crer un enregistrement de version: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: base de confiance invalide cre\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: base de confiance cre\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOTE: la base de confiance n'a pas les permissions d'criture\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: base de confiance invalide\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: la cration de la table de hachage a chou: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: erreur pendant la mise jour de l'enregistrement de version: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: erreur pendant la lecture de l'enregistrement de version: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: erreur pendant l'criture de l'enregistrement de version: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "base de confiance: lseek() a chou: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "base de confiance: la lecture a chou (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: ce n'est pas un fichier de base de confiance\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: enregistrement de version avec un numro %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: version %d du fichier invalide\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: erreur pendant la lecture de l'enregistrement libre: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "" "%s: erreur pendant l'criture de l'enregistrement de\n" "rpertoire: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: n'a pu mettre un enregistrement zro: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: impossible d'ajouter un enregistrement: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "la base de confiance est corrompue; excutez gpg --fix-trustdb.\n" @@ -6838,16 +6838,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6857,6 +6857,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "caractre %02X invalide en radix64 ignor\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6881,11 +6886,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6894,227 +6899,241 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "le protocole gpg-agent version %d n'est pas support\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "Impossible d'ouvrir `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "il est interdit d'exporter les cl secrtes\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "erreur pendant la cration de la phrase de passe: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "la lecture de la cl publique a chou: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "le stockage de la cl a chou: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOTE: la cl a t rvoque" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "mauvais certificat" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Cl disponible sur: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "Impossible de vrifier la signature cre: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "il est interdit d'exporter les cl secrtes\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Cette cl a expir !" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Cette cl a expir !" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Cette cl a expir !" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Cette cl a expir !" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " signatures nettoyes: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Certificat de rvocation cr.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "mauvais certificat" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr "N de srie de la carte =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "empreinte de l'autorit de certification: " -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "gnrer un certificat de rvocation" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "Impossible de vrifier la signature cre: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "vrifier une signature" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "prfrence `%s' duplique\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Certificat de rvocation cr.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "mauvais certificat" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -8001,7 +8020,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/gl.po b/po/gl.po index a7ea5339b..81807774b 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -14,18 +14,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -34,7 +34,7 @@ msgstr "Por favor, introduza o contrasinal; esta #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,45 +44,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "lia longa de mis\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "contrasinal demasiado longo\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Caracter non vlido no nome\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI errneo" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "contrasinal errneo" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "contrasinal errneo" @@ -94,18 +94,18 @@ msgstr "o algoritmo de protecci #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "non se pode crear `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -409,18 +409,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, 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:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opcins `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "lendo as opcins de `%s'\n" @@ -433,16 +433,16 @@ msgstr "erro ao crear `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "non se pode crea-lo directorio `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "non foi posible crear %s: %s\n" @@ -457,22 +457,22 @@ msgstr "Revocaci 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar a `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "a actualizacin fallou: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "gravando a chave secreta en `%s'\n" @@ -492,7 +492,7 @@ msgstr "base de datos de confianza: fallou a lectura (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: non foi posible crear un directorio: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro lendo `%s': %s\n" @@ -517,12 +517,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "o segredo da actualizacin fallou: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves omitidas\n" @@ -710,43 +710,43 @@ msgstr "cambia-lo contrasinal" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "non se puido abrir un ficheiro: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "erro lendo `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "erro escribindo no chaveiro secreto `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "erro lendo `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "erro lendo `%s': %s\n" @@ -789,17 +789,17 @@ msgstr "cancelado polo usuario\n" msgid "problem with the agent\n" msgstr "problema co axente: o axente voltou coa resposta 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "non posible deshabilita-los volcados de 'core': %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" @@ -975,24 +975,24 @@ msgstr "Certificado correcto" msgid "Included certificates" msgstr "Certificado non vlido" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "versin descoecida" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Non hai axuda dispoible para `%s'" @@ -1113,7 +1113,7 @@ msgstr "AVISO: atop msgid "not human readable" msgstr "non lexible por humanos" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "a chave secreta non est dispoible" @@ -1123,166 +1123,166 @@ msgstr "a chave secreta non est msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "non se pode facer iso no modo por lotes\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "A sa seleccin? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Non se especificou un motivo" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "non procesado" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "non hai unha chave pblica correspondente: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "erro lendo `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "preferencias actualizadas" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter non vlido na cadea de preferencias\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter non vlido na cadea de preferencias\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "erro: pegada dactilar non vlida\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "Pegada dactilar:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "erro: pegada dactilar non vlida\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A xeracin da chave fallou: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "non se atoparon datos OpenPGP vlidos.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro escribindo no chaveiro secreto `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1290,136 +1290,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor, seleccione o tipo de chave que quere:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "A sinatura caducou o %s\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (s cifrar)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Seleccin non vlida.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Por favor, escolla o motivo da revocacin:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de proteccin descoecido\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "as partes secretas da chave primaria non estn dispoibles.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "omtese: a chave secreta xa est presente\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "sar deste men" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "amosar esta axuda" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Chave dispoible en: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "cambia-la fecha de expiracin" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "cambia-la confianza sobre o dono" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "amosar fingerprint" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "xerar un novo par de chaves" +msgid "change a CA fingerprint" +msgstr "amosar fingerprint" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "xerar un novo par de chaves" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Comando incorrecto (tente \"help\")\n" @@ -1427,7 +1427,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "non se puido abrir `%s'\n" @@ -2128,416 +2128,416 @@ msgstr "amosar en que chaveiro est msgid "show expiration dates during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s non para uso normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "non se puido estabrecer exec-path a %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: o programa pode crear un ficheiro 'core'!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s fai que se ignore %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s non se admite con %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s non ten sentido empregndoo con %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de resumo seleccionado non vlido\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de resumo de certificacin seleccionado non vlido\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser superior a 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser superior a 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 #, 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:3097 +#: g10/gpg.c:3116 #, 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: desaconsllase encarecidamente o modo S2K simple (0)\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "preferencias por defecto non vlidas\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "preferencias de cifrado personais non vlidas\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "preferencias de resumo personais non vlidas\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "preferencias de compresin personais non vlidas\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s anda non traballa con %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, 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:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [ficheiro]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [ficheiro]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "o descifrado fallou: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [ficheiro]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [ficheiro]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ficheiro]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [ficheiro]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [ficheiro]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id-de-usuario" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id-de-usuario" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-de-usuario [comandos]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "o envo ao servidor de chaves fallou: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "a recepcin do servidor de chaves fallou: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "a exportacin da chave fallou: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "a busca no servidor de chaves fallou fallou: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "a actualizacin no servidor de chaves fallou: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "non se puido quita-la armadura: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "non se puido poe-la armadura: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash non vlido `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[ficheiro]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Escriba a sa mensaxe ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "o URL de normativa de certificacin dado non vlido\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non vlido\n" @@ -3036,22 +3036,22 @@ msgstr "om msgid "NOTE: secondary key is online and stored on card\n" msgstr "omtese: a chave secreta xa est presente\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "erro ao crea-lo chaveiro `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "chaveiro `%s' creado\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "erro ao crear `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "fallo ao reconstru-la cach de chaveiros: %s\n" @@ -6143,12 +6143,12 @@ msgstr "erro de lectura: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "base de datos de confianza: fallou a sincronizacin: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "rexistro da base de datos de confianza %lu: lseek fallou: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -6163,112 +6163,112 @@ msgstr "transacci msgid "can't access `%s': %s\n" msgstr "non se pode pechar `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: o directorio non existe!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "non se pode crear `%s': %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "non se puido abrir `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: non se puido crea-lo rexistro de versin: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: creouse unha base de datos de confianza incorrecta\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: creouse a base de datos de confianza\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOTA: non se pode escribir na base de datos de confianza\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: base de datos de confianza non vlida\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: fallo ao crear unha tboa hash: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: erro ao actualiza-lo rexistro de versin: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: erro ao le-lo rexistro de versin: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: erro ao escribi-lo rexistro de versin: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "base de datos de confianza: lseek fallou: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "base de datos de confianza: fallou a lectura (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: non un ficheiro de base de datos de confianza\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: rexistro de versin con nmero de rexistro %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: versin do ficheiro incorrecta %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: erro ao ler un rexistro libre: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: erro ao escribi-lo rexistro de directorios: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: non se puido pr a cero un rexistro: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: non se puido engadir un rexistro: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "a base de datos de confianza est corrompida; execute \"gpg --fix-trustdb" @@ -6825,16 +6825,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6844,6 +6844,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "carcter radix64 non vlido %02x omitido\n" +#: sm/call-agent.c:136 +#, fuzzy, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "erro ao pr '%s' na base de datos de confianza: %s\n" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6868,11 +6873,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "axuda" @@ -6882,238 +6887,252 @@ msgstr "axuda" msgid "critical certificate extension %s is not supported" msgstr "a versin %d do protocolo de gpg-agent non est soportada\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "non se puido abrir `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "gravando a chave secreta en `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "erro ao crea-lo contrasinal: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "fallou o borrado do bloque de chaves: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: a chave est revocada" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "Certificado correcto" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Chave dispoible en: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "fallou a comprobacin da sinatura creada: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 #, fuzzy msgid "certificate not yet valid" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " novas sinaturas: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Creouse o certificado de revocacin.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Pegada dactilar:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 #, fuzzy msgid "root certificate has now been marked as trusted\n" msgstr "" "Non se atoparon certificados con confianza non definida.\n" "\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "Certificado correcto" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 #, fuzzy msgid "root certificate is not marked trusted" msgstr "" "Non se atoparon certificados con confianza non definida.\n" "\n" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "fallou a comprobacin da sinatura creada: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 #, fuzzy msgid "certificate chain too long\n" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 #, fuzzy msgid "issuer certificate not found" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verificar unha sinatura" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "Revocacin de certificado vlida" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "certificado duplicado - borrado" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "" "Non se atoparon certificados con confianza non definida.\n" "\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7984,7 +8003,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" @@ -9748,9 +9767,6 @@ msgstr "" #~ msgid "user '%s' not in trustdb - inserting\n" #~ msgstr "o usuario '%s' non est na base de datos de confianza - inserindo\n" -#~ msgid "failed to put '%s' into trustdb: %s\n" -#~ msgstr "erro ao pr '%s' na base de datos de confianza: %s\n" - #~ msgid "WARNING: can't yet handle long pref records\n" #~ msgstr "" #~ "AVISO: anda non se poden manexar rexistros de preferencias longos\n" diff --git a/po/hu.po b/po/hu.po index 836060abb..8fd0fa875 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-06-19 21:53+0200\n" "Last-Translator: Nagy Ferenc Lszl \n" "Language-Team: Hungarian \n" @@ -14,18 +14,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "Bizalmi adatbzis (%s) inicializlsa sikertelen!\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -34,7 +34,7 @@ msgstr "K #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,45 +44,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "A sor tl hossz!\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "A jelsz tl hossz!\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "rvnytelen karakter a nvben!\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "hibs MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "rossz jelsz" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "rossz jelsz" @@ -94,18 +94,18 @@ msgstr "%d%s v #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "Nem tudom ltrehozni a(z) \"%s\" llomnyt: %s.\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -404,18 +404,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MEGJEGYZS: Nincs alaprtelmezett opcis fjl (%s).\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "\"%s\" opcis fjl: %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "Az opcikat a \"%s\" llomnybl olvasom.\n" @@ -428,16 +428,16 @@ msgstr "Hiba \"%s\" l #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Nem tudom a \"%s\" knyvtrat ltrehozni: %s.\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s nem hozhat ltre: %s\n" @@ -452,22 +452,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "Hiba a jelsz ltrehozsakor: %s.\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "Hiba %s-ra/-re kldskor: %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "Frissts sikertelen: %s.\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "rom a titkos kulcsot a %s llomnyba.\n" @@ -487,7 +487,7 @@ msgstr "Bizalmi adatb msgid "can't use `%s' as home directory\n" msgstr "%s: Nem tudom a knyvtrat ltrehozni: %s.\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "Hiba \"%s\" olvassakor: %s\n" @@ -512,12 +512,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "Titkoskulcs-blokk frisstse sikertelen: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: kihagyva: %s\n" @@ -705,43 +705,43 @@ msgstr "jelsz msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "Hiba a jelsz ltrehozsakor: %s.\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "Nem tudom megnyitni az llomnyt: %s.\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "Hiba \"%s\" olvassakor: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "Hiba a(z) \"%s\" titkoskulcs-karika rsakor: %s.\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "Hiba \"%s\" olvassakor: %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "Hiba \"%s\" olvassakor: %s\n" @@ -784,17 +784,17 @@ msgstr "A felhaszn msgid "problem with the agent\n" msgstr "Problma az gynkkel: gynk vlasza: 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "Nem tudom letiltani a core fjlokat: %s.\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" @@ -966,24 +966,24 @@ msgstr "rossz igazol msgid "Included certificates" msgstr "rossz igazols" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "ismeretlen verzi" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Nem ll rendelkezsre segtsg \"%s\" tmhoz." @@ -1103,7 +1103,7 @@ msgstr "FIGYELEM: msgid "not human readable" msgstr "nem olvashat forma" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "titkos kulcs nem ll rendelkezsre" @@ -1113,166 +1113,166 @@ msgstr "titkos kulcs nem msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "Nem tudom ezt megcsinlni ktegelt mdban!\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Mit vlaszt? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Nincs megadva ok." -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "nem feldolgozott" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "Nincs hozz tartoz nyilvnos kulcs: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "Hiba \"%s\" olvassakor: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "preferencik frisstse" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "rvnytelen karakter a preferencik kztt!\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "rvnytelen karakter a preferencik kztt!\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "Hiba: rvnytelen ujjlenyomat.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "megmutatja az ujjlenyomatot" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "Hiba: rvnytelen ujjlenyomat.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kulcsgenerls sikertelen: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "Nem talltam rvnyes OpenPGP adatot.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "Hiba a(z) \"%s\" titkoskulcs-karika rsakor: %s.\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1280,136 +1280,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Krem, adja meg, milyen kulcsot kvn:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Az alrs lejrt: %s.\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (csak titkosts)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "rvnytelen vlaszts.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Krem, vlassza ki a visszavons okt:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "Ismeretlen vdelmi algoritmus!\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Az elsdleges kulcs titkos rszei nem elrhetk.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "Kihagytam: titkos kulcs mr jelen van.\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "kilps ebbl a menbl" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "Egymsnak ellentmond parancsok!\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "megmutatja ezt a sgt" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Kulcs tallhat: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "lejrat megvltoztatsa" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "kulcstulajdonos megbzhatsgnak belltsa" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "megmutatja az ujjlenyomatot" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "j kulcspr ltrehozsa" +msgid "change a CA fingerprint" +msgstr "megmutatja az ujjlenyomatot" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "j kulcspr ltrehozsa" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Parancs> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "Egymsnak ellentmond parancsok!\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "Egymsnak ellentmond parancsok!\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "rom a titkos kulcsot a %s llomnyba.\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "rvnytelen parancs! (Prblja a sgt: \"help\".)\n" @@ -1417,7 +1417,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "Nem tudom megnyitni %s-t!\n" @@ -2111,414 +2111,414 @@ msgstr "mutatja a kilist msgid "show expiration dates during signature listings" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MEGJEGYZS: Figyelmen kvl hagytam a rgi opcikat (%s).\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MEGJEGYZS: %s nem norml hasznlatra van!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "rtelmezhetetlen a kulcsszerver URI-ja!\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, 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:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "FIGYELEM: A program core llomnyt hozhat ltre!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "FIGYELEM: %s hatstalantja %s-t!\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s s %s nem hasznlhat egytt!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s rtelmetlen %s mellett!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "zenet titkostsa --pgp2 mdban IDEA rejtjelezt ignyel!\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "A kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "Az igazolshoz kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed nagyobb kell legyen 0-nl!\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed nagyobb kell legyen 1-nl!\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MEGJEGYZS: Egyszer S2K md (0) ersen ellenjavallt!\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "rvnytelen S2K md; 0, 1 vagy 3 lehet.\n" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "rvnytelen alaprtelmezett preferencik!\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "rvnytelen szemlyes rejtjelez-preferencik!\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "rvnytelen szemlyes kivonatolpreferencik!\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "rvnytelen szemlyes tmrtpreferencik!\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s s %s egyelre nem hasznlhat egytt!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Bizalmi adatbzis (%s) inicializlsa sikertelen!\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [fjlnv]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [fjlnv]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Visszafejts sikertelen: %s.\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [fjlnv]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [fjlnv]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [fjlnv]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [fjlnv]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [fjlnv]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key felh-azonost" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key felh-azonost" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key felh-azonost [parancsok]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "Klds a kulcsszerverre sikertelen: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Vtel a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "Kulcsexportls sikertelen: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "Keress a kulcsszerveren sikertelen: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Frissts a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "Pncl eltvoltsa nem sikerlt: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "Pnclozs nem sikerlt: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "rvnytelen kivonatol algoritmus: %s\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[fjlnv]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Kezdheti gpelni az zenetet...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "A megadott igazolsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" @@ -3009,22 +3009,22 @@ msgstr "Kihagytam: titkos kulcs m msgid "NOTE: secondary key is online and stored on card\n" msgstr "Kihagytam: titkos kulcs mr jelen van.\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "Hiba a(z) \"%s\" kulcskarika ltrehozsakor: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "\"%s\" kulcskarikt ltrehoztam.\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "Hiba \"%s\" ltrehozsakor: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "Nem tudtam jrapteni a kulcskarika cache-t: %s\n" @@ -6107,12 +6107,12 @@ msgstr "Olvas msgid "trustdb: sync failed: %s\n" msgstr "Bizalmi adatbzis: szinkronizci sikertelen: %s.\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "Bizalmi adatbzis %lu. rekord: lseek sikertelen: %s.\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "Bizalmi adatbzis %lu. rekord: rs sikertelen (n=%d): %s.\n" @@ -6126,112 +6126,112 @@ msgstr "Bizalmi adatb msgid "can't access `%s': %s\n" msgstr "Nem tudom bezrni a(z) \"%s\" llomnyt: %s.\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: Knyvtr nem ltezik!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "Nem tudom ltrehozni a(z) \"%s\" llomnyt: %s.\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "Nem tudom megnyitni %s-t!\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: Nem sikerlt verzirekordot ltrehoznom: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: rvnytelen bizalmi adatbzis jtt ltre.\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: Bizalmi adatbzis ltrejtt.\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "MEGJEGYZS: Bizalmi adatbzis nem rhat.\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: rvnytelen bizalmi adatbzis.\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: Hashtbla ltrehozsa sikertelen: %s.\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: Hiba a verzirekord frisstsekor: %s.\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: Hiba a verzirekord olvassakor: %s.\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: Hiba a verzirekord rsakor: %s.\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "Bizalmi adatbzis: lseek sikertelen: %s.\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "Bizalmi adatbzis: olvass sikertelen (n=%d): %s.\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: Nem bizalmi adatbzis.\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: Verzirekord, rekordszm: %lu.\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: rvnytelen llomnyverzi (%d).\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: Hiba szabad rekord olvassakor: %s.\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: Hiba knyvtrrekord rsakor: %s.\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: Nem sikerlt egy rekord nullzsa: %s.\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: Nem sikerlt egy rekord hozzadsa: %s.\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "Bizalmi adatbzis srlt. Krem, futtassa: \"gpg --fix-trustdb\".\n" @@ -6783,16 +6783,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6802,6 +6802,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "Kihagytam a %02x kd rvnytelen radix64 karaktert.\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6826,11 +6831,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6840,226 +6845,240 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "%d gpg-agent protokollverzi nem tmogatott!\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "Nem tudom megnyitni a(z) \"%s\" llomnyt: %s.\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "rom a titkos kulcsot a %s llomnyba.\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "Hiba a jelsz ltrehozsakor: %s.\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "A kulcsblokk trlse sikertelen: %s.\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "Bizalmi adatbzis (%s) inicializlsa sikertelen!\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "MEGJEGYZS: A kulcsot visszavontk." -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "rossz igazols" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Kulcs tallhat: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "A ltrehozott alrs ellenrzse sikertelen: %s.\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "rom a titkos kulcsot a %s llomnyba.\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Ez a kulcs lejrt!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Ez a kulcs lejrt!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Ez a kulcs lejrt!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Ez a kulcs lejrt!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " j alrsok: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Visszavon igazols ltrehozva.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "rossz igazols" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "megmutatja az ujjlenyomatot" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "visszavonsi igazols ksztse" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "A ltrehozott alrs ellenrzse sikertelen: %s.\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "alrs ellenrzse" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "%c%lu preferencia ktszer szerepel!\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Visszavon igazols ltrehozva.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "rossz igazols" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7929,7 +7948,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/id.po b/po/id.po index 48fa04d24..c1a5bcb10 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -16,18 +16,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.3\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -36,7 +36,7 @@ msgstr "Silakan masukkan passphrase; ini kalimat rahasia\n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -46,45 +46,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "baris terlalu panjang\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "passphrase terlalu panjang\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Karakter tidak valid dalam nama\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI yang buruk" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "passphrase yang buruk" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "passphrase yang buruk" @@ -96,18 +96,18 @@ msgstr "algoritma proteksi %d%s tidak didukung\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -406,18 +406,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "CATATAN: tidak ada file pilihan baku `%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "file pilihan `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "membaca pilihan dari `%s'\n" @@ -430,16 +430,16 @@ msgstr "kesalahan penciptaan : `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "tidak dapat membuat direktori `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "tidak dapat membuat %s: %s\n" @@ -454,22 +454,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "kesalahan mengirim ke `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "gagal memperbarui: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "menulis kunci rahasia ke `%s'\n" @@ -489,7 +489,7 @@ msgstr "trustdb: read failed (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: tidak dapat membuat direktori: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "kesalahan membaca `%s': %s\n" @@ -514,12 +514,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "gagal perbarui rahasia: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: dilewati: %s\n" @@ -707,43 +707,43 @@ msgstr "ubah passphrase" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "tidak dapat membuka file: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "kesalahan menulis keyring rahasia `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "kesalahan membaca `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "kesalahan membaca `%s': %s\n" @@ -786,17 +786,17 @@ msgstr "dibatalkan oleh user\n" msgid "problem with the agent\n" msgstr "masalah dengan agen: agen mengembalikan 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "tidak dapat meniadakan core dump: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" @@ -968,24 +968,24 @@ msgstr "sertifikat yang buruk" msgid "Included certificates" msgstr "sertifikat yang buruk" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "versi tidak dikenal" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Tidak tersedia bantuan untuk `%s'" @@ -1106,7 +1106,7 @@ msgstr "PERINGATAN: ditemukan notasi data tidak valid\n" msgid "not human readable" msgstr "tidak dapat dibaca manusia" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "kunci rahasia tidak tersedia" @@ -1116,166 +1116,166 @@ msgstr "kunci rahasia tidak tersedia" msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "tidak dapat melakukan hal itu dalam mode batch\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Pilihan anda? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Tidak ada alasan diberikan" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "tidak diproses" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "tidak ada kunci publik yang sesuai: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "perbarui preferensi" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "kesalahan: fingerprint tidak valid\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "tampilkan fingerprint" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "kesalahan: fingerprint tidak valid\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Pembuatan kunci gagal: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "tidak ditemukan data OpenPGP yang valid.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "kesalahan menulis keyring rahasia `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1283,136 +1283,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Silakan pilih kunci yang anda inginkan:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Signature kadaluwarsa %s\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Pilihan tidak valid.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritma proteksi tidak dikenal\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Bagian rahasia kunci primer tidak tersedia.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "berhenti dari menu ini" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "tampilkan bantuan" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Kunci tersedia di:" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "ubah tanggal kadaluarsa" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "ubah ownertrust" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "tampilkan fingerprint" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "buat sepasang kunci baru" +msgid "change a CA fingerprint" +msgstr "tampilkan fingerprint" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "buat sepasang kunci baru" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Perintah> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Perintah tidak valid (coba \"help\")\n" @@ -1420,7 +1420,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "tidak dapat membuka `%s'\n" @@ -2113,422 +2113,422 @@ msgstr "tampilkan keyring tempat kunci yang dipilih berada" msgid "show expiration dates during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "CATATAN: file pilihan baku lama `%s' diabaikan\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "CATATAN: %s tidak untuk pemakaian normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "tidak dapat memparsing URI keyserver\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "tidak dapat menset path exec ke %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "PERINGATAN: program mungkin membuat file core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "PERINGATAN: %s menimpa %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s tidak dibolehkan dengan %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s tidak masuk akal dengan %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "algoritma digest yang dipilih tidak valid\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritma sertifikasi digest yang dipilih tidak valid\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed harus lebih dari 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed harus lebih dari 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "preferensi baku tidak valid\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "preferensi cipher personal tidak valid\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "preferensi digest personal tidak valid\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "preferensi kompresi personal tidak valid\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s belum dapat dipakai dengan %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [namafile]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [namafile]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "dekripsi gagal: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [namafile]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [namafile]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [namafile]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [namafile]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [namafile]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id-user" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id-user" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-user [perintah]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Penerimaan keyserver gagal: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "Ekspor kunci gagal: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "Pencarian keyserver gagal: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh keyserver gagal: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "gagal dearmoring: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[namafile]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Teruskan dan ketikkan pesan anda ....\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "URL sertifikasi kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" @@ -3016,22 +3016,22 @@ msgstr "dilewati: kunci pribadi telah ada\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "kesalahan menulis keyring `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "%s: keyring tercipta\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "kesalahan penciptaan : `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "gagal membuat kembali cache keyring: %s\n" @@ -6102,12 +6102,12 @@ msgstr "kesalahan pembacaan: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "trustdb: gagal sync: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb rec %lu: lseek gagal: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb rec %lu: write failed (n=%d): %s\n" @@ -6121,112 +6121,112 @@ msgstr "transaksi trustdb terlalu besar\n" msgid "can't access `%s': %s\n" msgstr "tidak dapat menutup `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: direktori tidak ada!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "tidak dapat membuat %s: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "tidak dapat membuka `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: gagal membuat catatan versi: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: tercipta trustdb tidak valid\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: tercipta trustdb\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "CATATAN: trustdb tidak dapat ditulisi\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: trustdb tidak valid\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: gagal membuat hashtable: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: kesalahan memperbaharui catatan versi: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: kesalahan membaca catatan versi: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: kesalahan menulis catatan versi: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek gagal: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: read failed (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: bukan file trustdb\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: catatan versi dengan recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: versi file %d tidak valid\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: kesalahan membaca record bebas: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: kesalahan menulis dir record: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: gagal mengosongkan record: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: gagal menambahkan record: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "trustdb terkorupsi; silakan jalankan \"gpg --fix-trustdb\".\n" @@ -6777,16 +6777,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6796,6 +6796,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "karakter radix64 tidak valid %02x dilewati\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6820,11 +6825,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "bantuan" @@ -6834,226 +6839,240 @@ msgstr "bantuan" msgid "critical certificate extension %s is not supported" msgstr "protokol gpg-agent versi %d tidak didukung\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "tidak dapat membuka `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "menulis kunci rahasia ke `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "kesalahan penciptaan passphrase: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "gagal menghapus keyblok: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "CATATAN: kunci telah dibatalkan" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "sertifikat yang buruk" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Kunci tersedia di:" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "Gagal memeriksa signature yang dibuat: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "menulis kunci rahasia ke `%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " signature baru: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Sertifikat pembatalan tercipta.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "sertifikat yang buruk" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "tampilkan fingerprint" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "buat sertifikat revokasi" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "Gagal memeriksa signature yang dibuat: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verifikasi signature" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "preferensi %c%lu ganda \n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Sertifikat pembatalan tercipta.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "sertifikat yang buruk" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7923,7 +7942,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/it.po b/po/it.po index 4b4eccd36..6b339c4c4 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-06-16 17:01+0200\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -14,18 +14,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -34,7 +34,7 @@ msgstr "Inserisci la passphrase, cio #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -44,45 +44,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "riga troppo lunga\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "passphrase troppo lunga\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Carattere non valido nel nome\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI danneggiato" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "passphrase errata" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "passphrase errata" @@ -94,18 +94,18 @@ msgstr "l'algoritmo di protezione %d%s non #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "impossibile creare `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -404,18 +404,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, 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:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "file con le opzioni `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "lettura delle opzioni da `%s'\n" @@ -428,16 +428,16 @@ msgstr "errore creando `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossibile creare la directory `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossibile creare %s: %s\n" @@ -452,22 +452,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "errore nella creazione della passhprase: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aggiornamento fallito: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scrittura della chiave segreta in `%s'\n" @@ -487,7 +487,7 @@ msgstr "trustdb: read fallita (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: impossibile creare la directory: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "errore leggendo `%s': %s\n" @@ -512,12 +512,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aggiornamento della chiave segreta fallito: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: saltata: %s\n" @@ -705,43 +705,43 @@ msgstr "cambia la passphrase" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "errore nella creazione della passhprase: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "impossibile aprire il file: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "errore leggendo `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "errore scrivendo il portachiavi segreto `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "errore leggendo `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "errore leggendo `%s': %s\n" @@ -784,17 +784,17 @@ msgstr "interrotto dall'utente\n" msgid "problem with the agent\n" msgstr "problema con l'agent: ha restituito 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossibile disabilitare i core dump: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" @@ -966,24 +966,24 @@ msgstr "certificato danneggiato" msgid "Included certificates" msgstr "certificato danneggiato" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "versione sconosciuta" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Non disponibile un aiuto per `%s'" @@ -1104,7 +1104,7 @@ msgstr "ATTENZIONE: trovati dati di una nota non validi\n" msgid "not human readable" msgstr "non leggibile" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "la chiave segreta non disponibile" @@ -1114,167 +1114,167 @@ msgstr "la chiave segreta non msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "impossibile fare questo in modo batch\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Cosa scegli? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "abilita" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "abilita" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Nessuna ragione specificata" # ??? (Md) -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "non esaminato" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "non c' una chiave pubblica corrispondente: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "errore leggendo `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "preferenze aggiornate" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "carattere non valido nella stringa delle preferenze\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "carattere non valido nella stringa delle preferenze\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "errore: impronta digitale non valida\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "mostra le impronte digitali" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "errore: impronta digitale non valida\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Generazione della chiave fallita: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "Non sono stati trovati dati OpenPGP validi.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "errore scrivendo il portachiavi segreto `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1282,136 +1282,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Per favore scegli che tipo di chiave vuoi:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Firma scaduta il %s\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (cifra solo)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Scelta non valida.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Per favore scegli il motivo della revoca:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo di protezione sconosciuto\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Parti della chiave segreta non sono disponibili.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "saltata: chiave pubblica gi presente\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "abbandona questo men" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "mostra questo aiuto" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Chiave disponibile presso: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "cambia la data di scadenza" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "cambia il valore di fiducia" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra le impronte digitali" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "genera una nuova coppia di chiavi" +msgid "change a CA fingerprint" +msgstr "mostra le impronte digitali" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "genera una nuova coppia di chiavi" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandi in conflitto\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Comando non valido (prova \"help\")\n" @@ -1419,7 +1419,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossibile aprire `%s'\n" @@ -2122,417 +2122,417 @@ msgstr "mostra in quali portachiavi sono contenute le chiavi elencate" msgid "show expiration dates during signature listings" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s normalmente non deve essere usato!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossibile fare il parsing dell'URI del keyserver\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossibile impostare exec-path a %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENZIONE: %s ha la precedenza su %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "Non permesso usare %s con %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "Non ha senso usare %s con %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non valido\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non valido\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non valido\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non valido\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve essere maggiore di 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve essere maggiore di 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 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:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "preferenze predefinite non valide\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "preferenze personali del cifrario non valide\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "preferenze personali del digest non valide\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "preferenze personali di compressione non valide\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s non funziona ancora con %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nomefile]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nomefile]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifratura fallita: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nomefile]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nomefile]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nomefile]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nomefile]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nomefile]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [comandi]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "invio al keyserver fallito: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "ricezione dal keyserver fallita: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "esportazione della chiave fallita: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "ricerca nel keyserver fallita: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aggiornamento del keyserver fallito: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "rimozione dell'armatura fallita: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo di hash non valido `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nomefile]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Vai avanti e scrivi il messaggio...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "l'URL della politica di certificazione indicato non valido\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL della politica di firma indicato non valido\n" @@ -3023,22 +3023,22 @@ msgstr "saltata: chiave pubblica gi msgid "NOTE: secondary key is online and stored on card\n" msgstr "saltata: chiave pubblica gi presente\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "errore creando il portachiavi `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "portachiavi `%s' creato\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "errore creando `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "rebuild della cache del portachiavi fallito: %s\n" @@ -6145,12 +6145,12 @@ msgstr "errore di lettura: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "trustdb: sync fallita: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb rec %lu: lseek fallita: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb rec %lu: scrittura fallita (n=%d): %s\n" @@ -6164,112 +6164,112 @@ msgstr "transazione del trustdb troppo grande\n" msgid "can't access `%s': %s\n" msgstr "impossibile chiudere `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: la directory non esiste!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "impossibile creare `%s': %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "impossibile aprire `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: creazione del record della versione fallita: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: stato creato un trustdb non valido\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: creato il trustdb\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOTA: il trustdb non scrivibile\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: trustdb non valido\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: creazione della tabella hash fallita: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: errore durante l'aggiornamento del record di versione: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: errore durante la lettura del record di versione: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: errore durante la scrittura del record di versione: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek fallita: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: read fallita (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: non un file di trustdb\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: record di versione con recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: versione %d del file non valida\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: errore durante la lettura del record libero: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: errore durante la scrittura del dir record: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: azzeramento di un record fallito: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: accodatura a un record fallita: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "Il trustdb danneggiato; eseguire \"gpg --fix-trust-db\".\n" @@ -6821,16 +6821,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6840,6 +6840,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "Carattere radix64 non valido %02x saltato\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6864,11 +6869,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6878,226 +6883,240 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "la versione %d del protocollo di gpg-agent non gestita\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "impossibile aprire `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "scrittura della chiave segreta in `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "errore nella creazione della passhprase: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "cancellazione del keyblock fallita: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: la chiave stata revocata" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "certificato danneggiato" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Chiave disponibile presso: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "controllo della firma creata fallito: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "scrittura della chiave segreta in `%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Questa chiave scaduta!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Questa chiave scaduta!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Questa chiave scaduta!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Questa chiave scaduta!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " nuove firme: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Certificato di revoca creato.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "certificato danneggiato" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "mostra le impronte digitali" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "genera un certificato di revoca" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "controllo della firma creata fallito: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verifica una firma" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "la preferenza %c%lu doppia\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Certificato di revoca creato.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "certificato danneggiato" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7966,7 +7985,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 503593aee..1bd69352f 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-11-23 11:14+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" @@ -17,18 +17,18 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "ݴɤ˼Ԥޤ: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -37,7 +37,7 @@ msgstr " #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "ͭ: %s" @@ -48,45 +48,45 @@ msgstr "ͭ #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "ԤĹޤ" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "ѥե졼Ĺޤ\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "̵̾ʸޤ\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPIǤ" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "ѥե졼Ǥ" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "ѥե졼Ǥ" @@ -98,18 +98,18 @@ msgstr " #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "%sפǤޤ: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -408,18 +408,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr ": Υץ󡦥ե%sפޤ\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "ץ󡦥ե%s: %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "%sפ饪ץɤ߽Фޤ\n" @@ -432,16 +432,16 @@ msgstr " #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%sפǤޤ: %s\n" @@ -456,22 +456,22 @@ msgstr "" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "Υågpg-agent̵Ǥ\n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "PINμ顼: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "%sפǿѥ쥳ɤθ顼: %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "%sפ̩񤭹ߤޤ\n" @@ -491,7 +491,7 @@ msgstr "fstat(%d) msgid "can't use `%s' as home directory\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "%sפɽФ顼: %s\n" @@ -516,12 +516,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "̩ι˼Ԥޤ: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: å: %s\n" @@ -709,43 +709,43 @@ msgstr " msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "ѥե졼κ顼: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "̾줿ǡ%sפޤ\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "%sפɽФ顼: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "Ըμ顼: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "%sפɽФ顼: %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "%sפɽФ顼: %s\n" @@ -788,17 +788,17 @@ msgstr " msgid "problem with the agent\n" msgstr "Ȥ˾㳲: Ȥ0x%lxֵ\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "פѶػߤˤǤޤ: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ٹ: ĥ%sפΰǤʤͭ\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ٹ: ĥ%sפΰǤʤ\n" @@ -970,24 +970,24 @@ msgstr " msgid "Included certificates" msgstr "ʾǤ" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "̤ΤΥСǤ" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "%sפΥإפϤޤ" @@ -1105,7 +1105,7 @@ msgstr " msgid "not human readable" msgstr "ͤˤɤޤ" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGPɤ̵Ǥ: %s\n" @@ -1115,153 +1115,153 @@ msgstr "OpenPGP msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGPno. %s򸡽\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "ϥХå⡼ɤǤϤǤޤ\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[̤]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "̵" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "̤" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "顼 Τ٤ASCIIĤƤޤ\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "顼: <ʸϻȤޤ\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "顼: Ťζ϶ػߤǤ\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "ɽͭԤ (surname): " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "ɽͭԤ̾ (given name): " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "顼: Ĥʤ̾Ĺޤ (%dʸ)\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "õURL: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "顼: URLĹޤ (%dʸ)\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "%sפɽФ顼: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "󡦥ǡ (̾): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "顼: 󡦥ǡĹޤ (%dʸ)\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, fuzzy, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "顼: URLĹޤ (%dʸ)\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr ": " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "顼: ʸĹ̵Ǥ\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "顼: ʸ̵ʸޤ\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr " ((M)ˡ(F)): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "顼: ̵ʱ\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CAλ: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "顼: ̵ʷλ档\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "Ǥޤ: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "OpenPGPɤǤޤ" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "Ըμ顼: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "¸θ򴹤ޤ? (y/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Ź渰򥫡ɳ˥Хååפޤ? (Y/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "¸θ򴹤ޤ? (y/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1272,120 +1272,120 @@ msgstr "" " PIN = `%s' Admin PIN = `%s'\n" "ΥޥɤȤäѹ٤Ǥ --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "븰η򤷤Ƥ:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) ̾\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Ź沽\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) ǧڸ\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "̵Ǥ\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "ݴɾ򤷤Ƥ:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "̤Τθݸ르ꥺǤ\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "̩ʬ̵Ǥ\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "̩Ϥ⤦ɤݴɤƤޤ\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "Υ˥塼λ" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "ޥɤɽ" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "Υإפɽ" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "ͭǡɽ" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "ɽͭԤ̾ѹ" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "õURLѹ" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "URLǻꤵ줿ΰФ" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "̾ѹ" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "ѹ" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "ɽͭԤ̤ѹ" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "CAѹ" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "̾PINե饰ȿž" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "PIN֥åβѹΥ˥塼" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "ޥ> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "ѥޥ\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "ޥɤĤƤޤ\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "ޥɤ϶ػߤƤޤ\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "̵ʥޥ (helpɤ򻲾)\n" @@ -1393,7 +1393,7 @@ msgstr "̵ msgid "--output doesn't work for this command\n" msgstr "Υޥɤ--outputϵǽޤ\n" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "%sפޤ\n" @@ -2077,403 +2077,403 @@ msgstr " msgid "show expiration dates during signature listings" msgstr "̩ؤб̾ޤ\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr ": Ρäץ󡦥ե%sפϡ̵뤵ޤ\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr ": %sϻȤޤ!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "СURLǽ\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ̵ʸСץǤ\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "̵ʸСץǤ\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ̵ɹߥץǤ\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "̵ɹߥץǤ\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ̵ʽФץǤ\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "̵ʽФץǤ\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ̵ʰץǤ\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "̵ʰץǤ\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "ꤵ줿СURL̵Ǥ\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ̵ʸڥץǤ\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "̵ʸڥץǤ\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path%sǽ\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ̵ʸڥץǤ\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "ٹ: ץΥե뤬Ǥ뤳Ȥޤ!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ٹ: %s%sͥ\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s%sȤȤ˻ȤȤϤǤޤ!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s%sȤȤ˻ȤäƤ̵̣Ǥ!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%sפ̩֤񤭹ߤޤ\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤʬΥ̾ꥢ̾Ǥޤ\n" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤϽ̾ȰŹ沽ƱˤǤޤ\n" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2ꤷ顢(ѥפǤʤ) եꤻͤФʤޤ\n" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2⡼ɤΥåŹ沽ǤϡIDEAŹˡɬפǤ\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "򤵤줿Ź楢르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "򤵤줿󥢥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "򤵤줿̥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "򤵤줿󥢥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-neededͤɬפǤ\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed1礭ͤɬפǤ\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth1255ϰϤǤʤФʤޤ\n" -#: g10/gpg.c:3095 +#: g10/gpg.c:3114 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "̵default-cert-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3097 +#: g10/gpg.c:3116 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "̵min-cert-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr ": ñS2K⡼(0)λѤˤ϶ȿФޤ\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "̵S2K⡼ɡ013ǤʤФʤޤ\n" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "̵ʴ\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "̵ʸĿѰŹˡ\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "̵ʸĿ\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "̵ʸĿѰ̤\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s%sǵǽޤ\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "Ź楢르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "󥢥르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "̥르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "ѥǡ١ν˼Ԥޤ: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "ٹ: ŹȤ鷺ˡ (-r) ꤷƤޤ\n" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [ե̾]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [ե̾]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "%sפоΰŹ˼Ԥޤ: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [ե̾]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [ե̾]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--symmetric --encrypt--s2k-mode 0ǻȤȤϤǤޤ\n" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "--symmetric --encrypt%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [ե̾]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ե̾]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [ե̾]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--symmetric --sign --encrypt--s2k-mode 0ǻȤȤϤǤޤ\n" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "--symmetric --sign --encrypt%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ե̾]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [ե̾]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [ե̾]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key 桼id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key 桼id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key 桼id [ޥ]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "Сؤ˼Ԥޤ: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Сμ˼Ԥޤ: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "νФ˼Ԥޤ: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "Сθ˼Ԥޤ: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Сβ˼Ԥޤ: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "̵ʥϥå塦르ꥺ%sפǤ\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[ե̾]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "ϤޤåǤäƤ ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "줿ݥꥷURL̵Ǥ\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "줿̾ݥꥷURL̵Ǥ\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "ꤵ줿СURL̵Ǥ\n" @@ -2958,22 +2958,22 @@ msgstr " msgid "NOTE: secondary key is online and stored on card\n" msgstr "̩Ϥ⤦ɤݴɤƤޤ\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "ء%sפκ顼: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "ء%sפǤޤ\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "%sפκ顼: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "إåκƹۤ˼Ԥޤ: %s\n" @@ -5921,12 +5921,12 @@ msgstr " msgid "trustdb: sync failed: %s\n" msgstr "ѥǡ١: Ʊ˼Ԥޤ: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "ѥǡ١ 쥳%lu: ˼Ԥޤ: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "ѥǡ١ 쥳%lu: ߤ˼Ԥޤ (n=%d): %s\n" @@ -5940,112 +5940,112 @@ msgstr " msgid "can't access `%s': %s\n" msgstr "%sפ˥Ǥޤ: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: ǥ쥯ȥ꡼ޤ!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "%sפΥåǤޤ\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "%sפåǤޤ\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: С󡦥쥳ɤκ˼Ԥޤ: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: ̵ʿѥǡ١\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: ѥǡ١Ǥޤ\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr ": ѥǡ١ǽǤ\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: ̵ʿѥǡ١\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: ϥåɽκ˼Ԥޤ: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: С󡦥쥳ɤι顼: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: С󡦥쥳ɤɽФ顼: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: С󡦥쥳ɤνߥ顼: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "ѥǡ١: ˼Ԥޤ: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "ѥǡ١: ɽФ˼Ԥޤ (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: ѥǡ١եǤϤޤ\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: 쥳ֹ%lu֤ΥС󡦥쥳\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: ̵ʥե롦С%d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: 쥳ɤɽФ顼: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: ǥ쥯ȥ꡼쥳ɤνߥ顼: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: 쥳ɤν˼Ԥޤ: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: 쥳ɤɲä˼Ԥޤ: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "ѥǡ١Ƥޤgpg --fix-trustdbɤ¹ԤƤ\n" @@ -6594,16 +6594,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6613,6 +6613,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "̵64ʸ%02XȤФޤ\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6637,12 +6642,12 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 #, fuzzy msgid "chain" msgstr "admin" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6652,227 +6657,241 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "gpg-agentץȥ롦С%dϥݡȤƤޤ\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "%sפޤ: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "̩νФ϶ػߤǤ\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "֤μ顼: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "ɽФ˼Ԥޤ: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "ݴɤ˼Ԥޤ: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr ": ϼѤߤǤ" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "ʾǤ" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "ʲ˸ޤ: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "줿̾θ˼Ԥޤ: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "̩νФ϶ػߤǤ\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "θλǤ!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "θλǤ!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "θλǤ!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "θλǤ!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr "ޤǤ˺줿̾: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "ʾǤ" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " ɤ =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "CAλ: " -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "줿̾θ˼Ԥޤ: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "̾򸡾" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "%sפνʣ\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "ʾǤ" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7748,7 +7767,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/nb.po b/po/nb.po index 574a349a2..a943f5ed2 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2006-06-13 20:31+0200\n" "Last-Translator: Trond Endrestl \n" "Language-Team: Norwegian Bokml \n" @@ -18,18 +18,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "klarte ikke lagre fingeravtrykket: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -37,7 +37,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "gyldighet: %s" @@ -48,45 +48,45 @@ msgstr "gyldighet: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "for lang linje" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "for lang linje" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Ugyldig tegn i navn\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "ugyldig MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "ugyldig passfrase" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "ugyldig passfrase" @@ -98,18 +98,18 @@ msgstr "" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "kan ikke opprette %s: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -408,18 +408,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MERK: ingen standard valgfil %s\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "valgfil %s: %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "leser valg fra %s\n" @@ -432,16 +432,16 @@ msgstr "" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kan ikke opprette katalogen %s: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke opprette %s: %s\n" @@ -455,22 +455,22 @@ msgstr "" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "feil ved henting av ny PIN: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, 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:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "oppdatering mislyktes: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmelig nkkel til %s\n" @@ -490,7 +490,7 @@ msgstr "fstat(%d) mislyktes in %s: %s\n" msgid "can't use `%s' as home directory\n" msgstr "kan ikke opprette katalogen %s: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "feil ved lesing av %s: %s\n" @@ -515,12 +515,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "oppdatering av hemmelig mislyktes: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: hoppet over: %s\n" @@ -704,43 +704,43 @@ msgstr "endre passfrasen" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "feil ved opprettelse av passfrase: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "kan ikke pne nkkelknippet" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "feil ved lesing av %s: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "feil ved henting av nvrende nkkelinfo: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "feil ved lesing av %s: %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "feil ved lesing av %s: %s\n" @@ -780,17 +780,17 @@ msgstr "" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ADVARSEL: utrygt eierskap p utvidelsen %s\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ADVARSEL: utrygge rettigheter p utvidelsen %s\n" @@ -960,24 +960,24 @@ msgstr "ugyldig sertifikat" msgid "Included certificates" msgstr "ugyldig sertifikat" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "ukjent versjon" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, c-format msgid "No help available for `%s'." msgstr "" @@ -1093,7 +1093,7 @@ msgstr "ingen gyldig OpenPGP-data funnet.\n" msgid "not human readable" msgstr "" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort er ikke tilgjengelig: %s\n" @@ -1103,153 +1103,153 @@ msgstr "OpenPGP-kort er ikke tilgjengelig: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP-kortnummer %s oppdaget\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "kan ikke gjre dette i batchmodus\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Ditt valg? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[ikke satt]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "mann" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "dame" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "uspesifisert" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "ikke tvunget" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "tvunget" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Feil: Bare ren ASCII er forelpig tillatt.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Feil: Tegnet < kan ikke brukes.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Feil: Doble mellomrom er ikke tillatt.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Kortholders etternavn: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Kortholders fornavn: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Feil: Det kombinerte navnet er for langt (grensa gr ved %d tegn).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL for hente offentlig nkkel: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Feil: URL er for lang (grensa gr ved %d tegn).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "feil ved lesing av %s: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Logindata (kontonavn): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Feil: Logindata er for langt (grensa gr ved %d tegn).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Privat DO-data: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Feil: Privat DO for lang (grensa gr ved %d tegn).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Sprkpreferanser:" -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Feil: ugyldig lengde p preferansestrengen.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Feil: ugyldig tegn i preferansestrengen.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Kjnn ((M)ale, (F)emale eller mellomrom): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Feil: ugyldig respons.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CA-fingeravtrykk: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Feil: ugyldig formattert fingeravtrykk.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "nkkeloperasjonen er umulig: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "ikke et OpenPGP-kort" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "feil ved henting av nvrende nkkelinfo: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Erstatte eksisterende nkkel? (j/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Lage sikkerhetskopi av krypteringsnkler utenfor kortet? (J/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Erstatte eksisterende nkler? (j/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1260,120 +1260,120 @@ msgstr "" " PIN = %s Admin PIN = %s\n" "Du br endre dem med kommandoen --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Vennligst velg hvilken type nkkel du vil generere:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Signaturnkkel\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsnkkel\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Autentiseringsnkkel\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Ugyldig valg.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Vennligst velg hvor nkkelen skal lagres:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "ukjent nkkelbeskyttelsesalgoritme\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "hemmelige deler av nkkelen er ikke tilgjengelig.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "hemmelig nkkel er allerede lagret p et kort\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "avslutte denne menyen" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "vise admin-kommandoer" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "vise denne hjelpen" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "vis alle tilgjengelige data" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "endre kortholders navn" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "endre URL for hente nkkel" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "hente nkkelen angitt i URL som er lagret i kortet" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "endre loginnavnet" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "endre sprkpreferansene" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "endre kortholders kjnn" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "vise et CA-fingeravtrykk" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "veksle tving-signatur-PIN-flagget" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "generere nye nkler" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "meny for endre eller fjerne blokkering av PIN" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "bekrefte PIN og vise alle data" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Kommando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "Admin-reservert kommando\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Admin-kommandoer er tillatt\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Admin-kommandoer er ikke tillatt\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Ugyldig kommando (prv help)\n" @@ -1381,7 +1381,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke pne %s\n" @@ -2072,401 +2072,401 @@ msgstr "vise navnet til n msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MERK: den gamle valgfila %s ble ignorert\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, 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:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke en gyldig signaturutgelse\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldig tegnsett\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "kunne ikke parse nkkelserverens URL\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ugyldige valg for nkkelserver\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "ugyldige valg for nkkelserver\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ugyldige importvalg\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "ugyldige importvalg\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ugyldige eksportvalg\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "ugyldige eksportvalg\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ugyldige listevalg\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "ugyldige listevalg\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 msgid "show user ID validity during signature verification" msgstr "" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 msgid "show only the primary user ID in signature verification" msgstr "" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunne ikke sette exec-path til %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ugyldig auto-key-locate-liste\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "ADVARSEL: programmet kan opprette en corefil!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ADVARSEL: %s overstyrere %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s er ikke tillatt sammen med %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er ikke fornuftig med %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "valgt krypteringsalgoritme er ugyldig\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "valg digestalgoritme er ugyldig\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "valgt kompresjonsalgoritme er ugyldig\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "valgt sertifikasjondigestalgoritme er ugyldig\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed m vre strre enn 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-neede m vre strre enn 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MERK: enkel S2K-modus (0) er sterkt frardet\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "ugyldig standard preferanser\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "ugyldig personlig cipherpreferanser\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "ugyldig personlig digestpreferanser\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "ugyldig personlig kompresjonspreferanser\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s virker ikke enn med %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "klarte ikke initialisere tillitsdatabasen: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ADVARSEL: mottakere (-r) angitt uten bruke offentlig nkkelkryptering\n" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [filnavn]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av %s mislyktes: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnavn]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [filnavn]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnavn]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnavn]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key brukerid" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key brukerid" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key brukerid [kommandoer]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "sending til nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "mottak fra nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "nkkeleksport mislyktes: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "sk p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hashalgoritme %s\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Sett i gang og tast inn meldingen din ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "den angitte URLen for sertifikasjonspolicyen er ugyldig\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "den angitte URLen for signaturpolicy er ugyldig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angitte URLen for den foretrukkede nkkelserveren er ugyldig\n" @@ -2944,22 +2944,22 @@ msgstr "" msgid "NOTE: secondary key is online and stored on card\n" msgstr "" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "feil ved opprettelse av nkkelknippet %s: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "nkkelknippet %s ble opprettet\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "nkkelblokkressurs %s: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "" @@ -5871,12 +5871,12 @@ msgstr "lesefeil ved msgid "trustdb: sync failed: %s\n" msgstr "" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -5890,112 +5890,112 @@ msgstr "" msgid "can't access `%s': %s\n" msgstr "kan ikke aksere %s: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "kan ikke opprette ls for %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "kan ikke lse %s\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" @@ -6531,16 +6531,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6550,6 +6550,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "hoppet over ugyldig radix64-tegn %02x\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6573,11 +6578,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6586,226 +6591,240 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "Kan ikke pne %s: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "eksportering av hemmelige nkler er ikke tillatt\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "feil ved opprettelse av passfrase: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "lesing av offentlig nkkel mislyktes: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "klarte ikke lagre nkkelen: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "ugyldig sertifikat" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Nkkel tilgjengelig ved: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "sleting av nkkelblokk mislyktes: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "eksportering av hemmelige nkler er ikke tillatt\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Denne nkkelen er utgtt!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Denne nkkelen er utgtt!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Denne nkkelen er utgtt!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Denne nkkelen er utgtt!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " oppryddete signaturer: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "preferansen %s er duplisert\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "ugyldig sertifikat" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " Serienummer for kort =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "CA-fingeravtrykk: " -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "generere et opphevingssertifikat" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "omdping fra %s til %s mislyktes: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "bekrefte en signatur" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "preferansen %s er duplisert\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "nkkel %s: ugyldig opphevingssertifikat: %s - avvist\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "ugyldig sertifikat" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7680,7 +7699,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 081fb0267..80ac6b71b 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2007-11-26 19:01+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -19,18 +19,18 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "nie udao si uzyska blokady pinentry: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "Prosz wprowadzi swj PIN, eby odblokowa klucz tajny dla tej sesji" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -39,7 +39,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "poprawno: %s" @@ -50,40 +50,40 @@ msgstr "poprawno #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "SETERROR %s (prba %d z %d)" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 msgid "PIN too long" msgstr "PIN zbyt dugi" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 msgid "Passphrase too long" msgstr "Haso zbyt dugie" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 msgid "Invalid characters in PIN" msgstr "Niewaciwy znak w PIN-ie" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "PIN zbyt krtki" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 msgid "Bad PIN" msgstr "Niepoprawny PIN" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 msgid "Bad Passphrase" msgstr "Niepoprawne haso" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 msgid "Passphrase" msgstr "Haso" @@ -94,18 +94,18 @@ msgstr "klucze ssh wi #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "nie mona utworzy ,,%s'': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -409,18 +409,18 @@ msgstr "podano b 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:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "UWAGA: brak domylnego pliku opcji ,,%s''\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "plik opcji ,,%s'': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "odczyt opcji z ,,%s''\n" @@ -433,16 +433,16 @@ msgstr "b #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nie mona utworzy katalogu ,,%s'': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "nazwa gniazda zbyt duga\n" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, c-format msgid "can't create socket: %s\n" msgstr "nie mona utworzy gniazda: %s\n" @@ -456,22 +456,22 @@ msgstr "nazwa gniazda zbyt d 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "bd podczas odczytu nowego PIN-u: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "bd podczas przypisywania gniazda do ,,%s'': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, c-format msgid "listen() failed: %s\n" msgstr "listen() nie powiodo si: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, c-format msgid "listening on socket `%s'\n" msgstr "nasuchiwanie na gniedzie ,,%s''\n" @@ -491,7 +491,7 @@ msgstr "stat() nie powiod msgid "can't use `%s' as home directory\n" msgstr "nie mona uy ,,%s'' jako katalogu domowego\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "bd odczytu z %s: %s\n" @@ -516,12 +516,12 @@ msgstr "obs msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "obsuga ssh 0x%lx dla fd %d zakoczona\n" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select nie powiodo si: %s - czekanie 1s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, c-format msgid "%s %s stopped\n" msgstr "%s %s zatrzymany\n" @@ -712,43 +712,43 @@ msgstr "Zmiana has msgid "I'll change it later" msgstr "Zmieni je pniej" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, c-format msgid "error creating a pipe: %s\n" msgstr "bd tworzenia potoku: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "nie mona wykona fdopen do odczytu na potoku: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, c-format msgid "error forking process: %s\n" msgstr "bd podczas tworzenia procesu: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "oczekiwanie na zakoczenie procesu %d nie powiodo si: %s\n" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, c-format msgid "error getting exit code of process %d: %s\n" msgstr "bd odczytu kodu zakoczenia procesu %d: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, c-format msgid "error running `%s': exit status %d\n" msgstr "bd uruchamiania ,,%s'': kod wyjcia %d\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "bd uruchamiania ,,%s'': prawdopodobnie nie zainstalowany\n" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, c-format msgid "error running `%s': terminated\n" msgstr "bd uruchamiania ,,%s'': zakoczono\n" @@ -787,17 +787,17 @@ msgstr "anulowano przez u msgid "problem with the agent\n" msgstr "problem z agentem\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nie mona wyczy zrzutw pamici: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Ostrzeenie: niebezpieczne prawa wasnoci do %s ,,%s''\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Ostrzeenie: niebezpieczne prawa dostpu do %s ,,%s''\n" @@ -971,24 +971,24 @@ msgstr "nie znaleziono CRL dla certyfikatu" msgid "Included certificates" msgstr "eksport certyfikatw" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "nieznana opcja ,,%s''\n" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Brak pomocy o ,,%s''" @@ -1106,7 +1106,7 @@ msgstr "OSTRZE msgid "not human readable" msgstr "nieczytelne dla czowieka" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Karta OpenPGP niedostpna: %s\n" @@ -1116,153 +1116,153 @@ msgstr "Karta OpenPGP niedost msgid "OpenPGP card no. %s detected\n" msgstr "Wykryto kart OpenPGP nr %s\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "nie dziaa w trybie wsadowym\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Twj wybr? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[nie ustawiono]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "mczyzna" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "kobieta" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "nie podano" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "nie wymuszono" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "wymuszono" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Bd: aktualnie dopuszczalne jest tylko czyste ASCII.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Bd: znak ,,<'' nie moe by uyty.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Bd: podwjne spacje nie s dopuszczalne.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Nazwisko posiadacza karty: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Imi posiadacza karty: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Bd: pene personalia zbyt dugie (limit to %d znakw).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL do odczytania klucza publicznego: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Bd: URL zbyt dugi (limit to %d znakw).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "bd odczytu ,,%s'': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Dane logowania (nazwa konta): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Bd: dane logowania zbyt dugie (limit to %d znakw).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Prywatne dane DO: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Bd: prywatne DO zbyt dugie (limit to %d znakw).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Preferowane jzyki: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Bd: niewaciwa dugo tekstu preferencji.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Bd: niewaciwe znaki w tekcie preferencji.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Pe (M - mczyzna, F - kobieta lub spacja): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Bd: niewaciwa odpowied.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "Odcisk CA:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Bd: niewaciwie sformatowany odcisk.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "operacja na kluczu niewykonalna: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "to nie jest karta OpenPGP" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "bd podczas odczytu aktualnych informacji o kluczu: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Zastpi istniejcy klucz? (t/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Stworzy poza kart kopi zapasow klucza szyfrujcego? (T/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Zastpi istniejce klucze? (t/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1273,120 +1273,120 @@ msgstr "" " PIN = ,,%s'' PIN administratora = ,,%s''\n" "Naley je zmieni przy uyciu polecenia --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Prosz wybra rodzaj klucza do wygenerowania:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Klucz do podpisw\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Klucz do szyfrowania\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Klucz do uwierzytelniania\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Niewaciwy wybr.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Prosz wybra gdzie zapisa klucz:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "nieznany algorytm ochrony klucza\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "czci tajne klucza s niedostpne\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "klucz prywatny jest ju zapisany na karcie\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "wyjcie z tego menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "pokazanie polece administratora" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "ten tekst pomocy" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "wypisanie wszystkich dostpnych danych" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "zmiana nazwy posiadacza karty" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "zmiana URL-a do odczytu klucza" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "pobranie klucza okrelonego w URL-u karty" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "zmiana nazwy logowania" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "zmiana preferowanych jzykw" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "zmiana pci posiadacza karty" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "zmiana odcisku CA" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "zmiana flagi wymuszenia PIN-u do podpisu" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "wygenerowanie nowych kluczy" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "menu do zmiany lub odblokowania PIN-u" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "sprawdzenie PIN-u i wypisanie wszystkich danych" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Polecenie> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "Polecenie tylko dla administratora\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Polecenia dla administratora s dozwolone\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Polecenia dla administratora nie s dozwolone\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Niepoprawne polecenie (sprbuj ,,help'')\n" @@ -1394,7 +1394,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nie mona otworzy ,,%s''\n" @@ -2093,407 +2093,407 @@ msgstr "pokazywanie nazwy zbioru kluczy na listach kluczy" msgid "show expiration dates during signature listings" msgstr "pokazywanie dat wyganicia przy wypisywaniu podpisw" -#: g10/gpg.c:1839 +#: g10/gpg.c:1805 +#, c-format +msgid "NOTE: old default options file `%s' ignored\n" +msgstr "UWAGA: stary domylny plik opcji ,,%s'' zosta zignorowany\n" + +#: g10/gpg.c:1896 #, 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:1997 -#, c-format -msgid "NOTE: old default options file `%s' ignored\n" -msgstr "UWAGA: stary domylny plik opcji ,,%s'' zosta zignorowany\n" - -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "UWAGA: %s nie jest do normalnego uytku!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr ",,%s'' nie jest poprawnym czasem wyganicia podpisu\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr ",,%s'' nie jest poprawn nazw zestawu znakw\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "niezrozumiay URL serwera kluczy\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: niepoprawne opcje wypisywania\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "niepoprawne opcje wypisywania\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "wywietlanie ID zdj przy sprawdzaniu podpisw" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "pokazywanie URL-i polityk przy sprawdzaniu podpisw" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "pokazywanie wszystkich adnotacji przy sprawdzaniu podpisw" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "pokazywanie standardowych adnotacji IETF przy sprawdzaniu podpisw" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "pokazywanie adnotacji uytkownika przy sprawdzaniu podpisw" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 msgid "show preferred keyserver URLs during signature verification" msgstr "" "pokazywanie URL-i preferowanych serwerw kluczy przy sprawdzaniu podpisw" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 msgid "show user ID validity during signature verification" msgstr "pokazywanie poprawnoci ID uytkownika przy sprawdzaniu podpisw" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" "pokazywanie uniewanionych i wygasych ID uytkownika przy sprawdzaniu " "podpisw" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 msgid "show only the primary user ID in signature verification" msgstr "pokazywanie tylko gwnego ID uytkownika przy sprawdzaniu podpisu" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "sprawdzanie podpisw z danymi PKA" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "zwikszenie zaufania podpisw z poprawnymi danymi PKA" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nie mona ustawi cieki programw wykonywalnych na %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "Niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "OSTRZEENIE: program moe stworzy plik zrzutu pamici!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "OSTRZEENIE: %s powoduje obejcie %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie wolno uywa %s z %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nie ma sensu w poczeniu z %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "wybrany algorytm szyfrujcy jest niepoprawny\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "wybrany algorytm skrtw wiadomoci jest niepoprawny\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "wybrany algorytm kompresji jest niepoprawny\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "wybrany algorytm skrtw powiadcze jest niepoprawny\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "warto completes-needed musi by wiksza od 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "warto marginals-needed musi by wiksza od 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "UWAGA: prosty tryb S2K (0) jest stanowczo odradzany\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "niewaciwe domylne ustawienia\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "niewaciwe ustawienia szyfrw\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "niewaciwe ustawienia skrtw\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "niewaciwe ustawienia algorytmw kompresji\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s jeszcze nie dziaa z %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicjowanie Bazy Zaufania nie powiodo si: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [plik]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [plik]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "szyfrowanie symetryczne ,,%s'' nie powiodo si: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [plik]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [plik]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [plik]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [plik]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [plik]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [plik]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [plik]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [plik]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key nazwa uytkownika" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key nazwa uytkownika" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key nazwa uytkownika [polecenia]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "wysyka do serwera kluczy nie powioda si: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "odbir z serwera kluczy nie powid si: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "eksport kluczy nie powid si: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "szukanie w serwerze kluczy nie powiodo si: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "odwieenie kluczy z serwera nie powiodo si: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "zdjcie opakowania ASCII nie powiodo si: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "opakowywanie ASCII nie powiodo si: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "niewaciwy algorytm skrtu ,,%s''\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nazwa pliku]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Wpisz tutaj swoj wiadomo ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "podany URL regulaminu powiadczania jest niepoprawny\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "podany URL regulaminu podpisw jest niepoprawny\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "podany preferowany URL serwera kluczy jest niepoprawny\n" @@ -2980,22 +2980,22 @@ msgstr "UWAGA: klucz g msgid "NOTE: secondary key is online and stored on card\n" msgstr "UWAGA: klucz dodatkowy jest aktywny i zapisany na karcie\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "bd tworzenia zbioru kluczy `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "zbir kluczy ,,%s'' zosta utworzony\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "zasb bloku klucza `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "nie powioda si odbudowa bufora bazy: %s\n" @@ -6003,12 +6003,12 @@ msgstr "b msgid "trustdb: sync failed: %s\n" msgstr "baza zaufania: synchronizacja nie powioda si %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "baza zaufania, wpis %lu: funkcja lseek() nie powioda si: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "baza zaufania, wpis %lu: zapis nie powid si (n=%d): %s\n" @@ -6022,112 +6022,112 @@ msgstr "zbyt du msgid "can't access `%s': %s\n" msgstr "nie mona dosta si do ,,%s'': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: katalog nie istnieje!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "nie mona utworzy blokady dla ,,%s''\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "nie mona zablokowa ,,%s''\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: stworzenie zapisu o wersji nie powiodo si: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: stworzony niepoprawny plik bazy zaufania\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: baza zaufania utworzona\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "UWAGA: nie mona zapisywa bazy zaufania\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: niepoprawny plik bazy zaufania\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: tworzenie tablicy skrtw nie powiodo si: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: bd przy uaktualnianiu numeru wersji: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: bd odczytu numeru wersji: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: bd zapisu numeru wersji: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "baza zaufania: funkcja lseek() zawioda: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "baza zaufania: funkcja read() (n=%d) zawioda: %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: to nie jest plik bazy zaufania\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: wpis wersji z numerem %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: niewaciwa wersja pliku %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: bd odczytu pustego wpisu: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: bd zapisu wpisu katalogowego: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: zerowanie rekordu nie powiodo si: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: dopisanie rekordu nie powiodo si: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "Baza zaufania jest uszkodzona; prosz uruchomi ,,gpg --fix-trustdb''.\n" @@ -6666,16 +6666,16 @@ msgstr "" "Skadnia: scdaemon [opcje] [polecenie [argumenty]]\n" "Demon kart procesorowych dla GnuPG\n" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 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:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "obsuga fd %d uruchomiona\n" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "obsuga fd %d zakoczona\n" @@ -6685,6 +6685,11 @@ msgstr "obs msgid "invalid radix64 character %02x skipped\n" msgstr "niewaciwy znak formatu radix64 %02x zosta pominity\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6708,11 +6713,11 @@ msgstr "nie mo msgid "validation model requested by certificate: %s" msgstr "model poprawnoci dany przez certyfikat: %s" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "acuchowy" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "powokowy" @@ -6721,208 +6726,223 @@ msgstr "pow msgid "critical certificate extension %s is not supported" msgstr "krytyczne rozszerzenie certyfikatu %s nie jest obsugiwane" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "wystawca certyfikatu nie jest oznaczony jako CA" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "polityka oznaczona jako krytyczna bez skonfigurowanych polityk" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, c-format msgid "failed to open `%s': %s\n" msgstr "nie udao si otworzy ,,%s'': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "uwaga: niekrytyczna polityka certyfikatu niedozwolona" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 msgid "certificate policy not allowed" msgstr "polityka certyfikatu niedozwolona" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "poszukiwanie wystawcy na zewntrz\n" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "liczba pasujcych wystawcw: %d\n" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +#, fuzzy +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "poszukiwanie wystawcy na zewntrz\n" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "bd importu certyfikatu: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "zaciemnienie klucza nie powiodo si: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 msgid "failed to allocated keyDB handle\n" msgstr "nie udao si przydzieli uchwytu keyDB\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "certyfikat zosta uniewaniony" -#: sm/certchain.c:752 +#: sm/certchain.c:836 msgid "no CRL found for certificate" msgstr "nie znaleziono CRL dla certyfikatu" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "status certyfikatu jest nieznany" -#: sm/certchain.c:762 +#: sm/certchain.c:846 msgid "the available CRL is too old" msgstr "dostpny CRL jest zbyt stary" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "prosz upewni si, e ,,dirmngr'' jest poprawnie zainstalowany\n" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, c-format msgid "checking the CRL failed: %s" msgstr "sprawdzenie CRL nie powiodo si: %s" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "certyfikat o niewanej wanoci: %s" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "certyfikat jeszcze nie jest wany" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 msgid "root certificate not yet valid" msgstr "certyfikat gwny jeszcze nie jest wany" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "certyfikat poredni jeszcze nie jest wany" -#: sm/certchain.c:829 +#: sm/certchain.c:913 msgid "certificate has expired" msgstr "certyfikat wygas" -#: sm/certchain.c:830 +#: sm/certchain.c:914 msgid "root certificate has expired" msgstr "certyfikat gwny wygas" -#: sm/certchain.c:831 +#: sm/certchain.c:915 msgid "intermediate certificate has expired" msgstr "certyfikat poredni wygas" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "brak wymaganych atrybutw certyfikatu: %s%s%s" -#: sm/certchain.c:882 +#: sm/certchain.c:966 msgid "certificate with invalid validity" msgstr "certyfikat o niewanej wanoci" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "podpis nie utworzony w czasie ycia certyfikatu" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "certyfikat nie utworzony w czasie ycia wystawcy" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "poredni certyfikat nie utworzony w czasie ycia wystawcy" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 msgid " ( signature created at " msgstr " ( podpis utworzony " -#: sm/certchain.c:927 +#: sm/certchain.c:1011 msgid " (certificate created at " msgstr " (certyfikat utworzony " -#: sm/certchain.c:930 +#: sm/certchain.c:1014 msgid " (certificate valid from " msgstr " (certyfikat wany od " -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr " ( wystawca wany od " -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, c-format msgid "fingerprint=%s\n" msgstr "odcisk=%s\n" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "gwny certyfikat nie zosta oznaczony jako zaufany\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interaktywne oznaczanie zaufania nie wczone w gpg-agencie\n" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktywne oznaczanie zaufania wyczone dla tej sesji\n" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "UWAGA: czas utworzenia podpisu nie jest znany - przyjto czas biecy" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 msgid "no issuer found in certificate" msgstr "nie znaleziono wystawcy w certyfikacie" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "wasnorcznie podpisany certyfikat ma ZY podpis" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "gwny certyfikat nie jest oznaczony jako zaufany" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, c-format msgid "checking the trust list failed: %s\n" msgstr "sprawdzenie listy zaufania nie powiodo si: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "acuch certyfikatw zbyt dugi\n" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "nie znaleziono wystawcy certyfikatu" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 msgid "certificate has a BAD signature" msgstr "certyfikat ma ZY podpis" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "znaleziono inny by moe pasujcy certyfikat CA - ponawianie prby" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "acuch certyfikatw duszy ni zezwala CA (%d)" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 msgid "certificate is good\n" msgstr "certyfikat jest dobry\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 msgid "intermediate certificate is good\n" msgstr "certyfikat poredni jest dobry\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 msgid "root certificate is good\n" msgstr "certyfikat gwny jest dobry\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "przeczanie do modelu acuchowego" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "uyty model poprawnoci: %s" @@ -7776,7 +7796,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "Konfiguracja dla OCSP" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "Uwaga, okrelenia grup s ignorowane\n" diff --git a/po/pt.po b/po/pt.po index c0dc82b5f..690efe4b3 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2002-09-13 18:26+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -17,18 +17,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "falha ao inicializar a base de dados de confiana: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -37,7 +37,7 @@ msgstr "Por favor digite a frase secreta \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -47,45 +47,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "frase secreta demasiado longa\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "frase secreta demasiado longa\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Caracter invlido no nome\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI incorreto" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "frase secreta incorrecta" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "frase secreta incorrecta" @@ -97,18 +97,18 @@ msgstr "algoritmo de protec #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "impossvel criar `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -408,18 +408,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: ficheiro de opes por omisso `%s' inexistente\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opes `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "a ler opes de `%s'\n" @@ -432,16 +432,16 @@ msgstr "erro ao criar `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: impossvel criar directoria: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossvel criar %s: %s\n" @@ -456,22 +456,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro na criao da frase secreta: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar para `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizao falhou: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "a escrever chave privada para `%s'\n" @@ -491,7 +491,7 @@ msgstr "base de dados de confian msgid "can't use `%s' as home directory\n" msgstr "%s: impossvel criar directoria: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro na leitura de `%s': %s\n" @@ -516,12 +516,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignorado: %s\n" @@ -709,43 +709,43 @@ msgstr "muda a frase secreta" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "erro na criao da frase secreta: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "impossvel abrir %s: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "erro ao escrever no porta-chaves secreto `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "erro na leitura de `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "erro na leitura de `%s': %s\n" @@ -788,17 +788,17 @@ msgstr "cancelado pelo utilizador\n" msgid "problem with the agent\n" msgstr "problema com o agente: o agente returnou 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossvel desactivar core dumps: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" @@ -971,24 +971,24 @@ msgstr "certificado incorrecto" msgid "Included certificates" msgstr "certificado incorrecto" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "verso desconhecida" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Nenhuma ajuda disponvel para `%s'" @@ -1109,7 +1109,7 @@ msgstr "AVISO: dados de nota msgid "not human readable" msgstr "no legvel por humanos" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "chave secreta no disponvel" @@ -1119,166 +1119,166 @@ msgstr "chave secreta n msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "impossvel fazer isso em modo no-interativo\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Opo? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Nenhum motivo especificado" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "no processado" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "a escrever chave pblica para `%s'\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "preferncias actualizadas" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter invlido na cadeia de caractres da preferncia\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter invlido na cadeia de caractres da preferncia\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "%s: verso de ficheiro invlida %d\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "mostra impresso digital" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: verso de ficheiro invlida %d\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "nenhum dado OpenPGP vlido encontrado.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro ao escrever no porta-chaves secreto `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1286,136 +1286,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Opo invlida.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "motivo da revocao: " -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de compresso desconhecido" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Componentes secretas da chave primria no disponveis.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ignorado: a chave secreta j est presente\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "sair deste menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "comandos em conflito\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "mostra esta ajuda" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Nenhuma ajuda disponvel" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "muda a data de validade" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "muda os valores de confiana" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra impresso digital" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "gerar um novo par de chaves" +msgid "change a CA fingerprint" +msgstr "mostra impresso digital" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "gerar um novo par de chaves" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Comando invlido (tente \"help\")\n" @@ -1423,7 +1423,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -2119,415 +2119,415 @@ msgstr "mostrar em que porta-chave a chave est msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no para uso normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no consegui processar a URI do servidor de chaves\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, 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:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um ficheiro core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sobrepe %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado invlido\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" de certificao selecionado invlido\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 #, 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:3097 +#: g10/gpg.c:3116 #, 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) no recomendvel\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "preferncias por omisso invlidas\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "preferncias pessoais de cifra invlidas\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "preferncias pessoais de 'digest' invlidas\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "preferncias pessoais de compresso invlidas\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, 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:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nome_do_ficheiro]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifragem falhou: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nome_do_ficheiro]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_ficheiro]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_ficheiro]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id-utilizador" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizador" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizador [comandos]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "criao de armadura falhou: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de disperso invlido `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nome_do_ficheiro]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Digite a sua mensagem ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "a URL de poltica de certificao dada invlida\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" @@ -3019,22 +3019,22 @@ msgstr "ignorado: a chave secreta j msgid "NOTE: secondary key is online and stored on card\n" msgstr "ignorado: a chave secreta j est presente\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "erro ao criar porta-chaves `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "porta-chaves `%s' criado\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "erro ao criar `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "falha ao criar 'cache' do porta-chaves: %s\n" @@ -6110,12 +6110,12 @@ msgstr "armadura: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "base de dados de confiana: sincronizao falhou: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "base de dados de confiana rec %lu: lseek falhou: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "base de dados de confiana rec %lu: escrita falhou (n=%d): %s\n" @@ -6129,112 +6129,112 @@ msgstr "transa msgid "can't access `%s': %s\n" msgstr "impossvel fechar `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: diretoria inexistente!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "impossvel criar `%s': %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "impossvel abrir `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: falha ao criar registo de verso: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: base de dados de confiana invlida criada\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: base de dados de confiana criada\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOTA: no possvel escrever na trustdb\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: base de dados de confiana invlida\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: falha ao criar tabela de disperso: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: erro a actualizar registo de verso: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: erro ao ler registo de verso: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: erro ao escrever registo de verso: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "base de dados de confiana: lseek falhou: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "base de dados de confiana: leitura falhou (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: no um base de dados de confiana\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: registo de verso com recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: verso de ficheiro invlida %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: erro ao ler registo livre: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: erro ao escrever registo de diretrio: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: falha ao zerar um registo: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: falha ao anexar um registo: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "A base de dados de confiana est danificada; por favor execute\n" @@ -6791,16 +6791,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6810,6 +6810,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "caracter radix64 invlido %02x ignorado\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6834,11 +6839,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6848,226 +6853,240 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "a verso %d do protocolo gpg-agent no suportada\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "a escrever chave privada para `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "erro na criao da frase secreta: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "remoo do bloco de chave falhou: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "falha ao inicializar a base de dados de confiana: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: a chave foi revogada" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "certificado incorrecto" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Nenhuma ajuda disponvel" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "verificao da assinatura criada falhou: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "a escrever chave privada para `%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Esta chave expirou!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Esta chave expirou!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Esta chave expirou!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Esta chave expirou!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " novas assinaturas: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "chave %08lX: certificado de revogao \"%s\" adicionado\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "certificado incorrecto" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "mostra impresso digital" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "gerar um certificado de revogao" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "verificao da assinatura criada falhou: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verificar uma assinatura" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "preferncia %c%lu duplicada\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "chave %08lX: certificado de revogao \"%s\" adicionado\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "certificado incorrecto" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7945,7 +7964,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 2d9254780..afb1b8b08 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2007-08-16 11:35+0200\n" "Last-Translator:\n" "Language-Team: ?\n" @@ -21,18 +21,18 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "falha ao inicializar o banco de dados de confiabilidade: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -41,7 +41,7 @@ msgstr "Por favor digite a frase secreta" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -51,45 +51,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "linha muito longa\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "linha muito longa\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Caractere invlido no nome\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI incorreto" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "frase secreta incorreta" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "frase secreta incorreta" @@ -101,18 +101,18 @@ msgstr "algoritmo de prote #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, fuzzy, c-format msgid "can't create `%s': %s\n" msgstr "impossvel criar %s: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -412,18 +412,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: arquivo de opes padro `%s' inexistente\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de opes `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "lendo opes de `%s'\n" @@ -436,16 +436,16 @@ msgstr "erro na leitura de `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: impossvel criar diretrio: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossvel criar %s: %s\n" @@ -459,22 +459,22 @@ msgstr "Certificado de revoga msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro na criao da frase secreta: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "atualizao falhou: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escrevendo certificado privado para `%s'\n" @@ -494,7 +494,7 @@ msgstr "banco de dados de confiabilidade: leitura falhou (n=%d): %s\n" msgid "can't use `%s' as home directory\n" msgstr "%s: impossvel criar diretrio: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro na leitura de `%s': %s\n" @@ -519,12 +519,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "atualizao da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves ignoradas\n" @@ -710,43 +710,43 @@ msgstr "muda a frase secreta" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "erro na criao da frase secreta: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "impossvel abrir arquivo: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "erro na escrita do chaveiro `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "erro na leitura de `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "erro na leitura de `%s': %s\n" @@ -786,17 +786,17 @@ msgstr "" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossvel desativar core dumps: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "%s: novo arquivo de opes criado\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "%s: novo arquivo de opes criado\n" @@ -975,24 +975,24 @@ msgstr "Certificado correto" msgid "Included certificates" msgstr "Certificado invlido" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "verso desconhecida" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Nenhuma ajuda disponvel para `%s'" @@ -1115,7 +1115,7 @@ msgstr "AVISO: dados de nota msgid "not human readable" msgstr "" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "chave secreta no disponvel" @@ -1125,167 +1125,167 @@ msgstr "chave secreta n msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "impossvel fazer isso em modo no-interativo\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Sua opo? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "no processado(s)" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "escrevendo certificado pblico para `%s'\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "lista preferncias" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Caractere invlido no nome\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Caractere invlido no nome\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "erro: impresso digital invlida\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "Impresso digital:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "erro: impresso digital invlida\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "nenhum dado OpenPGP vlido encontrado.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro na escrita do chaveiro `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 #, fuzzy msgid "Replace existing key? (y/N) " msgstr "Realmente assinar? " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 #, fuzzy msgid "Replace existing keys? (y/N) " msgstr "Realmente assinar? " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1293,137 +1293,137 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Esta chave no protegida.\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) ElGamal (apenas criptografia)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Opo invlida.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "rev- revogaes de chaves incorreta\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "algoritmo de compresso desconhecido" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "chave secreta no disponvel" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "ignorado: a chave secreta j est presente\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "sair deste menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "comandos conflitantes\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "mostra esta ajuda" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "Nenhuma ajuda disponvel" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "muda a data de validade" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "muda os valores de confiana" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "mostra impresso digital" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "gerar um novo par de chaves" +msgid "change a CA fingerprint" +msgstr "mostra impresso digital" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "gerar um novo par de chaves" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Comando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "comandos conflitantes\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos conflitantes\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "escrevendo certificado privado para `%s'\n" # help ou ajuda ??? -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Comando invlido (tente \"help\")\n" @@ -1431,7 +1431,7 @@ msgstr "Comando inv msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -2128,424 +2128,424 @@ msgstr "alterna entre listagem de chave secreta e p msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: arquivo de opes padro `%s' inexistente\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no para uso normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossvel escrever para o chaveiro: %s\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 #, fuzzy msgid "invalid import options\n" msgstr "armadura invlida" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 #, fuzzy msgid "invalid export options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "armadura invlida" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um arquivo core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "escrevendo certificado privado para `%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 #, 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:3097 +#: g10/gpg.c:3116 #, 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) no recomendvel\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 #, fuzzy msgid "invalid default preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, 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:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nome_do_arquivo]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "descriptografia falhou: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_arquivo]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nome_do_arquivo]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_arquivo]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_arquivo]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id-usurio" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id-usurio" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usurio [comandos]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "enumerao de chaves secretas falhou: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record falhou: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "enumerao de chaves secretas falhou: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, 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:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash invlido `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nome_do_arquivo]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "V em frente e digite sua mensagem ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica dada invlida\n" @@ -3037,22 +3037,22 @@ msgstr "ignorado: a chave secreta j msgid "NOTE: secondary key is online and stored on card\n" msgstr "ignorado: a chave secreta j est presente\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, fuzzy, c-format msgid "error creating keyring `%s': %s\n" msgstr "erro na escrita do chaveiro `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, fuzzy, c-format msgid "keyring `%s' created\n" msgstr "%s: chaveiro criado\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "%s: erro de leitura de bloco de chaves: %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, fuzzy, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "%s: falha ao criar tabela de \"hash\": %s\n" @@ -6117,12 +6117,12 @@ msgstr "erro de leitura: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "banco de dados de confiabilidade: sincronizao falhou: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "banco de dados de confiabilidade rec %lu: lseek falhou: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "banco de dados de confiabilidade rec %lu: escrita falhou (n=%d): %s\n" @@ -6136,112 +6136,112 @@ msgstr "transa msgid "can't access `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: diretrio inexistente!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "impossvel criar %s: %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "impossvel abrir `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: falha ao criar registro de verso: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: banco de dados de confiabilidade invlido criado\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: banco de dados de confiabilidade criado\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: banco de dados de confiabilidade invlido\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: falha ao criar tabela de \"hash\": %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: erro atualizando registro de verso: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: erro lendo registro de verso: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: erro escrevendo registro de verso: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "banco de dados de confiabilidade: lseek falhou: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "banco de dados de confiabilidade: leitura falhou (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: no um banco de dados de confiabilidade\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: registro de verso com recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: verso de arquivo invlida %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: erro lendo registro livre: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: erro escrevendo registro de diretrio: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: falha ao zerar um registro: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: falha ao anexar um registro: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "O banco de dados de confiabilidade est danificado; por favor rode\n" @@ -6798,16 +6798,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6817,6 +6817,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "caractere radix64 invlido %02x ignorado\n" +#: sm/call-agent.c:136 +#, fuzzy, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "falha ao colocar `%s' no banco de dados de confiabilidade: %s\n" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6840,11 +6845,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6854,238 +6859,252 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "algoritmo de proteo %d no suportado\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "escrevendo certificado privado para `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "erro na criao da frase secreta: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "enumerao de blocos de chaves falhou: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "falha ao inicializar o banco de dados de confiabilidade: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "chave %08lX: a chave foi revogada!\n" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "Certificado correto" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Nenhuma ajuda disponvel" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "leitura de registro de assinatura falhou: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "erro de leitura do certificado: %s\n" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 #, fuzzy msgid "certificate not yet valid" msgstr "Certificado de revogao vlido" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "Certificado de revogao vlido" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Certificado de revogao vlido" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "erro de leitura do certificado: %s\n" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "erro de leitura do certificado: %s\n" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "erro de leitura do certificado: %s\n" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "erro de leitura do certificado: %s\n" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " novas assinaturas: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "chave %08lX: certificado de revogao adicionado\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "Certificado de revogao vlido" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Impresso digital:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 #, fuzzy msgid "root certificate has now been marked as trusted\n" msgstr "" "Nenhum certificado com confiana indefinida encontrado.\n" "\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "Certificado correto" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 #, fuzzy msgid "root certificate is not marked trusted" msgstr "" "Nenhum certificado com confiana indefinida encontrado.\n" "\n" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "leitura de registro de assinatura falhou: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 #, fuzzy msgid "certificate chain too long\n" msgstr "Certificado de revogao vlido" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 #, fuzzy msgid "issuer certificate not found" msgstr "Certificado de revogao vlido" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verificar uma assinatura" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "Certificado de revogao vlido" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "certificado duplicado - removido" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "" "Nenhum certificado com confiana indefinida encontrado.\n" "\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7957,7 +7976,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" @@ -9442,9 +9461,6 @@ msgstr "" #~ "usurio `%s' no encontrado no banco de dados de confiabilidade - " #~ "inserindo\n" -#~ msgid "failed to put '%s' into trustdb: %s\n" -#~ msgstr "falha ao colocar `%s' no banco de dados de confiabilidade: %s\n" - #~ msgid "Do you really want to create a sign and encrypt key? " #~ msgstr "" #~ "Voc realmente quer criar uma chave para assinatura e criptografia? " diff --git a/po/ro.po b/po/ro.po index 9726ed0f9..fef7c52f7 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2005-05-31 22:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -18,18 +18,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "am euat s stochez amprenta: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -39,7 +39,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "validitate: %s" @@ -50,45 +50,45 @@ msgstr "validitate: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "linie prea lung" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "fraz-parol prea lung\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Caracter invalid n nume\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "MPI incorect" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "fraz-parol incorect" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "fraz-parol incorect" @@ -100,18 +100,18 @@ msgstr "algoritm rezumat %d nu este suportat\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "nu pot crea `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -411,18 +411,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOT: nici un fiier opiuni implicit `%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fiier opiuni `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "citesc opiuni din `%s'\n" @@ -435,16 +435,16 @@ msgstr "eroare la creearea `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nu pot crea directorul `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nu pot crea `%s': %s\n" @@ -459,22 +459,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "eroare la obinere noului PIN: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eroare trimitere la `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizarea a euat: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scriu cheia secret n `%s'\n" @@ -494,7 +494,7 @@ msgstr "fstat(%d) a e msgid "can't use `%s' as home directory\n" msgstr "%s: nu pot crea director: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "eroare la citire `%s': %s\n" @@ -519,12 +519,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizarea secretului a euat: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: srit: %s\n" @@ -715,43 +715,43 @@ msgstr "schimb msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "eroare la crearea frazei-parol: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "nu pot deschide fiierul: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "eroare la citire `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "eroare la obinerea informaiei pentru cheia curent: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "eroare la citire `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "eroare la citire `%s': %s\n" @@ -794,17 +794,17 @@ msgstr "anulat msgid "problem with the agent\n" msgstr "problem cu agentul: agentul returneaz 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nu pot deactiva generarea fiierelor core: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVERTISMENT: proprietate nesigur (unsafe) pentru extensia `%s'\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVERTISMENT: permisiuni nesigure (unsafe) pentru extensia `%s'\n" @@ -976,24 +976,24 @@ msgstr "certificat incorect" msgid "Included certificates" msgstr "certificat incorect" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "versiune necunoscut" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Nici un disponibil disponibil pentru `%s'" @@ -1112,7 +1112,7 @@ msgstr "AVERTISMENT: am g msgid "not human readable" msgstr "ilizibil" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "cardul OpenPGP nu e disponibil: %s\n" @@ -1122,153 +1122,153 @@ msgstr "cardul OpenPGP nu e disponibil: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "cardul OpenPGP nr. %s detectat\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "nu pot face acest lucru n modul batch\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Selecia d-voastr? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[nesetat()]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "masculin" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "feminin" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "nespecificat()" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "neforat()" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "forat()" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Eroare: Deocamdat sunt permise numai caractere ASCII.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Eroare: Caracterul \"<\" nu poate fi folosit.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Eroare: Spaiile duble nu sunt permise.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Numele de familie al proprietarului cardului: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Prenumele proprietarului cardului: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Eroare: Nume combinat prea lung (limita este de %d caractere).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL pentru a aduce cheia public: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Eroare: URL prea lung (limita este de %d caractere).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "eroare la citire `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Date login (nume cont): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Eroare: datele de login prea lungi (limita este de %d caractere).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Date DO personale: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Eroare DO personal pre lung (limita este de %d caractere).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Preferine limb: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Eroare: lungime invalid pentru ir preferine.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Eroare: caractere invalide n ir preferine.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Sex ((M)asculin, (F)eminin sau spaiu): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Eroare: rspuns invalid.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "Amprenta CA: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Eroare: amprent formatat invalid.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "operaia pe cheie nu e posibil: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "nu este un card OpenPGP" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "eroare la obinerea informaiei pentru cheia curent: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "nlocuiesc cheia existent? (d/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Creez copie de rezerv a cheii de cifrare n afara cardului? (d/N) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "nlocuiesc cheile existente? (d/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1279,120 +1279,120 @@ msgstr "" " PIN = `%s' PIN Admin = `%s'\n" "Ar trebui s le schimbai folosind comanda --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "V rugm selectai tipul de cheie de generat:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Cheie de semnare\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Cheie de cifrare\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Cheie de autentificare\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Selecie invalid.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "V rugm selectai unde s fie stocat cheia:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "algoritm de protecie a cheii necunoscut\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "pri secrete ale cheii nu sunt disponibile\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "cheia secret deja stocat pe un card\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "iei din acest meniu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "arat comenzi administrare" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "afieaz acest mesaj" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "afieaz toate datele disponibile" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "schimb numele purttorului cardului" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "schimb URL-ul de unde s fie adus cheia" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "adu cheia specificat de URL-ul de pe card" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "schimb numele de login" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "schimb preferinele de limb" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "schimb sexul purttorului cardului" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "schimb o amprent CA" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "comut fanionul PIN de forare a semnturii" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "genereaz noi chei" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "meniu pentru a schimba sau debloca PIN-ul" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "verific PIN-ul i listeaz toate datele" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Comand> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "Comand numai-administrare\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Sunt permise comenzi administrare\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Nu sunt permise comenzi administrare\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Comand invalid (ncercai \"ajutor\")\n" @@ -1400,7 +1400,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nu pot deschide `%s'\n" @@ -2105,411 +2105,411 @@ msgstr "arat msgid "show expiration dates during signature listings" msgstr "Nici o semntur corespunztoare n inelul secret\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOT: fisier opiuni implicite vechi `%s' ignorat\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOT: %s nu este pentru o folosire normal!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nu este un set de carectere valid\n" # -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "nu am putut interpreta URL-ul serverului de chei\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opiuni server de chei invalide\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "opiuni server de chei invalide\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opiuni import invalide\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "opiuni import invalide\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opiuni export invalide\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "opiuni export invalide\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opiuni enumerare invalide\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "opiuni enumerare invalide\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opiuni verificare invalide\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "opiuni verificare invalide\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nu pot seta cale-execuie ca %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opiuni verificare invalide\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "AVERTISMENT: programul ar putea crea un fiier core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTISMENT: %s nlocuiete %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s nu este permis cu %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nu are sens cu %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "algoritm cifrare selectat este invalid\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "algoritm rezumat selectat este invalid\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "algoritm compresie selectat este invalid\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritm rezumat certificare selectat este invalid\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed trebuie s fie mai mare dect 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed trebuie s fie mai mare dect 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOT: modul S2K simplu (0) este contraindicat cu insisten\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "preferine implicite invalide\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "preferine cifrare personale invalide\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "preferine rezumat personale invalide\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "preferine compresie personale invalide\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s nu merge nc cu %s!\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "am euat s iniializez TrustDB:%s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [nume_fiier]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [nume_fiier]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "cifrarea simetric a lui `%s' a euat: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [nume_fiier]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nume_fiier]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [nume_fiier]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nume_fiier]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nume_fiier]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nume_fiier]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [nume_fiier]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [nume_fiier]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id-utilizator" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizator" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizator [comenzi]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "trimitere server de chei euat: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepie server de chei euat: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "export cheie euat: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "cutare server de chei euat: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizare server de chei euat: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminarea armurii a euat: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "punerea armurii a euat: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritm hash invalid `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[nume_fiier]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Dai-i drumul i scriei mesajul ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "URL-ul politicii de certificare furnizat este invalid\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "URL-ul politicii de semnturi furnizat este invalid\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" @@ -2996,22 +2996,22 @@ msgstr "NOT msgid "NOTE: secondary key is online and stored on card\n" msgstr "NOT: cheia secundar este online i stocat pe card\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "eroare la crearea inelului de chei `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "inelul de chei `%s' creat\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "resurs keyblock `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "am euat s reconstruiesc cache-ul inelului de chei: %s\n" @@ -6007,12 +6007,12 @@ msgstr "eroare citire msgid "trustdb: sync failed: %s\n" msgstr "trustdb: sincronizarea a euat: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "trustdb rec %lu: lseek a euat: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "trustdb rec %lu: scrierea a euat (n=%d): %s\n" @@ -6026,112 +6026,112 @@ msgstr "tranzac msgid "can't access `%s': %s\n" msgstr "nu pot accesa `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: directorul nu exist!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "nu pot crea ncuietoare (lock) pentru `%s'\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "nu pot ncuia (lock) `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: am euat s creez nregistrare versiune: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: a fost creat trustdb invalid\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: a fost creat trustdb\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "NOT: nu poate fi scris n trustdb\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: trustdb invalid\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: am euat s creez hashtable: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: eroare actualizare nregistrare versiune: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: eroare citire nregistrare versiune: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: eroare scriere nregistrare versiune: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "trustdb: lseek a euat: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "trustdb: citirea a euat (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: nu e un fiier trustdb\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: nregistrare versiune cu recnum %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: versiune fiier invalid %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: eroare citire nregistrare liber: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: eroare scriere nregistrare dir: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: eroare setere la zero a nregistrrii: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: adugarea unei nregistrri a euat: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "trustdb este corupt; rulai \"gpg --fix-trustdb\".\n" @@ -6678,16 +6678,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6697,6 +6697,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "caracter radix64 invalid %02X srit\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6721,11 +6726,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "ajutor" @@ -6735,227 +6740,241 @@ msgstr "ajutor" msgid "critical certificate extension %s is not supported" msgstr "gpg-agent versiune protocol %d nu este suportat\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "Nu pot deschide `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "exportul cheilor secrete nu este permis\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "eroare la obinerea numrului serial: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "citirea cheii publice a euat: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "am euat s stochez cheia: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "NOT: cheia a fost revocat" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "certificat incorect" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "Cheie disponibil la: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "verificarea semnturii create a euat: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "exportul cheilor secrete nu este permis\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Aceast cheie a expirat!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Aceast cheie a expirat!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Aceast cheie a expirat!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Aceast cheie a expirat!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr "semnturi create pn acum: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Certificat de revocare creat.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "certificat incorect" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " Card nr. serie =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Amprenta CA: " -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "genereaz un certificat de revocare" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "verificarea semnturii create a euat: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verific o semntur" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "preferina `%s' duplicat\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Certificat de revocare creat.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "certificat incorect" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7826,7 +7845,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 501777258..1b5d32508 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 2.0.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2006-11-07 19:31+0300\n" "Last-Translator: Maxim Britov \n" "Language-Team: Russian \n" @@ -16,18 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "Введите PIN-код для получения доступа к закрытому ключу" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -35,7 +35,7 @@ msgstr "Введите фразу-пароль для доступа к закр #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "достоверность: %s" @@ -46,40 +46,40 @@ msgstr "достоверность: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 msgid "PIN too long" msgstr "PIN слишком длинен" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 msgid "Passphrase too long" msgstr "фраза-пароль слишком длинная" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 msgid "Invalid characters in PIN" msgstr "Недопустимый символ в PIN-коде" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "PIN-код слишком короткий" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 msgid "Bad PIN" msgstr "плохой PIN" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 msgid "Bad Passphrase" msgstr "Неверная фраза-пароль" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 msgid "Passphrase" msgstr "Фраза-пароль" @@ -90,18 +90,18 @@ msgstr "не поддерживаются ssh ключи превышающие #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "не могу создать `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -389,18 +389,18 @@ msgstr "запрошен недупустимый уровень отладки msgid "%s is too old (need %s, have %s)\n" msgstr "libksba слишком устаревшая (требуется %s, имеется %s)\n" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "ЗАМЕЧАНИЕ: файл конфигурации `%s' не обнаружен\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "файл конфигурации `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "параметры конфигурации из файла `%s'\n" @@ -413,16 +413,16 @@ msgstr "ошибка создания `%s': %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "не могу создать каталог `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "имя сокета слишком длинное\n" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, c-format msgid "can't create socket: %s\n" msgstr "не могу создать сокет: %s\n" @@ -437,22 +437,22 @@ msgstr "имя сокета слишком длинное\n" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "нет gpg-agent доступого для данной сессии\n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "ошибка при получении нового PIN: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "ошибка связывния сокета с `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, c-format msgid "listen() failed: %s\n" msgstr "" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, c-format msgid "listening on socket `%s'\n" msgstr "слушаем сокет `%s'\n" @@ -472,7 +472,7 @@ msgstr "" msgid "can't use `%s' as home directory\n" msgstr "невозможно использовать `%s' как домашний каталог\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "ошибка чтения из %s: %s\n" @@ -497,12 +497,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, c-format msgid "%s %s stopped\n" msgstr "%s %s: остановлен\n" @@ -693,43 +693,43 @@ msgstr "сменить фразу-пароль" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, c-format msgid "error creating a pipe: %s\n" msgstr "" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, c-format msgid "error forking process: %s\n" msgstr "" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, c-format msgid "error getting exit code of process %d: %s\n" msgstr "ошибка получения кода возврата процесса %d: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, c-format msgid "error running `%s': exit status %d\n" msgstr "ошибка чтения `%s': статус завершения %d\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "ошибка запуска `%s': позможно не установлен\n" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, c-format msgid "error running `%s': terminated\n" msgstr "ошибка чтения `%s': прервано\n" @@ -768,17 +768,17 @@ msgstr "прервано пользователем\n" msgid "problem with the agent\n" msgstr "проблема с агентом\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "не могу отключить создание файла дампа образа памяти: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ВНИМАНИЕ: небезопасный владелец %s \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ВНИМАНИЕ: небезопасные права доступа %s \"%s\"\n" @@ -950,24 +950,24 @@ msgstr "не найдена CRL для сертификата" msgid "Included certificates" msgstr "экспорт сертификатов" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "неизвестный параметр `%s'\n" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Нет справки для `%s'" @@ -1085,7 +1085,7 @@ msgstr "ВНИМАНИЕ: обнаружено недопустимое прим msgid "not human readable" msgstr "не читаемое человеком" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Карта OpenPGP недоступна: %s\n" @@ -1095,153 +1095,153 @@ msgstr "Карта OpenPGP недоступна: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "Обнаружена карта OpenPGP номер %s \n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "невозможно сделать это в пакетном режиме\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Ваш выбор (?-подробнее)? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[не установлено]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "мужской" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "женский" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "не задан" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Ошибка: Допустим только чистый ASCII.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Ошибка: Нельзя использовать символ \"<\"\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Ошибка: Двойные пробелы недопустимы.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Фамилия владельца карты:" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Имя владельца карты:" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Ошибка: Скомбинированное имя слишком длинное (предел %d символов).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "URL для получения открытого ключа: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Ошибка: URL слишком длинный (предел - %d символов).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "ошибка чтения `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Учетная запись (имя):" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Ошибка: Данные учетной записи слишком длинные (предел %d символов).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Секретные DO данные:" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Ошибка: Секретные DO данные слишком длинные (предел %d символов).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Предпочитаемый язык: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Ошибка: недопустимая длина строки предпочтений.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Ошибка: недопустимые символы в строке предпочтений.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Пол ((M)Мужской, (F)Женский или пробел): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Ошибка: недопустимый ответ.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "отпечаток CA: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Ошибка: неправильный формат отпечатка.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "операция с ключом невозможна: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "карта не OpenPGP" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "ошибка при считывании информации ключа: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Заменить существующий ключ? (y/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Сделать резервную копию ключа шифрования вне карты? (Y/n)" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Заменить существующие ключи? (y/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1252,120 +1252,120 @@ msgstr "" " PIN = `%s' Admin PIN = `%s'\n" "Следует изменить их используя команду --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Выберите тип создаваемого ключа:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Ключ подписи\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Ключ шифрования\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Ключ аутентификации\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Неправильный выбор.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Выберите, где сохранить ключ:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "неизвестный алгоритм защиты ключа\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "секретные части ключа недоступны\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "секретный ключ уже сохранен в карте\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "выйти из этого меню" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "показать управляющие команды" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "показать данную справку" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "вывести все доступные данные" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "изменить имя владельца карты" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "изменить URL получения ключа" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "запросить ключ, указанный по заданному картой URL" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "изменить учетное имя" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "изменить языковые предпочтения" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "изменение пола владельца карты" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "сменить отпечаток CA" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "сгенерировать новые ключи" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "меню изменения или разблокировки PIN" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "проверить PIN и показать все данные" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Команда> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "Команды администратора\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Команды администрирования разрешены\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Команды администрирования не разрешены\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Недопустимая команда (список команд: \"help\")\n" @@ -1373,7 +1373,7 @@ msgstr "Недопустимая команда (список команд: \"h msgid "--output doesn't work for this command\n" msgstr "--output не работает для данной команды\n" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "не могу открыть `%s'\n" @@ -2059,404 +2059,404 @@ msgstr "печатать имя таблиц ключей в списке клю msgid "show expiration dates during signature listings" msgstr "печатать даты истечения в списке подписей" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "libcrypt слишком старой версии (требуется %s, обнаружено %s)\n" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "ЗАМЕЧАНИЕ: старый файл конфигурации по умолчанию `%s' проигнорирован\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "libcrypt слишком старой версии (требуется %s, обнаружено %s)\n" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "ЗАМЕЧАНИЕ: %s не предназначен для обычного применения!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' недопустимая таблица символов\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "не могу проанализировать URL сервера ключей\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недопустимые параметры импорта\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "недопустимые параметры импорта\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недопустимые параметры экспорта\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "недопустимые параметры экспорта\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недопустимый список параметров\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "недопустимый список параметров\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "показывать Фото ID при проверке подписи" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "показывать ссылку на политики при проверке подписи" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "показывать все примечания в процессе проверки подписей" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "показывать добавленные пользователем примечания при проверке подписей" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 msgid "show preferred keyserver URLs during signature verification" msgstr "печатать предпочитаемые серверы ключей при проверке подписей" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 msgid "show user ID validity during signature verification" msgstr "печатать действительность UserID при проверке подписей" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "показывать отозванные и просроченные User ID при проверке подписей" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "показывать отозванные и просроченные User ID при проверке подписей" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недопустимые параметры проверки \n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "недопустимые параметры проверки\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не могу определить путь запуска для %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недопустимый список auto-key-locate\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "недопустимый список auto-key-locate\n" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "ВНИМАНИЕ: возможно создание файла дампа памяти программы!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ВНИМАНИЕ: %s заместит %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не допускается использовать с %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s не имеет смысла совместно с %s!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "не будет работать с небезопасной памятью из-за %s\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "можно сделать только отделенную или прозрачную подпись в режиме --pgp2\n" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Нельзя одновременно подписать и зашифровать в режиме --pgp2\n" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Следует использовать файлы (а не каналы (pipe)) в режиме --pgp2.\n" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "для зашифрования сообщения в режиме --pgp2 требуется шифр IDEA\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "выбран неверный алгоритм шифрования\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "выбран неверный алгоритм сжатия\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция для сертификации\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed должен быть больше 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed должен быть больше 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth должен быть в диапазоне от 1 до 255\n" -#: g10/gpg.c:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "недопустимый min-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "ЗАМЕЧАНИЕ: простой режим S2K (0) строго не рекомендуется\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "недопустимый режим S2K; должно быть 0, 1 или 3\n" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "недопустимые предпочтения по умолчанию\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "недопустимые персональные предпочтения шифра\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "недопустимые персональные предпочтения хэш-функции\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "недопустимые персональные предпочтения алгоритмов сжатия\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s пока не работает совместно с %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "нельзя использовать шифрование `%s' в режиме %s\n" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "нельзя использовать хэш-функцию `%s' в режиме %s\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "нельзя использовать сжатие `%s' в режиме %s\n" -#: g10/gpg.c:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "сбой инициализации таблицы доверий: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым " "ключом\n" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [файл]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [файл]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "симметричное шифрование `%s' не удалось: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [файл]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [файл]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "нельзя использовать --symmetric --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --encrypt в режиме %s\n" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [файл]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [файл]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [файл]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --sign --encrypt в режиме %s\n" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [файл]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [файл]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [файл]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [команды]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "сбой при отправке на сервер ключей: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "сбой при получении с сервера ключей: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "сбой при экспорте ключа: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "сбой при поиске на сервере ключей: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "сбой при обновлении с сервера ключей: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "ошибка преобразования из ASCII формата: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "ошибка преобразования в ASCII формат: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "недопустимая хэш-функция `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[файл]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Набирайте Ваше сообщение ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "заданный URL политики сертификации неверен\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "заданный URL политики подписи неверен\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "заданный URL предпочитаемого сервера ключей неправилен\n" @@ -2940,22 +2940,22 @@ msgstr "ПРЕДУПРЕЖДАЮ: главный ключ готов и сохр msgid "NOTE: secondary key is online and stored on card\n" msgstr "ПРЕДУПРЕЖДАЮ: вторичный ключ готов и сохранен в карте\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "ошибка создания таблицы ключей `%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "создана таблица ключей `%s'\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "сбой перестройки кэша таблицы ключей: %s\n" @@ -5907,12 +5907,12 @@ msgstr "ошибка чтения в `%s': %s\n" msgid "trustdb: sync failed: %s\n" msgstr "" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "" @@ -5926,112 +5926,112 @@ msgstr "trustdb транзакция слишком длинная\n" msgid "can't access `%s': %s\n" msgstr "нет доступа к `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: каталог не существует!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "невозможно создать блокировку для `%s'\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "невозможно заблокировать `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: сбой создания записи о версии: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: создана недействительная таблица доверий\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: создана таблица доверий\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "ЗАМЕЧАНИЕ: таблица доверий доступна только для чтения\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: недействительная таблица доверий\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: сбой создания таблицы хэшей: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: ошибка обновления записи о версии: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: ошибка чтения записи о версии: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: ошибка сохранения записи о версии: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: не является файлом таблицы доверий\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: запись о версии с номером записи %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: неправильная версия файла %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: ошибка чтения свободной записи: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: ошибка внесения записи каталога: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: сбой обнуления записи: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: сбой добавления записи: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "таблица доверий повреждена; запустите \"gpg --fix-trustdb\".\n" @@ -6575,17 +6575,17 @@ msgstr "" "Синтаксис: scdaemon [параметры] [команда [аргументы]]\n" "Демон смарткарт для GnuPG\n" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" "Используйте параметр `--daemon' для запуска приложения в фоновом режиме\n" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "обработчик fd %d запущен\n" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "обработчик fd %d остановлен\n" @@ -6595,6 +6595,11 @@ msgstr "обработчик fd %d остановлен\n" msgid "invalid radix64 character %02x skipped\n" msgstr "недопустимый символ radix64 %02X пропущен\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6618,11 +6623,11 @@ msgstr "не могу подсоединиться к dirmngr - пытаемся msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6631,221 +6636,235 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "критичное дополнение сертификата %s не поддерживается" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "издатель сертификата не помечен как CA" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "помеченная критичной политика без настроенных политик" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, c-format msgid "failed to open `%s': %s\n" msgstr "не могу открыть `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "замечание: не критичные политики сертификана не позволяются" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 msgid "certificate policy not allowed" msgstr "политика сертификата не дозволена" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "число совпавших издателей: %d\n" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "ошибка импортирования сертификата: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "сбой при удалении блока ключа: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 msgid "failed to allocated keyDB handle\n" msgstr "" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "сертификат был отозван" -#: sm/certchain.c:752 +#: sm/certchain.c:836 msgid "no CRL found for certificate" msgstr "не найдена CRL для сертификата" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 msgid "the available CRL is too old" msgstr "достпуная CRL слишком стара" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "проверьте, что \"dirmngr\" установлен корректно\n" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, c-format msgid "checking the CRL failed: %s" msgstr "сбой проверки CRL: %s" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "сертификат недостоверный: %s" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "сертификат еще не достоверен" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "сертификат еще не достоверен" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "сертификат еще не достоверен" -#: sm/certchain.c:829 +#: sm/certchain.c:913 msgid "certificate has expired" msgstr "сертификат просрочен" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "сертификат просрочен" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "сертификат просрочен" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "сертификат недостоверный: %s" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 #, fuzzy msgid "signature not created during lifetime of certificate" msgstr "ошибка чтения списка доверяемых корневых сертификатов\n" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " подписей очищено: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Сертификат отзыва создан.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "сертификат еще не достоверен" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, c-format msgid "fingerprint=%s\n" msgstr "отпечаток=%s\n" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "корневой сертификат теперь помечен доверяемым\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "в gpg-agent нельзя сделать сертификат доверяемым интерактивно\n" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" "для данной сессии запрещено делать сертификат доверяемым интерактивно\n" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 msgid "no issuer found in certificate" msgstr "не найден издатель в сертификате" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "самоподписанный\tсертификат имеет ПЛОХУЮ подпись" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "корневой сертификат не помечен доверяемым" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, c-format msgid "checking the trust list failed: %s\n" msgstr "сбой проверки списка доверий: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "цепочка сертификации слишком длинная\n" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "не найден издатель сертификата" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 msgid "certificate has a BAD signature" msgstr "сертификат имеет ПЛОХУЮ подпись" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "найдено еще одно соответствие CA сертификата - повторная попытки" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "цепочка сертификации длиннее дозволенной CA (%d)" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "цепочка сертификации слишком длинная\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "дупликат сертификата `%s' удален\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "корневой сертификат не помечен доверяемым" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7694,7 +7713,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "Настройки OCSP" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/sk.po b/po/sk.po index afecf87f9..1db90a0d9 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer \n" "Language-Team: Slovak \n" @@ -13,18 +13,18 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "nemem inicializova databzu dvery: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -33,7 +33,7 @@ msgstr "Pros #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 msgid "Quality:" msgstr "" @@ -43,45 +43,45 @@ msgstr "" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "riadok je prli dlh\n" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "heslo je prli dlh\n" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "Neplatn znak ve mene\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "nesprvne MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "nesprvne heslo" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "nesprvne heslo" @@ -93,18 +93,18 @@ msgstr "ochrann #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "nemem vytvori `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -405,18 +405,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn sbor s monosami `%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "sbor s monosami `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "tam monosti z `%s'\n" @@ -429,16 +429,16 @@ msgstr "chyba pri vytv #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemem vytvori adresr `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: nemem vytvori: %s\n" @@ -453,22 +453,22 @@ msgstr "" 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "chyba pri vytvran hesla: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba pri posielan na `%s': %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizcia zlyhala: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisujem tajn k do `%s'\n" @@ -488,7 +488,7 @@ msgstr "datab msgid "can't use `%s' as home directory\n" msgstr "%s: nemem vytvori adresr: %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "chyba pri tan `%s': %s\n" @@ -513,12 +513,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizcia tajnho ka zlyhala: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: preskoen: %s\n" @@ -706,43 +706,43 @@ msgstr "zmeni msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "chyba pri vytvran hesla: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "nemono otvori sbor: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "chyba pri tan `%s': %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "chyba pri zpise do sboru tajnch kov `%s': %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "chyba pri tan `%s': %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "chyba pri tan `%s': %s\n" @@ -785,17 +785,17 @@ msgstr "zru msgid "problem with the agent\n" msgstr "problm s agentom: agent vracia 0x%lx\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nemem vypn vytvranie core sborov: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" @@ -967,24 +967,24 @@ msgstr "nespr msgid "Included certificates" msgstr "nesprvny certifikt" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "neznma verzia" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Pomoc nie je dostupn pre '%s'" @@ -1105,7 +1105,7 @@ msgstr "VAROVANIE: n msgid "not human readable" msgstr "nie je v priamo itatenom formte" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "tajn k nie je dostupn" @@ -1115,166 +1115,166 @@ msgstr "tajn msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 #, fuzzy msgid "can't do this in batch mode\n" msgstr "nemono previes v dvkovom mde\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "V vber? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "" -#: g10/card-util.c:415 +#: g10/card-util.c:417 #, fuzzy msgid "male" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "female" msgstr "enable" -#: g10/card-util.c:416 +#: g10/card-util.c:418 #, fuzzy msgid "unspecified" msgstr "Dvod nebol pecifikovan" -#: g10/card-util.c:443 +#: g10/card-util.c:445 #, fuzzy msgid "not forced" msgstr "nespracovan" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:583 +#: g10/card-util.c:585 #, fuzzy msgid "URL to retrieve public key: " msgstr "iadny zodpovedajci verejn k: %s\n" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "chyba pri tan `%s': %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:796 +#: g10/card-util.c:798 #, fuzzy msgid "Language preferences: " msgstr "aktualizova predvoby" -#: g10/card-util.c:804 +#: g10/card-util.c:806 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "neplatn znak v reazci s predvobami\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "neplatn znak v reazci s predvobami\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "" -#: g10/card-util.c:848 +#: g10/card-util.c:850 #, fuzzy msgid "Error: invalid response.\n" msgstr "chyba: neplatn odtlaok\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 #, fuzzy msgid "CA fingerprint: " msgstr "vypsa fingerprint" -#: g10/card-util.c:892 +#: g10/card-util.c:894 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "chyba: neplatn odtlaok\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Vytvorenie ka sa nepodarilo: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 #, fuzzy msgid "not an OpenPGP card" msgstr "nenjden iadne platn dta vo formte OpenPGP.\n" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "chyba pri zpise do sboru tajnch kov `%s': %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1282,136 +1282,136 @@ msgid "" "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Prosm, vyberte druh ka, ktor chcete:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 #, fuzzy msgid " (1) Signature key\n" msgstr "Platnos podpisu vyprala %s\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (len na ifrovanie)\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Neplatn vber.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Prosm vberte dvod na revokciu:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 #, fuzzy msgid "unknown key protection algorithm\n" msgstr "neznmy ochrann algoritmus\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 #, fuzzy msgid "secret parts of key are not available\n" msgstr "Tajn asti primrneho ka nie s dostupn.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 #, fuzzy msgid "secret key already stored on a card\n" msgstr "preskoen: tajn k je u v databze\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "ukoni toto menu" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 #, fuzzy msgid "show admin commands" msgstr "konfliktn prkazy\n" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "ukza tto pomoc" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 #, fuzzy msgid "list all available data" msgstr "K k dispozcii na: " -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 #, fuzzy msgid "change the login name" msgstr "zmeni dobu platnosti" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 #, fuzzy msgid "change the language preferences" msgstr "zmeni dveryhodnos vlastnka ka" -#: g10/card-util.c:1320 -msgid "change card holder's sex" -msgstr "" - -#: g10/card-util.c:1321 -#, fuzzy -msgid "change a CA fingerprint" -msgstr "vypsa fingerprint" - #: g10/card-util.c:1322 -msgid "toggle the signature force PIN flag" +msgid "change card holder's sex" msgstr "" #: g10/card-util.c:1323 #, fuzzy -msgid "generate new keys" -msgstr "vytvori nov pr kov" +msgid "change a CA fingerprint" +msgstr "vypsa fingerprint" #: g10/card-util.c:1324 -msgid "menu to change or unblock the PIN" +msgid "toggle the signature force PIN flag" msgstr "" #: g10/card-util.c:1325 +#, fuzzy +msgid "generate new keys" +msgstr "vytvori nov pr kov" + +#: g10/card-util.c:1326 +msgid "menu to change or unblock the PIN" +msgstr "" + +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Prkaz> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 #, fuzzy msgid "Admin-only command\n" msgstr "konfliktn prkazy\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 #, fuzzy msgid "Admin commands are allowed\n" msgstr "konfliktn prkazy\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "zapisujem tajn k do `%s'\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Neplatn prkaz (skste \"help\")\n" @@ -1419,7 +1419,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nemono otvori `%s'\n" @@ -2124,418 +2124,418 @@ msgstr "uk msgid "show expiration dates during signature listings" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn sbor s monosami `%s ignorovan'\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZNMKA: %s nie je pre normlne pouitie!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nemono poui URI servera kov - chyba analzy URI\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 #, fuzzy msgid "invalid keyserver options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn parameter pre import\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "neplatn parameter pre import\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn parameter pre import\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 #, fuzzy msgid "invalid list options\n" msgstr "neplatn parameter pre import\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 #, fuzzy msgid "invalid verify options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nemono nastavi exec-path na %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "VAROVANIE: program me vytvori sbor core!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVANIE: %s prepe %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie je dovolen pouva %s s %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedva s %s zmysel!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "zapisujem tajn k do `%s'\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "poloka completes-needed mus by via ako 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus by via ako 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 #, 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNMKA: jednoduch md S2K (0) je drazne nedoporuovan\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "neplatn defaultn predvoby\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "neplatn uvatesk predvoby pre ifrovanie\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "neplatn uvatesk predvoby pre hashovanie\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "neplatn uvatesk predvoby pre kompresiu\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ete nepracuje s %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemem inicializova databzu dvery: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [meno sboru]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [meno sboru]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "deifrovanie zlyhalo: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [meno sboru]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [meno sboru]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [meno sboru]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [meno sboru]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [meno sboru]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key id uvatea" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key id uvatea" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uvatea [prkazy]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "nepodarilo posla k na server: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "nepodarilo sa prija k zo servera: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "nepodaril sa export ka: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "nepodarilo sa njs server: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aktualizcia servera zlyhala: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovanie z ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovanie do ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn hashovac algoritmus `%s'\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[meno sboru]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Zanite psa svoju sprvu ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pre certifikan politiku je neplatn\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan URL pre podpisov politiku je neplatn\n" @@ -3028,22 +3028,22 @@ msgstr "presko msgid "NOTE: secondary key is online and stored on card\n" msgstr "preskoen: tajn k je u v databze\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "chyba pri vytvran sboru kov (keyring)`%s': %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "sbor kov (keyring) `%s' vytvoren\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, fuzzy, c-format msgid "keyblock resource `%s': %s\n" msgstr "chyba pri vytvran `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "zlyhalo obnovenie vyrovnvacej pamti kov: %s\n" @@ -6121,12 +6121,12 @@ msgstr "chyba pri msgid "trustdb: sync failed: %s\n" msgstr "databza dvery: synchronizcia zlyhala %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "zznam v databze dvery %lu: lseek() sa nepodaril: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "zznam v databze dvery %lu: zpis sa nepodaril (n=%d): %s\n" @@ -6140,112 +6140,112 @@ msgstr "transakcia s datab msgid "can't access `%s': %s\n" msgstr "nemem zavrie `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: adresr neexistuje!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, fuzzy, c-format msgid "can't create lock for `%s'\n" msgstr "nemem vytvori `%s': %s\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, fuzzy, c-format msgid "can't lock `%s'\n" msgstr "nemono otvori `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: nepodarilo sa vytvori zznam verzie: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: vytvoren neplatn databza dvery\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: databza dvery vytvoren\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "POZNMKA: do trustdb nemono zapisova\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: neplatn databze dvery\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: nepodarilo sa vytvori hashovaciu tabuku: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: chyba pri aktualizcii zznamu verzie: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: chyba pri tan zznamu verzie: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: chyba pri zpise zznamu verzie: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "databze dvery: procedra lseek() zlyhala: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "databza dvery: procedra read() (n=%d) zlyhala: %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: nie je sbor databzy dvery\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: zznam verzie s slom %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: neplatn verzia sboru %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: chyba pri tan vonho zznamu: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: chyba pri zpise adresrovho zznamu: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: vynulovanie zznamu zlyhalo: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: pridanie zznamu zlyhalo: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "databza dvery je pokoden; prosm spustite \"gpg --fix-trustdb\".\n" @@ -6799,16 +6799,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6818,6 +6818,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "neplatn znak vo formte radix64 %02x bol preskoen\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6842,11 +6847,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 #, fuzzy msgid "shell" msgstr "help" @@ -6856,226 +6861,240 @@ msgstr "help" msgid "critical certificate extension %s is not supported" msgstr "gpg-agent protokol verzie %d nie je podporovan\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "nemem otvori `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "zapisujem tajn k do `%s'\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "chyba pri vytvran hesla: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "zmazanie bloku ka sa nepodarilo: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "nemem inicializova databzu dvery: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "POZNMKA: k bol revokovan" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "nesprvny certifikt" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "K k dispozcii na: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "kontrola vytvorenho podpisu sa nepodarila: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "zapisujem tajn k do `%s'\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "Platnos ka vyprala!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "Platnos ka vyprala!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "Platnos ka vyprala!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "Platnos ka vyprala!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " nov podpisy: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Revokan certifikt bol vytvoren.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "nesprvny certifikt" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "vypsa fingerprint" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "vytvori revokan certifikt" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrola vytvorenho podpisu sa nepodarila: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "verifikova podpis" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "duplicita predvoby %c%lu\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "Revokan certifikt bol vytvoren.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "nesprvny certifikt" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7950,7 +7969,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index 05b71e6da..91c22abe1 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2007-11-12 16:08+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -33,12 +33,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "misslyckades med att ta kontroll över PIN-inmatningslåset: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" @@ -46,7 +46,7 @@ msgstr "" "Ange din PIN-kod så att den hemliga nyckeln kan låsas upp för den här " "sessionen" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -55,7 +55,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "giltighet: %s" @@ -66,41 +66,41 @@ msgstr "giltighet: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "SETERROR %s (försök %d av %d)" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 msgid "PIN too long" msgstr "PIN-koden är för lång" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 msgid "Passphrase too long" msgstr "Lösenfrasen är för lång" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 msgid "Invalid characters in PIN" msgstr "Ogiltiga tecken i PIN-kod" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "PIN-kod för kort" # MPI står för Multiple Precision Integer (tror jag) -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 msgid "Bad PIN" msgstr "Felaktig PIN-kod" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 msgid "Bad Passphrase" msgstr "Felaktig lösenfras" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 msgid "Passphrase" msgstr "Lösenfras" @@ -113,18 +113,18 @@ msgstr "ssh-nycklar större än %d bitar stöds inte\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "kan inte skapa \"%s\": %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -425,18 +425,18 @@ msgstr "ogiltig debug-level \"%s\" angiven\n" 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:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "OBS: inställningsfilen \"%s\" saknas\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "inställningsfil \"%s\": %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "läser inställningar från \"%s\"\n" @@ -449,16 +449,16 @@ msgstr "Fel när \"%s\" skapades: %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan inte skapa katalog: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "namnet på uttaget är för långt\n" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, c-format msgid "can't create socket: %s\n" msgstr "kan inte skapa uttag: %s\n" @@ -473,21 +473,21 @@ 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:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 msgid "error getting nonce for the socket\n" msgstr "fel vid hämtning av nonce för uttaget\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "fel när \"%s\" bands till uttag: %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, c-format msgid "listen() failed: %s\n" msgstr "listen() misslyckades: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, c-format msgid "listening on socket `%s'\n" msgstr "lyssnar på uttaget \"%s\"\n" @@ -507,7 +507,7 @@ msgstr "stat() misslyckades för \"%s\": %s\n" msgid "can't use `%s' as home directory\n" msgstr "kan inte använda \"%s\" som hemkatalog\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fel vid läsning av nonce på fd %d: %s\n" @@ -532,12 +532,12 @@ msgstr "ssh-hanteraren 0x%lx för fd %d startad\n" 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:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select misslyckades: %s - väntar 1 s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, c-format msgid "%s %s stopped\n" msgstr "%s %s stoppad\n" @@ -732,44 +732,44 @@ msgstr "ändra lösenfras" msgid "I'll change it later" msgstr "Jag ändrar den senare" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, c-format msgid "error creating a pipe: %s\n" msgstr "fel när ett rör skapades: %s\n" # se förra kommentaren -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "kan inte fdopen rör för läsning: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, c-format msgid "error forking process: %s\n" msgstr "fel vid grening av process: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "misslyckades med att vänta på att processen %d skulle avslutas: %s\n" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, c-format msgid "error getting exit code of process %d: %s\n" msgstr "fel vid hämtning av avslutskod för processen %d: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, c-format msgid "error running `%s': exit status %d\n" msgstr "fel vid körning av \"%s\": avslutsstatus %d\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "fel vid körning av \"%s\": antagligen inte installerat\n" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, c-format msgid "error running `%s': terminated\n" msgstr "fel vid körning av \"%s\": avslutades\n" @@ -808,18 +808,18 @@ msgstr "avbruten av användaren\n" msgid "problem with the agent\n" msgstr "problem med agenten\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan inte stänga av minnesutskrifter: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Varning: osäkert ägarskap på %s \"%s\"\n" # Extension är vad? FIXME -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Varning: osäkra rättigheter på %s \"%s\"\n" @@ -993,24 +993,24 @@ msgstr "ingen spärrlista hittades för certifikatet" msgid "Included certificates" msgstr "exportera certifikat" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "okänd flagga \"%s\"\n" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "Det finns ingen hjälp tillgänglig för \"%s\"" @@ -1132,7 +1132,7 @@ msgstr "VARNING: ogiltig notationsdata hittades\n" msgid "not human readable" msgstr "inte läsbart" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort är inte tillgängligt: %s\n" @@ -1142,153 +1142,153 @@ msgstr "OpenPGP-kort är inte tillgängligt: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP-kort nr. %s identifierades\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "kan inte göra detta i satsläge\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Vad väljer du? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[inte inställt]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "man" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "kvinna" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "ej angiven" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "inte tvingad" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "tvingad" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Fel: Endast ren ASCII tillåts för närvarande.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Fel: Tecknet \"<\" får inte användas.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Fel: Dubbla blanksteg tillåts inte.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Kortinnehavarens efternamn: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Kortinnehavarens förnamn: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Fel: Fullständigt namn för långt (gränsen är %d tecken).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "Url för att hämta publik nyckel: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Fel: URL:en är för lång (gränsen är %d tecken).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "fel vid läsning av \"%s\": %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Inloggningsdata (kontonamn): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Fel: Inloggningsdata är för långt (gräns är %d tecken).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Privat DO-data: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Fel: Privat DO för långt (gränsen är %d tecken).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Språkinställningar: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Fel: ogiltig längd på inställningssträngen\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Fel: ogiltiga tecken i inställningssträngen.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Kön ((M)an, Kvinna(F) eller blanksteg): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Fel: ogiltigt svar.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CA-fingeravtryck: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fel: ogiltigt formaterat fingeravtryck.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "nyckelåtgärden är inte möjlig: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "inte ett OpenPGP-kort" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "fel vid hämtning av aktuell nyckelinformation: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Ersätt existerande nyckel? (j/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Skapa säkerhetskopia av krypteringsnyckel utanför kortet? (J/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Ersätt existerande nycklar? (j/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1299,122 +1299,122 @@ msgstr "" " PIN-kod = \"%s\" Admin PIN-kod = \"%s\"\n" "Du bör ändra dem med kommandot --change-pin\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Välj vilken typ av nyckel som ska genereras:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) Signeringsnyckel\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsnyckel\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Autentiseringsnyckel\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Ogiltigt val.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Välj var nyckeln ska sparas:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "okänd nyckelskyddsalgoritm\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "hemliga delar av nyckeln är inte tillgängliga.\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "hemlig nyckel redan lagrad på ett kort\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "avsluta denna meny" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "visa administratörskommandon" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "visa denna hjälp" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "lista allt tillgängligt data" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "ändra kortinnehavarens namn" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "ändra url för att hämta nyckel" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "hämta nyckel som anges i kortets url" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "ändra inloggningsnamnet" # originalet borde ha ett value -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "ändra språkinställningarna" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "ändra kortinnehavarens kön" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "ändra ett CA-fingeravtryck" # den låter skum -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "växla flagga för att tvinga signatur-PIN-kod" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "generera nya nycklar" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "meny för att ändra eller avblockera PIN-koden" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "validera PIN-koden och lista allt data" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Kommando> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "Kommandon endast för administratör\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Administrationskommandon tillåts\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Administrationskommandon tillåts inte\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Ogiltigt kommando (prova med \"help\")\n" @@ -1423,7 +1423,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "kan inte öppna \"%s\"\n" @@ -2122,415 +2122,415 @@ msgstr "visa nyckelringens namn i nyckellistningar" msgid "show expiration dates during signature listings" msgstr "visa utgångsdatum under signaturlistningar" -#: g10/gpg.c:1839 -#, 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:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, 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:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, 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:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, 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:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "\"%s\" är ingen giltig teckentabell\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "kunde inte tolka url till nyckelserver\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ogiltiga importeringsflaggor\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "ogiltiga importflaggor\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ogiltiga exportflaggor\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "ogiltiga exportinställningar\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ogiltiga listflaggor\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "ogiltiga listflaggor\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "visa foto-id under signaturvalidering" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "visa policy-url:er under signaturvalidering" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "visa alla notationer under signaturvalidering" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "visa IETF-standardnotationer under signaturvalidering" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "visa användarangivna notationer under signaturvalidering" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 msgid "show preferred keyserver URLs during signature verification" msgstr "visa url:er till föredragna nyckelserver under signaturvalidering" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 msgid "show user ID validity during signature verification" msgstr "visa giltighet för användaridentitet vid signaturvalidering" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "visa spärrade och utgångna användaridentiteter i signaturvalidering" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 msgid "show only the primary user ID in signature verification" msgstr "visa endast primär användaridentitet i signaturvalidering" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "validera signaturer med PKA-data" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "öka tillit på signaturer med giltigt PKA-data" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ogiltiga flaggor för validering\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "ogiltiga flaggor för validering\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, 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:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ogiltig auto-key-locate-lista\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 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:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "VARNING: programmet kan komma att skapa en minnesavbild!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VARNING: %s gäller istället för %s\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s är inte tillåten tillsammans med %s!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, 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:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 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:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "den valda chifferalgoritmen är ogiltig\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "vald sammandragsalgoritm är ogiltig\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "vald komprimeringsalgoritm är ogiltig\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 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:3089 +#: g10/gpg.c:3108 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:3091 +#: g10/gpg.c:3110 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:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "OBS: enkelt S2K-läge (0) rekommenderas inte\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 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:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "ogiltig inställning av personligt chiffer\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "ogiltig inställning av föredragna kontrollsummealgoritmer\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "ogiltig inställning av föredragna kompressionsalgoritmer\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s fungerar ännu inte med %s\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, 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:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [filnamn]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [filnamn]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av \"%s\" misslyckades: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [filnamn]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnamn]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [filnamn]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnamn]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnamn]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnamn]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [filnamn]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [filnamn]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key användaridentitet" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key användaridentitet" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key användaridentitet [kommandon]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "sändning till nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "hämtning från nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "export av nyckeln misslyckades: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "sökning på nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "uppdatering av nyckeln från en nyckelserver misslyckades: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "misslyckades med att ta bort ASCII-skalet: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "misslyckades med att skapa ASCII-skal: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ogiltig kontrollsummealgoritm \"%s\"\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[filnamn]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "Skriv ditt meddelande här ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "den angivna URL som beskriver certifieringsspolicy är ogiltig\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "den angivna URL som beskriver signaturpolicy är ogiltig\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angivna föredragna nyckelserver-url:n är ogiltig\n" @@ -3024,22 +3024,22 @@ msgstr "OBSERVERA: primärnyckeln är ansluten och lagrad på kort\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "OBSERVERA: sekundärnyckeln är ansluten och lagrad på kort\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "fel när nyckelringen \"%s\" skapades: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "%s: nyckelring skapad\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "nyckelblockresurs \"%s\": %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "misslyckades med att återskapa nyckelringscache: %s\n" @@ -6069,12 +6069,12 @@ msgstr "läsfel i \"%s\": %s\n" msgid "trustdb: sync failed: %s\n" msgstr "tillitsdatabas: synkronisering misslyckades: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "tillitsdatabasposten %lu: lseek misslyckades: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "tillitsdatabasposten %lu: skrivning misslyckades (n=%d): %s\n" @@ -6088,113 +6088,113 @@ msgstr "tillitsdatabastransaktion för stor\n" msgid "can't access `%s': %s\n" msgstr "kan inte komma åt \"%s\": %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: katalogen finns inte!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "kan inte skapa lås för \"%s\"\n" # se förra kommentaren -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "kan inte låsa \"%s\"\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: misslyckades med att skapa versionspost: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: ogiltig tillitsdatabas skapad\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: tillitsdatabas skapad\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "OBS: det går inte att skriva till tillitsdatabasen\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: ogiltig tillitsdatabas\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: misslyckades med att skapa kontrollsummetabell: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: fel vid uppdatering av versionspost: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: fel vid läsning av versionspost: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: fel vid skrivning av versionspost: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "tillitsdatabas: lseek misslyckades: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "tillitsdatabas: läsning misslyckades (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: detta är inte en tillitsdatabasfil\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: versionspost med postnummer %lu\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: ogiltig filversion %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: fel vid läsning av ledig post: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: fel vid läsning av katalogpost: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: misslyckades med att nollställa en post: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: misslyckades med att lägga till en post: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "tillitsdatabasen är trasig, kör \"gpg --fix-trustdb\".\n" @@ -6748,16 +6748,16 @@ msgstr "" "Syntax: scdaemon [flaggor] [kommando [argument]]\n" "Smartkortsdemon för GnuPG\n" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 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:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "hanterare för fd %d startad\n" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "hanterare för fd %d avslutad\n" @@ -6768,6 +6768,11 @@ msgstr "hanterare för fd %d avslutad\n" msgid "invalid radix64 character %02x skipped\n" msgstr "ogiltigt radix64-tecken %02x hoppades över\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6791,11 +6796,11 @@ msgstr "kan inte ansluta till dirmngr - försöker falla tillbaka\n" msgid "validation model requested by certificate: %s" msgstr "valideringsmodellen begärd av certifikat: %s" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "kedja" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "skal" @@ -6804,209 +6809,224 @@ msgstr "skal" msgid "critical certificate extension %s is not supported" msgstr "kritiska certifikattillägget %s stöds inte" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "utfärdarens certifikat är inte markerat som en CA" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "kritisk markerad policy utan konfigurerade policier" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, c-format msgid "failed to open `%s': %s\n" msgstr "misslyckades med att öppna \"%s\": %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "observera: icke-kritisk certifikatpolicy tillåts inte" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 msgid "certificate policy not allowed" msgstr "certifikatpolicy tillåts inte" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "slår upp utfärdare på extern plats\n" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "antal utfärdare som matchar: %d\n" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +#, fuzzy +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "slår upp utfärdare på extern plats\n" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "fel vid import av certifikat: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "skuggning av nyckeln misslyckades: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 msgid "failed to allocated keyDB handle\n" msgstr "misslyckades med att allokera keyDB-hanterare\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "certifikatet har spärrats" -#: sm/certchain.c:752 +#: sm/certchain.c:836 msgid "no CRL found for certificate" msgstr "ingen spärrlista hittades för certifikatet" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "status för certifikatet är okänt" -#: sm/certchain.c:762 +#: sm/certchain.c:846 msgid "the available CRL is too old" msgstr "den tillgängliga spärrlistan är för gammal" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "se till att \"dirmngr\" är korrekt installerat\n" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, c-format msgid "checking the CRL failed: %s" msgstr "kontroll mot spärrlistan misslyckades: %s" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "certifikat med felaktig giltighetstid: %s" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "certifikatet är ännu inte giltigt" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 msgid "root certificate not yet valid" msgstr "rotcertifikatet är ännu inte giltigt" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "tillfälligt certifikat är ännu inte giltigt" -#: sm/certchain.c:829 +#: sm/certchain.c:913 msgid "certificate has expired" msgstr "certifikatet har gått ut" -#: sm/certchain.c:830 +#: sm/certchain.c:914 msgid "root certificate has expired" msgstr "rotcertifikatet har gått ut" -#: sm/certchain.c:831 +#: sm/certchain.c:915 msgid "intermediate certificate has expired" msgstr "tillfälligt certifikat har gått ut" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "nödvändiga certifikattillägg saknas: %s%s%s" -#: sm/certchain.c:882 +#: sm/certchain.c:966 msgid "certificate with invalid validity" msgstr "certifikat med felaktig giltighetstid" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "signaturen inte skapad under certifikatets livstid" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "certifikatet skapades inte under utfärdarens livstid" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "tillfälligt certifikat är inte skapat under utfärdarens livstid" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 msgid " ( signature created at " msgstr " ( signatur skapad " -#: sm/certchain.c:927 +#: sm/certchain.c:1011 msgid " (certificate created at " msgstr " (certifikat skapat " -#: sm/certchain.c:930 +#: sm/certchain.c:1014 msgid " (certificate valid from " msgstr " (certifikat giltigt från " -#: sm/certchain.c:931 +#: sm/certchain.c:1015 msgid " ( issuer valid from " msgstr " ( utfärdare giltig från " -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, c-format msgid "fingerprint=%s\n" msgstr "fingeravtryck=%s\n" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "rotcertifikatet har nu markerats som betrott\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interaktiv markering som betrodd inte aktiverad i gpg-agent\n" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktiv markering som betrodd inaktiverad för den här sessionen\n" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "VARNING: tid för skapandet av signaturen är inte känd - antar aktuell tid" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 msgid "no issuer found in certificate" msgstr "ingen utfärdare hittades i certifikatet" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "självsignerat certifikat har en FELAKTIG signatur" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "rotcertifikatet har inte markerats som betrott" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, c-format msgid "checking the trust list failed: %s\n" msgstr "kontroll mot tillitslistan misslyckades: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "certifikatkedjan är för lång\n" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "utfärdarens certifikat hittades inte" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 msgid "certificate has a BAD signature" msgstr "certifikatet har en FELAKTIG signatur" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "hittade ett annat möjligen matchande CA-certifikat - försöker igen" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "certifikatkedjan längre än vad som tillåts av CA (%d)" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 msgid "certificate is good\n" msgstr "certifikatet är korrekt\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 msgid "intermediate certificate is good\n" msgstr "tillfälligt certifikat är korrekt\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 msgid "root certificate is good\n" msgstr "rotcertifikatet är korrekt\n" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "växlar till kedjemodell" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "valideringsmodell använd: %s" @@ -7859,7 +7879,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "Konfiguration för OCSP" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "Observera att gruppspecifikationer ignoreras\n" diff --git a/po/tr.po b/po/tr.po index 58d476791..a8b9a970e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.9.94\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2006-11-04 03:45+0200\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -15,12 +15,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.1\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "PIN giriş kilidi edinilemedi: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" @@ -28,7 +28,7 @@ msgstr "" "Lütfen PIN'inizi giriniz, böylelikle bu oturumda bu gizli anahtar kilitsiz " "olabilecek" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " "this session" @@ -38,7 +38,7 @@ msgstr "" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "geçerliliği: %s" @@ -49,40 +49,40 @@ msgstr "geçerliliği: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 msgid "PIN too long" msgstr "PIN çok uzun" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 msgid "Passphrase too long" msgstr "Anahtar Parolası çok uzun" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 msgid "Invalid characters in PIN" msgstr "PIN içinde geçersiz karakterler var" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "PIN çok kısa" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 msgid "Bad PIN" msgstr "PIN hatalı" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 msgid "Bad Passphrase" msgstr "Anahtar Parolası hatalı" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 msgid "Passphrase" msgstr "Anahtar Parolası" @@ -93,18 +93,18 @@ msgstr "%d bitlikten daha büyük SSH anahtarları desteklenmiyor\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "\"%s\" oluşturulamıyor: %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -392,18 +392,18 @@ msgstr "belirtilen hata seviyesi `%s' geçersiz\n" msgid "%s is too old (need %s, have %s)\n" msgstr "libksba çok eski (gereken %s, sizinki %s)\n" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, 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:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "seçenek dosyası \"%s\": %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "\"%s\"den seçenekler okunuyor\n" @@ -416,16 +416,16 @@ msgstr "`%s' oluşturulurken hata: %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "`%s' dizini oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "soketin ismi çok uzun\n" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, c-format msgid "can't create socket: %s\n" msgstr "soket oluşturulamıyor: %s\n" @@ -440,22 +440,22 @@ msgstr "soketin ismi çok uzun\n" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "bu oturumda çalışan gpg-agent yok\n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "yeni PIN alınırken hata: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "soket `%s'e bağlanırken hata: %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, c-format msgid "listen() failed: %s\n" msgstr "soket dinleme başarısız: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, c-format msgid "listening on socket `%s'\n" msgstr "`%s' soketi dinlemede\n" @@ -475,7 +475,7 @@ msgstr "%s için stat() başarısız oldu: %s\n" msgid "can't use `%s' as home directory\n" msgstr "`%s' ev dizini olarak kullanılamıyor\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "%s okunurken hata: %s\n" @@ -500,12 +500,12 @@ msgstr "ssh tutamağı 0x%lx, fd %d için başlatıldı\n" 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:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, 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:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, c-format msgid "%s %s stopped\n" msgstr "%s %s durdu\n" @@ -698,43 +698,43 @@ msgstr "anahtar parolası değiştirir" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, c-format msgid "error creating a pipe: %s\n" msgstr "boru oluşturulurken hata: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "okumak için boruya fdopen yapılamadı: %s\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, c-format msgid "error forking process: %s\n" msgstr "süreç çatallanırken hata: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "süreç %d sonlanacak diye beklerken başarısızlık: %s\n" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, c-format msgid "error getting exit code of process %d: %s\n" msgstr "süreç %d çıkış kodu alınırken hata: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, c-format msgid "error running `%s': exit status %d\n" msgstr "`%s' çalışırken hata: çıkış durumu: %d\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "`%s' çalıştırılırken hata: muhtemelen kurulu değil\n" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, c-format msgid "error running `%s': terminated\n" msgstr "`%s' çalışırken hata: sonlandırıldı\n" @@ -773,17 +773,17 @@ msgstr "kullanıcı tarafından iptal edildi\n" msgid "problem with the agent\n" msgstr "aracı ile sorun var\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "\"core\" oluşumu iptal edilemedi: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "UYARI: %s üzerinde sahiplik güvensiz: \"%s\"\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "UYARI: %s üzerinde izinler güvensiz: \"%s\"\n" @@ -955,24 +955,24 @@ msgstr "sertifika için bir CRL yok" msgid "Included certificates" msgstr "sertifikaları ihraç eder" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "`%s' seçeneği bilinmiyor\n" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "\"%s\" için yardım mevcut değil" @@ -1090,7 +1090,7 @@ msgstr "UYARI: geçersiz simgelem verisi bulundu\n" msgid "not human readable" msgstr "insan okuyabilir değil" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP anahtarı kullanılabilir değil: %s\n" @@ -1100,153 +1100,153 @@ msgstr "OpenPGP anahtarı kullanılabilir değil: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "%s numaralı OpenPGP kartı saptandı\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "bu önceden betik kipinde yapılamaz\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "Seçiminiz? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[belirtilmedi]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "erkek" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "dişi" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "belirtilmemiş" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "zorlanmadı" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "zorlandı" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "Hata: Şimdilik sadece US-ASCII mümkün.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "Hata: \"<\" karakteri kullanılmamalı.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "Hata: Çift boşluğa izin verilmez.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "Kart sahibinin soyadı: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "Kart sahibinin adı: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Hata: İsimler birlikte çok uzun oluyor (sınır: %d karakter).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "genel anahtarın alınacağı URL: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "Hata: URL çok uzun (sınır: %d karakter).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "\"%s\" okunurken hata: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "Oturum açma verisi (hesap adı): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "Hata: Oturum açma verisi çok uzun (sınır: %d karakter).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "Özel DO verisi: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "Hata: Özel DO çok uzun (sınır: %d karakter).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "Dil tercihleri: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "Hata: tercih dizgesinin uzunluğu geçersiz.\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "Hata: tercih dizgesindeki karakterler geçersiz.\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "Cinsiyet ((E)rkek, (D)işi veya boşluk): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "Hata: yanıt geçersiz.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CA parmak izi: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "Hata: biçimli parmakizi geçersiz\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "anahtar işlemi mümkün değil: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "bir OpenPGP kartı değil" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "geçerli anahtar bilgisi alınırken hata: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "Mevcut anahtar değiştirilsin mi? (e/H ya da y/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Şifreli anahtarın kartsız yedeği yapılsın mı? (E/h ya da Y/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "Mevcut anahtarlar değiştirilsin mi? (e/H ya da y/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1257,120 +1257,120 @@ msgstr "" " PIN = `%s' Admin PIN = `%s'\n" "Bunları --change-pin komutunu kullanarak değiştirmelisiniz\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "Lütfen üretilecek anahtar türünü seçiniz:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) İmzalama anahtarı\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) Şifreleme anahtarı\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) Kimlik kanıtlama anahtarı\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "Seçim geçersiz.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "Lütfen anahtarın saklanacağı yeri seçiniz:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "bilinmeyen anahtar koruma algoritması\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "anahtarın gizli parçaları kullanılabilir değil\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "gizli anahtar zaten bir kartın üzerinde saklı\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "bu menüden çık" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "yönetici komutlarını gösterir" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "bunu gösterir" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "tüm kullanılabilir veriyi listeler" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "kart sahibinin ismini değiştirir" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "anahtarın alınacağı URL değiştirilir" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "kart URL'sinde belirtilmiş anahtarı alır" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "oturum açma ismini değiştirir" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "dil tercihlerini değiştirir" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "kart sahibinin cinsiyetini değiştirir" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "bir CA parmakizini değiştirir" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "imza zorlama PIN'i bayrağını değiştirir" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "yeni anahtarlar üretir" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "PIN'i değiştirme veya engelleme menüsü" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "PIN'i doğrular ve tüm veriyi listeler" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "Komut> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "Yöneticiye özel komut\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "Yönetici komutlarına izin verilir\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "Yönetici komutlarına izin verilmez\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "Komut geçersiz (\"help\" komutunu deneyin)\n" @@ -1378,7 +1378,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:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "`%s' açılamadı\n" @@ -2066,407 +2066,407 @@ msgstr "anahtar listelerinde anahtarlık ismini gösterir" msgid "show expiration dates during signature listings" msgstr "imza listelemesi sırasında zamanaşımı tarihleri gösterilir" -#: g10/gpg.c:1839 -#, 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:1997 +#: g10/gpg.c:1805 #, 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:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, 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:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, 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:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, 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:2532 +#: g10/gpg.c:2550 #, 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:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "anahtar sunucusunun adresi çözümlenemedi\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: geçersiz içselleştirme seçenekleri\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "içselleştirme seçenekleri geçersiz\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d geçersiz dışsallaştırma seçenekleri\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "dışsallaştırma seçenekleri geçersiz\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: liste seçenekleri geçersiz\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "liste seçenekleri geçersiz\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "imza doğrulaması sırasında foto kimliklerini gösterir" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "imza doğrulaması sırasında poliçe adreslerini gösterir" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "imza doğrulaması sırasında tüm simgelemi gösterir" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "imza doğrulaması sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kaynaklı simgelemleri gösterir" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 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:2622 +#: g10/gpg.c:2640 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:2624 +#: g10/gpg.c:2642 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:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID 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:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "imzaları PKA verisi ile doğrular" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 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:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, 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:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "UYARI: program bir \"core\" dosyası oluşturabilir!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "UYARI: %s %s'i aşıyor\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ile %s birlikte kullanılmaz!\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s, %s ile etkisiz olur!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, 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:2965 +#: g10/gpg.c:2984 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:2971 +#: g10/gpg.c:2990 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:2977 +#: g10/gpg.c:2996 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:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2 kipinde ileti şifrelemesi IDEA şifresi gerektirir\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "seçilen özümleme algoritması geçersiz\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "seçilen sertifikalama özümleme algoritması geçersiz\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "\"completes-needed\" 0 dan büyük olmalı\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "\"marginals-needed\" 1 den büyük olmalı\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 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:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 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:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "BİLGİ: basit S2K kipi (0) kesinlikle tavsiye edilmez\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 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:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "öntanımlı tercihler geçersiz\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "kişisel şifre tercihleri geçersiz\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "kişisel özümleme tercihleri geçersiz\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "kişisel sıkıştırma tercihleri geçersiz\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s, %s ile henüz çalışmıyor\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, 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:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' özümleme algoritması kullanılamaz\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, 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:3310 +#: g10/gpg.c:3329 #, 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:3321 +#: g10/gpg.c:3340 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:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [dosyaismi]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [dosyaismi]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, 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:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [dosyaismi]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [dosyaismi]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 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:3379 +#: g10/gpg.c:3398 #, 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:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [dosyaismi]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosyaismi]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [dosyaismi]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 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:3430 +#: g10/gpg.c:3449 #, 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:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [DOSYA]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [dosyaismi]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [dosyaismi]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key kullanıcı-kimliği" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key kullanıcı-kimliği" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key kullanıcı-kimliği [komutlar]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, 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:3604 +#: g10/gpg.c:3623 #, 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:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "anahtar ihracı başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "anahtar sunucusunda arama başarısız: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "anahtar sunucusunda tazeleme başarısız: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "zırhın kaldırılması başarısız: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "zırhlama başarısız: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "`%s' çittirim algoritması geçersiz\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[dosyaismi]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "İletinizi yazın ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "belirtilen sertifika güvence adresi geçersiz\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "belirtilen imza güvence adresi geçersiz\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "belirtilen anahtar sunucusu adresi geçersiz\n" @@ -2959,22 +2959,22 @@ msgstr "BİLGİ: asıl anahtar kart üzerinde saklı ve kullanılabilir\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "BİLGİ: ikincil anahtar kart üzerinde saklı ve kullanılabilir\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "`%s' anahtarlığı oluşturulurken hata: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "`%s' anahtarlığı oluşturuldu\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "anahtar bloku özkaynağı `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "anahtarlık arabelleği yeniden oluşturulurken hata: %s\n" @@ -5997,12 +5997,12 @@ msgstr "`%s' için okuma hatası: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "güvence veritabanı: eşzamanlama başarısız: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "güvence veritabanı %lu kaydı: erişim başarısız: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "güvence veritabanı %lu kaydı: yazma başarısız (n=%d): %s\n" @@ -6016,112 +6016,112 @@ msgstr "güvence veritabanı işlemi çok uzun\n" msgid "can't access `%s': %s\n" msgstr "'%s' erişilemiyor: %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: dizin yok!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "`%s' için kilit oluşturulamıyor\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "`%s' kiltlenemedi\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: sürüm kaydı oluşturmada başarısız: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: geçersiz güvence veritabanı oluşturuldu\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: güvence veritabanı oluşturuldu\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "BİLGİ: güvence veritabanına yazılamıyor\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: güvence veritabanı geçersiz\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: çittirim tablosu oluşturulamadı: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: sürüm kaydının güncellenmesinde hata: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: sürüm kaydının okunmasında hata: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: sürüm kaydının yazılmasında hata: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "güvence veritabanı: erişim başarısız: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "güvence veritabanı: okuma başarısız (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: bir güvence veritabanı dosyası değil\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: %lu kayıt numarası ile sürüm kaydı\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: dosya sürümü %d geçersiz\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: serbest kaydı okuma hatası: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: dizin kaydını yazma hatası: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: kayıt sıfırlama başarısız: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: kayıt ekleme başarısız: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "" "güvence veritabanı bozulmuş; lütfen \"gpg --fix-trustdb\" çalıştırın.\n" @@ -6666,18 +6666,18 @@ msgstr "" "Sözdizimi: scdaemon [seçenekler] [komut [arg ...]]\n" "GnuPG için akıllı kart artalan süreci\n" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 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:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "fd %d için eylemci başlatıldı\n" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "fd %d için eylemci sonlandı\n" @@ -6687,6 +6687,11 @@ msgstr "fd %d için eylemci sonlandı\n" msgid "invalid radix64 character %02x skipped\n" msgstr "geçersiz radix64 karakteri %02x atlandı\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6710,11 +6715,11 @@ msgstr "dirmngr'a bağlanılamıyor - son çareye başvuruluyor\n" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6723,221 +6728,236 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "kritik sertifika eklentisi %s desteklenmiyor" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "sertifikacı onu bir CA gibi imlememiş" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "yapılandırılmış poliçeler olmaksızın kritik imli poliçe" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, c-format msgid "failed to open `%s': %s\n" msgstr "`%s' açılamadı: %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "bilgi: kritik olmayan sertifika poliçesine izin verilmez" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 msgid "certificate policy not allowed" msgstr "sertifika poliçesine izin verilmiyor" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "harici bir sertifikacı arar\n" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "eşleşen sertifikacı sayısı: %d\n" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +#, fuzzy +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "harici bir sertifikacı arar\n" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "sertifika ithal edilirken hata: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "anahtar gölgelenemedi: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 msgid "failed to allocated keyDB handle\n" msgstr "ayrılmış anahtar veritabanı elde edilemedi: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 msgid "certificate has been revoked" msgstr "sertifika yürürlükten kaldırılmıştı" -#: sm/certchain.c:752 +#: sm/certchain.c:836 msgid "no CRL found for certificate" msgstr "sertifika için bir CRL yok" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 msgid "the available CRL is too old" msgstr "mevcut CRL çok eski" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "\"dirmngr\"'ın düzgün olarak kurulu olduğundan lütfen emin olunuz\n" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, c-format msgid "checking the CRL failed: %s" msgstr "CRL sınaması başarısız: %s" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "geçersiz doğrulukla sertifika: %s" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "sertifika henüz geçersiz" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "sertifika henüz geçersiz" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "sertifika henüz geçersiz" -#: sm/certchain.c:829 +#: sm/certchain.c:913 msgid "certificate has expired" msgstr "sertifika kullanım süresi dolmuş" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "sertifika kullanım süresi dolmuş" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "sertifika kullanım süresi dolmuş" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "geçersiz doğrulukla sertifika: %s" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 #, fuzzy msgid "signature not created during lifetime of certificate" msgstr "güvenilir kök sertifika listesinin okunmasında hata\n" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " temizlenen imzalar: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "Yürürlükten kaldırma sertifikası üretildi.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "sertifika henüz geçersiz" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " Kart seri no. =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, c-format msgid "fingerprint=%s\n" msgstr "parmakizi=%s\n" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "kök sertifika artık güvenilir olarak imlenmiş oldu\n" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "güvenilir olarak etkileşimli imleme gpg-agent'ta etkin değil\n" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "güvenilir olarak etkileşimli imleme bu oturum için iptal edildi\n" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 msgid "no issuer found in certificate" msgstr "sertifikacı kim belli değil" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "öz-imzalı sertifika KÖTÜ bir imzaya sahip" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "kök sertifika güvenilir olarak imli değil" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, c-format msgid "checking the trust list failed: %s\n" msgstr "güvence listesinin sınanması başarısız: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "sertifika zinciri çok uzun\n" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "sertifikacı belli değil" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 msgid "certificate has a BAD signature" msgstr "sertifika KÖTÜ bir imzaya sahip" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "başka bir eşleşmesi olası CA sertifikası var - tekrar deneniyor" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "sertifika zinciri CA tarafından izin verilenden uzun (%d)" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "sertifika zinciri çok uzun\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "yinelenmiş sertifika `%s' silindi\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "kök sertifika güvenilir olarak imli değil" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7793,7 +7813,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "OCSP için yapılandırma" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index c44bf7e3f..81f6a362d 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: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2006-07-02 10:58+0800\n" "Last-Translator: Meng Jie \n" "Language-Team: Chinese (simplified) \n" @@ -19,18 +19,18 @@ msgstr "" "X-Poedit-SourceCharset: iso-8859-1\n" "X-Poedit-Basepath: d:\\msys\\source\\gnupg-1.4.3\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "无法存储指纹:%s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -39,7 +39,7 @@ msgstr "请输入密码:这是一个秘密的句子 \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "有效性:%s" @@ -50,45 +50,45 @@ msgstr "有效性:%s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "列太长" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "列太长" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "姓名含有无效的字符\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "损坏的多精度整数(MPI)" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "错误的密码" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "错误的密码" @@ -100,18 +100,18 @@ msgstr "不支持保护散列 %d\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "无法建立‘%s’:%s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -412,18 +412,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "注意:没有默认配置文件‘%s’\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "配置文件‘%s’:%s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "从‘%s’读取选项\n" @@ -436,16 +436,16 @@ msgstr "建立‘%s’时发生错误:%s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "无法建立‘%s’:%s\n" @@ -460,22 +460,22 @@ msgstr "" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent 在此次舍话中无法使用\n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "获取新 PIN 时出错:%s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在‘%s’中寻找信任度记录时出错:%s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失败:%s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在将私钥写至`%s'\n" @@ -495,7 +495,7 @@ msgstr "fstat(%d) 在 %s 中出错:%s\n" msgid "can't use `%s' as home directory\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "读取‘%s’时出错:%s\n" @@ -520,12 +520,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私钥失败:%s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s:已跳过:%s\n" @@ -713,43 +713,43 @@ msgstr "更改密码" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "生成密码的时候发生错误:%s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "无法打开有签名的数据‘%s’\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "读取‘%s’时出错:%s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "取得当前密钥信息时出错:%s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "读取‘%s’时出错:%s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "读取‘%s’时出错:%s\n" @@ -791,17 +791,17 @@ msgstr "用户取消\n" msgid "problem with the agent\n" msgstr "代理程序有问题――正在停用代理程序\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "无法禁用核心内存转储:%s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "警告:扩展模块‘%s’所有权不安全\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "警告:扩展模块‘%s’权限不安全\n" @@ -973,24 +973,24 @@ msgstr "证书已损坏" msgid "Included certificates" msgstr "证书已损坏" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "未知的版本" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "‘%s’没有可用的帮助" @@ -1105,7 +1105,7 @@ msgstr "找不到有效的 OpenPGP 数据。\n" msgid "not human readable" msgstr "" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP 卡不可用:%s\n" @@ -1115,153 +1115,153 @@ msgstr "OpenPGP 卡不可用:%s\n" msgid "OpenPGP card no. %s detected\n" msgstr "检测到 OpenPGP 卡号 %s\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "在批处理模式中无法完成此操作\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "您的选择? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[未设定]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "男性" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "女性" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "未定义" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "可选" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "必须" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "错误:目前只允许使用 ASCII 字符。\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "错误:不能使用字符“<”。\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "错误:不允许出现两个空格。\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "卡持有人的姓:" -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "卡持有人的名:" -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "错误:合成的姓名太长(至多 %d 个字符)。\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "获取公钥的 URL:" -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "错误:URL 太长(至多 %d 个字符)\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "读取‘%s’时出错:%s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr "登录数据(帐号名):" -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "错误:登录数据太长(至多 %d 个字符)。\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "个人 DO 数据:" -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "错误:个人 DO 太长(至多 %d 个字符)。\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "首选语言:" -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "错误:首选项字符串长度无效。\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "错误:首选项字符串里有无效字符。\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "性别(男性输入 M,女性输入 F,不指定输入空格):" -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "错误:无效的响应。\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "CA 指纹:" -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "错误:指纹格式无效。\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "针对密钥的操作无法实现:%s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "不是一个 OpenPGP 卡" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "取得当前密钥信息时出错:%s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "替换已有的密钥?(y/N)" -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "是否为加密密钥创建卡外的备份?(Y/n)" -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "替换已有的密钥?(y/N)" -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1272,120 +1272,120 @@ msgstr "" " PIN = ‘%s’ 管理员 PIN = ‘%s’\n" "您应当使用 --change-pin 命令来更改它们\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "请选择您要使用的密钥种类:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) 签名密钥\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) 加密密钥\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) 认证密钥\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "无效的选择。\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "请选择在哪里存储密钥:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "不支持的密钥保护算法\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "私钥部分不可用\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "私钥已存储在卡上\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "离开这个菜单" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "显示管理员命令" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "显示这份在线说明" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "列出所有可用数据" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "更改卡持有人的姓名" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "更改获取密钥的 URL" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "根据卡中指定的 URL 获取密钥" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "更改登录名" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "更改首选语言首选" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "更改卡持有人的性别" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "更改一个 CA 指纹" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "设定 PIN 签名是否必须" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "生成新的密钥" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "更改或解锁 PIN 的菜单" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "验证 PIN 并列出所有数据" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "命令> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "仅供管理员使用的命令\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "允许使用管理员命令\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "不允许使用管理员命令\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "无效的指令(尝试“help”)\n" @@ -1393,7 +1393,7 @@ msgstr "无效的指令(尝试“help”)\n" msgid "--output doesn't work for this command\n" msgstr "--output 在这个命令中不起作用\n" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "无法打开‘%s’\n" @@ -2064,400 +2064,400 @@ msgstr "列出密钥时显示钥匙环的名称" msgid "show expiration dates during signature listings" msgstr "列出签名时显示过期日期" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "注意:旧式的默认配置文件‘%s’已被忽略\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "注意:一般情况下不会用到 %s!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "‘%s’不是一个有效的签名过期日期\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "‘%s’不是一个有效的字符集\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "无法解析公钥服务器 URL\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d:无效的公钥服务器选项\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "无效的公钥服务器选项\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d:无效的导入选项\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "无效的导入选项\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d:无效的导出选项\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "无效的导出选项\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d:无效的列表选项\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "无效的列表选项\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "验证签名时显示照片标识" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "验证签名时显示策略 URL" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 msgid "show all notations during signature verification" msgstr "验证签名时显示所有注记" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "验证签名时显示 IETF 标准注记" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "验证签名时显示用户提供的注记" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 msgid "show preferred keyserver URLs during signature verification" msgstr "验证签名时显示首选公钥服务器 URL" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 msgid "show user ID validity during signature verification" msgstr "验证签名时显示用户标识的有效性" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "使用 PKA 数据验证签名的有效性" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "提升带有有效 PKA 数据的签名的信任度" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d:无效的校验选项\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "无效的校验选项\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "无法把运行路径设成 %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d:无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "警告:程序可能会创建核心内存转储!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告:%s 会使得 %s 失效\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不可与 %s 并用\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 与 %s 并用无意义!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "不会在内存不安全的情况下运行,原因是 %s\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "您只有在 --pgp2 模式下才能做分离式或明文签名\n" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "您在 --pgp2 模式下时,不能同时签名和加密\n" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "启用 --pgp2 时您应该只使用文件,而非管道\n" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密报文需要 IDEA 算法\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "所选的对称加密算法无效\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "所选的散列算法无效\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "所选的压缩算法无效\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "所选的证书散列算法无效\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "需要的完全可信签名数一定要大于 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "需要的勉强可信签名数一定要大于 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "最大验证深度一定要介于 1 和 255 之间\n" -#: g10/gpg.c:3095 +#: g10/gpg.c:3114 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "无效的默认验证级别;一定要是 0,1,2 或 3\n" -#: g10/gpg.c:3097 +#: g10/gpg.c:3116 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "无效的最小验证级别;一定要是 1,2 或 3\n" -#: g10/gpg.c:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "注意:强烈不建议使用简单的 S2K 模式(0)\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "无效的 S2K 模式;必须是 0,1 或 3\n" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "无效的默认首选项\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "无效的个人对称加密算法首选项\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "无效的个人散列算法首选项\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "无效的个人压缩算法首选项\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 尚不能和 %s 并用\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’对称加密算法\n" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’散列算法\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’压缩算法\n" -#: g10/gpg.c:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "初始化信任度数据库失败:%s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告:给定了收件人(-r)但并未使用公钥加密\n" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [文件名]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [文件名]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "对称加密‘%s’失败:%s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [文件名]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [文件名]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric -encrypt\n" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [文件名]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [文件名]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [文件名]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --sign --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric --sign -encrypt\n" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [文件名]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [文件名]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [文件名]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key 用户标识" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key 用户标识" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key 用户标识 [指令]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "上传至公钥服务器失败:%s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "从公钥服务器接收失败:%s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "导出密钥失败:%s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "搜寻公钥服务器失败:%s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "从公钥服务器更新失败:%s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "解开 ASCII 封装失败:%s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "进行 ASCII 封装失败:%s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "无效的‘%s’散列算法\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[文件名]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "请开始键入您的报文……\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "给定的的验证策略 URL 无效\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "给定的签名策略 URL 无效\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "给定的首选公钥服务器 URL 无效\n" @@ -2937,22 +2937,22 @@ msgstr "注意:主钥在线,存储在卡上\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "注意:子钥在线,存储在卡上\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "建立钥匙环‘%s’时发生错误:%s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "钥匙环‘%s’已建立\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "密钥块资源‘%s’:%s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "重新建立钥匙环缓存失败: %s\n" @@ -5849,12 +5849,12 @@ msgstr "读取‘%s’错误:%s\n" msgid "trustdb: sync failed: %s\n" msgstr "信任度数据库:同步失败:%s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "信任度数据库记录 %lu:lseek 失败:%s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "信任度数据库记录 %lu:write 失败 (n=%d): %s\n" @@ -5868,112 +5868,112 @@ msgstr "信任度数据库处理量过大\n" msgid "can't access `%s': %s\n" msgstr "无法存取‘%s’:%s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s:目录不存在!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "不能为‘%s’创建锁定\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "无法锁定‘%s’\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s:建立版本记录失败:%s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s:建立了无效的信任度数据库\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s:建立了信任度数据库\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "注意:信任度数据库不可写入\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s:无效的信任度数据库\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s:建立散列表失败:%s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s:更新版本记录时出错: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s:读取版本记录时出错: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s:写入版本记录时出错:%s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "信任度数据库:lseek 失败:%s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "信任度数据库:read 失败(n=%d):%s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s:不是一个信任度数据库文件\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s:记录编号为%lu的版本记录\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s:无效的文件版本%d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s:读取自由记录时出错:%s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s:写入目录记录时出错:%s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s:记录归零时失败:%s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s:附加记录时失败:%s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "信任度数据库已损坏;请执行“gpg --fix-trustdb”。\n" @@ -6515,16 +6515,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6534,6 +6534,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "跳过无效的 64 进制字符 %02x\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6558,11 +6563,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6571,227 +6576,241 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "不支持 gpg-agent 协议版本 %d\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "无法打开‘%s’:%s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "不允许导出私钥\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "生成密码的时候发生错误:%s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "无法读出公钥:%s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "无法存储密钥:%s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "注意:密钥已被吊销" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "证书已损坏" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "可用的密钥在:" -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "检查已建立的签名时发生错误: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "不允许导出私钥\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "这把密钥已经过期!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "这把密钥已经过期!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "这把密钥已经过期!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "这把密钥已经过期!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " 清除的签名:%lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "已建立吊销证书。\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "证书已损坏" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr "卡序列号 =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "CA 指纹:" -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "生成一份吊销证书" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "检查已建立的签名时发生错误: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "验证签名" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "首选项‘%s’重复\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "已建立吊销证书。\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "证书已损坏" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7667,7 +7686,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index ddc7f5d7d..5938d6e38 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2008-01-22 12:45+0100\n" +"POT-Creation-Date: 2008-02-14 17:27+0100\n" "PO-Revision-Date: 2005-07-29 09:49+0800\n" "Last-Translator: Jedi \n" "Language-Team: Chinese (traditional) \n" @@ -17,18 +17,18 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: agent/call-pinentry.c:205 +#: agent/call-pinentry.c:223 #, fuzzy, c-format msgid "failed to acquire the pinentry lock: %s\n" msgstr "存放指紋失敗: %s\n" -#: agent/call-pinentry.c:548 +#: agent/call-pinentry.c:592 msgid "" "Please enter your PIN, so that the secret key can be unlocked for this " "session" msgstr "" -#: agent/call-pinentry.c:551 +#: agent/call-pinentry.c:595 #, fuzzy msgid "" "Please enter your passphrase, so that the secret key can be unlocked for " @@ -37,7 +37,7 @@ msgstr "請輸入密語; 這是一個秘密的句子 \n" #. TRANSLATORS: This string is displayed by pinentry as the #. label for the quality bar. -#: agent/call-pinentry.c:586 +#: agent/call-pinentry.c:630 #, fuzzy msgid "Quality:" msgstr "有效性: %s" @@ -48,45 +48,45 @@ msgstr "有效性: %s" #. length of the tooltip is limited to about 900 characters. #. If you do not translate this entry, a default english #. text (see source) will be used. -#: agent/call-pinentry.c:609 +#: agent/call-pinentry.c:653 msgid "pinentry.qualitybar.tooltip" msgstr "" -#: agent/call-pinentry.c:651 +#: agent/call-pinentry.c:695 #, c-format msgid "SETERROR %s (try %d of %d)" msgstr "" -#: agent/call-pinentry.c:671 agent/call-pinentry.c:683 +#: agent/call-pinentry.c:715 agent/call-pinentry.c:727 #, fuzzy msgid "PIN too long" msgstr "列太長" -#: agent/call-pinentry.c:672 +#: agent/call-pinentry.c:716 #, fuzzy msgid "Passphrase too long" msgstr "列太長" -#: agent/call-pinentry.c:680 +#: agent/call-pinentry.c:724 #, fuzzy msgid "Invalid characters in PIN" msgstr "姓名含有無效的字符\n" -#: agent/call-pinentry.c:685 +#: agent/call-pinentry.c:729 msgid "PIN too short" msgstr "" -#: agent/call-pinentry.c:697 +#: agent/call-pinentry.c:741 #, fuzzy msgid "Bad PIN" msgstr "損壞的 MPI" -#: agent/call-pinentry.c:698 +#: agent/call-pinentry.c:742 #, fuzzy msgid "Bad Passphrase" msgstr "錯誤的密語" -#: agent/call-pinentry.c:734 +#: agent/call-pinentry.c:778 #, fuzzy msgid "Passphrase" msgstr "錯誤的密語" @@ -98,18 +98,18 @@ msgstr "保護摘要 %d 未被支援\n" #: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1057 g10/keygen.c:3155 #: g10/keygen.c:3188 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 -#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:536 +#: g10/openfile.c:368 g10/sign.c:800 g10/sign.c:1109 g10/tdbio.c:547 #, c-format msgid "can't create `%s': %s\n" msgstr "無法建立 `%s': %s\n" -#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:680 -#: g10/card-util.c:749 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 +#: agent/command-ssh.c:700 common/helpfile.c:47 g10/card-util.c:682 +#: g10/card-util.c:751 g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 #: g10/encode.c:194 g10/encode.c:504 g10/gpg.c:1058 g10/import.c:193 #: g10/keygen.c:2644 g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:782 g10/sign.c:977 g10/sign.c:1093 -#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 +#: g10/sign.c:1249 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:551 +#: g10/tdbio.c:614 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1972 #: sm/gpgsm.c:2009 sm/gpgsm.c:2047 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" @@ -408,18 +408,18 @@ msgstr "" msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:621 g10/gpg.c:2039 scd/scdaemon.c:423 sm/gpgsm.c:969 +#: agent/gpg-agent.c:621 g10/gpg.c:2057 scd/scdaemon.c:423 sm/gpgsm.c:969 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "請注意: 沒有預設選項檔 `%s'\n" -#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2043 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2061 #: scd/scdaemon.c:428 sm/gpgsm.c:973 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "選項檔 `%s': %s\n" -#: agent/gpg-agent.c:634 g10/gpg.c:2050 scd/scdaemon.c:436 sm/gpgsm.c:980 +#: agent/gpg-agent.c:634 g10/gpg.c:2068 scd/scdaemon.c:436 sm/gpgsm.c:980 #, c-format msgid "reading options from `%s'\n" msgstr "從 `%s' 讀取選項\n" @@ -432,16 +432,16 @@ msgstr "建立 `%s' 時發生錯誤: %s\n" #: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 #: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 -#: g10/openfile.c:429 scd/scdaemon.c:921 +#: g10/openfile.c:429 scd/scdaemon.c:923 #, c-format msgid "can't create directory `%s': %s\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:937 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:960 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "無法建立 `%s': %s\n" @@ -456,22 +456,22 @@ msgstr "" msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent 在此階段無法使用\n" -#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:980 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "取得新的個人識別碼 (PIN) 時出錯: %s\n" -#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:983 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在 `%s' 中尋找信任記錄時出錯: %s\n" -#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:992 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失敗: %s\n" -#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:999 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在將私鑰寫至 `%s'\n" @@ -491,7 +491,7 @@ msgstr "fstat(%d) 失敗於 %s: %s\n" msgid "can't use `%s' as home directory\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "讀取 `%s' 時發生錯誤: %s\n" @@ -516,12 +516,12 @@ msgstr "" msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1137 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私鑰失敗: %s\n" -#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1204 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: 已跳過: %s\n" @@ -709,43 +709,43 @@ msgstr "更改密語" msgid "I'll change it later" msgstr "" -#: common/exechelp.c:371 common/exechelp.c:459 tools/gpgconf-comp.c:1338 +#: common/exechelp.c:378 common/exechelp.c:467 tools/gpgconf-comp.c:1338 #: tools/gpgconf-comp.c:1661 #, fuzzy, c-format msgid "error creating a pipe: %s\n" msgstr "建立密語的時候發生錯誤: %s\n" -#: common/exechelp.c:435 common/exechelp.c:492 +#: common/exechelp.c:443 common/exechelp.c:500 #, fuzzy, c-format msgid "can't fdopen pipe for reading: %s\n" msgstr "無法開啟被簽署過的資料 `%s'\n" -#: common/exechelp.c:471 common/exechelp.c:599 common/exechelp.c:834 +#: common/exechelp.c:479 common/exechelp.c:607 common/exechelp.c:842 #, fuzzy, c-format msgid "error forking process: %s\n" msgstr "讀取 `%s' 時發生錯誤: %s\n" -#: common/exechelp.c:645 common/exechelp.c:698 +#: common/exechelp.c:653 common/exechelp.c:706 #, c-format msgid "waiting for process %d to terminate failed: %s\n" msgstr "" -#: common/exechelp.c:653 +#: common/exechelp.c:661 #, fuzzy, c-format msgid "error getting exit code of process %d: %s\n" msgstr "取得現用金鑰資訊時發生錯誤: %s\n" -#: common/exechelp.c:659 common/exechelp.c:709 +#: common/exechelp.c:667 common/exechelp.c:717 #, fuzzy, c-format msgid "error running `%s': exit status %d\n" msgstr "讀取 `%s' 時發生錯誤: %s\n" -#: common/exechelp.c:704 +#: common/exechelp.c:712 #, c-format msgid "error running `%s': probably not installed\n" msgstr "" -#: common/exechelp.c:717 +#: common/exechelp.c:725 #, fuzzy, c-format msgid "error running `%s': terminated\n" msgstr "讀取 `%s' 時發生錯誤: %s\n" @@ -787,17 +787,17 @@ msgstr "由使用者取消了\n" msgid "problem with the agent\n" msgstr "代理程式的問題 - 正在停用代理程式\n" -#: common/sysutils.c:104 +#: common/sysutils.c:105 #, c-format msgid "can't disable core dumps: %s\n" msgstr "無法讓系統停止傾印核心檔: %s\n" -#: common/sysutils.c:199 +#: common/sysutils.c:200 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "警告: 延伸模組 `%s' 的所有權並不安全\n" -#: common/sysutils.c:231 +#: common/sysutils.c:232 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "警告: 延伸模組 `%s' 的權限並不安全\n" @@ -969,24 +969,24 @@ msgstr "損壞的憑證" msgid "Included certificates" msgstr "損壞的憑證" -#: common/audit.c:965 +#: common/audit.c:968 msgid "No audit log entries." msgstr "" -#: common/audit.c:1014 +#: common/audit.c:1017 #, fuzzy msgid "Unknown operation" msgstr "未知的版本" -#: common/audit.c:1032 +#: common/audit.c:1035 msgid "Gpg-Agent usable" msgstr "" -#: common/audit.c:1042 +#: common/audit.c:1045 msgid "Dirmngr usable" msgstr "" -#: common/audit.c:1078 +#: common/audit.c:1081 #, fuzzy, c-format msgid "No help available for `%s'." msgstr "`%s' 沒有可用的說明" @@ -1100,7 +1100,7 @@ msgstr "警告: 找到無效的標記資料\n" msgid "not human readable" msgstr "不是人類能讀得懂的" -#: g10/card-util.c:62 g10/card-util.c:308 +#: g10/card-util.c:62 g10/card-util.c:310 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "沒有可用的 OpenPGP 卡片: %s\n" @@ -1110,153 +1110,153 @@ msgstr "沒有可用的 OpenPGP 卡片: %s\n" msgid "OpenPGP card no. %s detected\n" msgstr "偵測到 OpenPGP 卡片編號 %s\n" -#: g10/card-util.c:75 g10/card-util.c:1394 g10/delkey.c:126 g10/keyedit.c:1529 +#: g10/card-util.c:75 g10/card-util.c:1396 g10/delkey.c:126 g10/keyedit.c:1529 #: g10/keygen.c:2831 g10/revoke.c:216 g10/revoke.c:455 msgid "can't do this in batch mode\n" msgstr "無法在批次模式中這樣做\n" -#: g10/card-util.c:102 g10/card-util.c:1127 g10/card-util.c:1206 +#: g10/card-util.c:102 g10/card-util.c:1129 g10/card-util.c:1208 #: g10/keyedit.c:424 g10/keyedit.c:445 g10/keyedit.c:459 g10/keygen.c:1591 #: g10/keygen.c:1658 sm/certreqgen-ui.c:128 sm/certreqgen-ui.c:182 msgid "Your selection? " msgstr "妳要選哪一個? " -#: g10/card-util.c:218 g10/card-util.c:268 +#: g10/card-util.c:220 g10/card-util.c:270 msgid "[not set]" msgstr "[未設定]" -#: g10/card-util.c:415 +#: g10/card-util.c:417 msgid "male" msgstr "男性" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "female" msgstr "女性" -#: g10/card-util.c:416 +#: g10/card-util.c:418 msgid "unspecified" msgstr "未特定" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "not forced" msgstr "不強迫使用" -#: g10/card-util.c:443 +#: g10/card-util.c:445 msgid "forced" msgstr "強迫使用" -#: g10/card-util.c:521 +#: g10/card-util.c:523 msgid "Error: Only plain ASCII is currently allowed.\n" msgstr "錯誤: 目前祇允許使用單純的 ASCII 字元.\n" -#: g10/card-util.c:523 +#: g10/card-util.c:525 msgid "Error: The \"<\" character may not be used.\n" msgstr "錯誤: 不能使用 \"<\" 字元.\n" -#: g10/card-util.c:525 +#: g10/card-util.c:527 msgid "Error: Double spaces are not allowed.\n" msgstr "錯誤: 並不允許使用連續兩個以上的空格.\n" -#: g10/card-util.c:542 +#: g10/card-util.c:544 msgid "Cardholder's surname: " msgstr "卡片持有者的姓氏: " -#: g10/card-util.c:544 +#: g10/card-util.c:546 msgid "Cardholder's given name: " msgstr "卡片持有者的教名: " -#: g10/card-util.c:562 +#: g10/card-util.c:564 #, c-format msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "錯誤: 合併後的名字太長 (上限是 %d 個字元).\n" -#: g10/card-util.c:583 +#: g10/card-util.c:585 msgid "URL to retrieve public key: " msgstr "取回公鑰的 URL: " -#: g10/card-util.c:591 +#: g10/card-util.c:593 #, c-format msgid "Error: URL too long (limit is %d characters).\n" msgstr "錯誤: URL 太長 (上限是 %d 個字元).\n" -#: g10/card-util.c:689 g10/card-util.c:758 g10/import.c:283 +#: g10/card-util.c:691 g10/card-util.c:760 g10/import.c:283 #, c-format msgid "error reading `%s': %s\n" msgstr "讀取 `%s' 時發生錯誤: %s\n" -#: g10/card-util.c:697 +#: g10/card-util.c:699 msgid "Login data (account name): " msgstr " 登入資料 (帳號名稱): " -#: g10/card-util.c:707 +#: g10/card-util.c:709 #, c-format msgid "Error: Login data too long (limit is %d characters).\n" msgstr "錯誤: 登入資料太長 (上限是 %d 個字元).\n" -#: g10/card-util.c:766 +#: g10/card-util.c:768 msgid "Private DO data: " msgstr "私人的 DO 資料: " -#: g10/card-util.c:776 +#: g10/card-util.c:778 #, c-format msgid "Error: Private DO too long (limit is %d characters).\n" msgstr "錯誤: 私人的 DO 太長 (上限是 %d 個字元).\n" -#: g10/card-util.c:796 +#: g10/card-util.c:798 msgid "Language preferences: " msgstr "介面語言偏好設定: " -#: g10/card-util.c:804 +#: g10/card-util.c:806 msgid "Error: invalid length of preference string.\n" msgstr "錯誤: 偏好設定字串的長度無效\n" -#: g10/card-util.c:813 +#: g10/card-util.c:815 msgid "Error: invalid characters in preference string.\n" msgstr "錯誤: 偏好設定字串中含有無效的字元\n" -#: g10/card-util.c:834 +#: g10/card-util.c:836 msgid "Sex ((M)ale, (F)emale or space): " msgstr "性別 ((M)ale, (F)emale 或留空): " -#: g10/card-util.c:848 +#: g10/card-util.c:850 msgid "Error: invalid response.\n" msgstr "錯誤: 無效的回應.\n" -#: g10/card-util.c:869 +#: g10/card-util.c:871 msgid "CA fingerprint: " msgstr "憑證中心 (CA) 指紋: " -#: g10/card-util.c:892 +#: g10/card-util.c:894 msgid "Error: invalid formatted fingerprint.\n" msgstr "錯誤: 指紋格式化無效.\n" -#: g10/card-util.c:940 +#: g10/card-util.c:942 #, c-format msgid "key operation not possible: %s\n" msgstr "不可能進行金鑰操作: %s\n" -#: g10/card-util.c:941 +#: g10/card-util.c:943 msgid "not an OpenPGP card" msgstr "這不是 OpenPGP 卡片" -#: g10/card-util.c:950 +#: g10/card-util.c:952 #, c-format msgid "error getting current key info: %s\n" msgstr "取得現用金鑰資訊時發生錯誤: %s\n" -#: g10/card-util.c:1034 +#: g10/card-util.c:1036 msgid "Replace existing key? (y/N) " msgstr "是否要取代既有的金鑰? (y/N) " -#: g10/card-util.c:1054 g10/card-util.c:1063 +#: g10/card-util.c:1056 g10/card-util.c:1065 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "是否要為加密用金鑰建立卡外備份? (Y/n) " -#: g10/card-util.c:1075 +#: g10/card-util.c:1077 msgid "Replace existing keys? (y/N) " msgstr "是否要取代既有的金鑰? (y/N) " -#: g10/card-util.c:1084 +#: g10/card-util.c:1086 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -1267,120 +1267,120 @@ msgstr "" " PIN = `%s' 管理者 (Admin) PIN = `%s'\n" "妳應該用 --change-pin 指令來加以變更\n" -#: g10/card-util.c:1118 +#: g10/card-util.c:1120 msgid "Please select the type of key to generate:\n" msgstr "請選擇妳要產生的金鑰種類:\n" -#: g10/card-util.c:1120 g10/card-util.c:1197 +#: g10/card-util.c:1122 g10/card-util.c:1199 msgid " (1) Signature key\n" msgstr " (1) 簽署用金鑰\n" -#: g10/card-util.c:1121 g10/card-util.c:1199 +#: g10/card-util.c:1123 g10/card-util.c:1201 msgid " (2) Encryption key\n" msgstr " (2) 加密用金鑰\n" -#: g10/card-util.c:1122 g10/card-util.c:1201 +#: g10/card-util.c:1124 g10/card-util.c:1203 msgid " (3) Authentication key\n" msgstr " (3) 憑證用金鑰\n" -#: g10/card-util.c:1138 g10/card-util.c:1217 g10/keyedit.c:945 +#: g10/card-util.c:1140 g10/card-util.c:1219 g10/keyedit.c:945 #: g10/keygen.c:1595 g10/keygen.c:1623 g10/keygen.c:1697 g10/revoke.c:685 msgid "Invalid selection.\n" msgstr "無效的選擇.\n" -#: g10/card-util.c:1194 +#: g10/card-util.c:1196 msgid "Please select where to store the key:\n" msgstr "請選擇要把金鑰存放在哪裡:\n" -#: g10/card-util.c:1229 +#: g10/card-util.c:1231 msgid "unknown key protection algorithm\n" msgstr "未知的金鑰保護演算法\n" -#: g10/card-util.c:1234 +#: g10/card-util.c:1236 msgid "secret parts of key are not available\n" msgstr "私鑰部分無法取用\n" -#: g10/card-util.c:1239 +#: g10/card-util.c:1241 msgid "secret key already stored on a card\n" msgstr "私鑰已經存放於卡片上了\n" -#: g10/card-util.c:1307 g10/keyedit.c:1362 +#: g10/card-util.c:1309 g10/keyedit.c:1362 msgid "quit this menu" msgstr "離開這個選單" -#: g10/card-util.c:1309 +#: g10/card-util.c:1311 msgid "show admin commands" msgstr "顯示管理者指令" -#: g10/card-util.c:1310 g10/keyedit.c:1365 +#: g10/card-util.c:1312 g10/keyedit.c:1365 msgid "show this help" msgstr "顯示這份線上說明" -#: g10/card-util.c:1312 +#: g10/card-util.c:1314 msgid "list all available data" msgstr "列出所有可用的資料" -#: g10/card-util.c:1315 +#: g10/card-util.c:1317 msgid "change card holder's name" msgstr "變更卡片持有人的名字" -#: g10/card-util.c:1316 +#: g10/card-util.c:1318 msgid "change URL to retrieve key" msgstr "變更要取回金鑰的 URL" -#: g10/card-util.c:1317 +#: g10/card-util.c:1319 msgid "fetch the key specified in the card URL" msgstr "從卡片 URL 取回指定的金鑰" -#: g10/card-util.c:1318 +#: g10/card-util.c:1320 msgid "change the login name" msgstr "變更登入姓名" -#: g10/card-util.c:1319 +#: g10/card-util.c:1321 msgid "change the language preferences" msgstr "變更介面語言偏好設定" -#: g10/card-util.c:1320 +#: g10/card-util.c:1322 msgid "change card holder's sex" msgstr "變更卡片持有者的性別" -#: g10/card-util.c:1321 +#: g10/card-util.c:1323 msgid "change a CA fingerprint" msgstr "變更某個憑證中心 (CA) 指紋" -#: g10/card-util.c:1322 +#: g10/card-util.c:1324 msgid "toggle the signature force PIN flag" msgstr "切換簽章強制個人識別碼 (PIN) 的旗標" -#: g10/card-util.c:1323 +#: g10/card-util.c:1325 msgid "generate new keys" msgstr "產生新的金鑰" -#: g10/card-util.c:1324 +#: g10/card-util.c:1326 msgid "menu to change or unblock the PIN" msgstr "變更或解凍個人識別碼 (PIN) 的選單" -#: g10/card-util.c:1325 +#: g10/card-util.c:1327 msgid "verify the PIN and list all data" msgstr "驗證個人識別碼 (PIN) 並列出所有的資料" -#: g10/card-util.c:1445 g10/keyedit.c:1634 +#: g10/card-util.c:1447 g10/keyedit.c:1634 msgid "Command> " msgstr "指令> " -#: g10/card-util.c:1483 +#: g10/card-util.c:1485 msgid "Admin-only command\n" msgstr "限管理者使用的指令\n" -#: g10/card-util.c:1514 +#: g10/card-util.c:1516 msgid "Admin commands are allowed\n" msgstr "允許使用管理者指令\n" -#: g10/card-util.c:1516 +#: g10/card-util.c:1518 msgid "Admin commands are not allowed\n" msgstr "未允許使用管理者指令\n" -#: g10/card-util.c:1590 g10/keyedit.c:2255 +#: g10/card-util.c:1592 g10/keyedit.c:2255 msgid "Invalid command (try \"help\")\n" msgstr "無效的指令 (試試看 \"help\")\n" @@ -1388,7 +1388,7 @@ msgstr "無效的指令 (試試看 \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output 在這個命令中沒有作用\n" -#: g10/decrypt.c:166 g10/gpg.c:3907 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3926 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "無法開啟 `%s'\n" @@ -2065,403 +2065,403 @@ msgstr "在私鑰清單和公鑰清單間切換" msgid "show expiration dates during signature listings" msgstr "在私鑰圈裡沒有一致的簽章\n" -#: g10/gpg.c:1839 -#, c-format -msgid "libgcrypt is too old (need %s, have %s)\n" -msgstr "" - -#: g10/gpg.c:1997 +#: g10/gpg.c:1805 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "請注意: 舊有的預設選項檔 `%s' 已被忽略\n" -#: g10/gpg.c:2257 g10/gpg.c:2931 g10/gpg.c:2943 +#: g10/gpg.c:1896 +#, c-format +msgid "libgcrypt is too old (need %s, have %s)\n" +msgstr "" + +#: g10/gpg.c:2275 g10/gpg.c:2950 g10/gpg.c:2962 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "請注意: 一般情況下不會用到 %s!\n" -#: g10/gpg.c:2438 g10/gpg.c:2450 +#: g10/gpg.c:2456 g10/gpg.c:2468 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2532 +#: g10/gpg.c:2550 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' 不是一個有效的字元集\n" -#: g10/gpg.c:2555 g10/gpg.c:2750 g10/keyedit.c:4085 +#: g10/gpg.c:2573 g10/gpg.c:2768 g10/keyedit.c:4085 msgid "could not parse keyserver URL\n" msgstr "無法剖析金鑰伺服器 URI\n" -#: g10/gpg.c:2567 +#: g10/gpg.c:2585 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: 無效的金鑰伺服器選項\n" -#: g10/gpg.c:2570 +#: g10/gpg.c:2588 msgid "invalid keyserver options\n" msgstr "無效的金鑰伺服器選項\n" -#: g10/gpg.c:2577 +#: g10/gpg.c:2595 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: 無效的匯入選項\n" -#: g10/gpg.c:2580 +#: g10/gpg.c:2598 msgid "invalid import options\n" msgstr "無效的匯入選項\n" -#: g10/gpg.c:2587 +#: g10/gpg.c:2605 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: 無效的匯出選項\n" -#: g10/gpg.c:2590 +#: g10/gpg.c:2608 msgid "invalid export options\n" msgstr "無效的匯出選項\n" -#: g10/gpg.c:2597 +#: g10/gpg.c:2615 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: 無效的清單選項\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2618 msgid "invalid list options\n" msgstr "無效的清單選項\n" -#: g10/gpg.c:2608 +#: g10/gpg.c:2626 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2610 +#: g10/gpg.c:2628 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2612 +#: g10/gpg.c:2630 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2614 +#: g10/gpg.c:2632 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2618 +#: g10/gpg.c:2636 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2620 +#: g10/gpg.c:2638 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "給定的偏好金鑰伺服器 URL 無效\n" -#: g10/gpg.c:2622 +#: g10/gpg.c:2640 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2624 +#: g10/gpg.c:2642 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2626 +#: g10/gpg.c:2644 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2628 +#: g10/gpg.c:2646 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2630 +#: g10/gpg.c:2648 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2637 +#: g10/gpg.c:2655 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:2640 +#: g10/gpg.c:2658 msgid "invalid verify options\n" msgstr "無效的驗證選項\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2665 #, c-format msgid "unable to set exec-path to %s\n" msgstr "無法把執行檔路徑設成 %s\n" -#: g10/gpg.c:2822 +#: g10/gpg.c:2840 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:2825 +#: g10/gpg.c:2843 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2920 sm/gpgsm.c:1369 +#: g10/gpg.c:2939 sm/gpgsm.c:1369 msgid "WARNING: program may create a core file!\n" msgstr "警告: 程式可能會傾印出核心檔!\n" -#: g10/gpg.c:2924 +#: g10/gpg.c:2943 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告: %s 會使得 %s 失效\n" -#: g10/gpg.c:2933 +#: g10/gpg.c:2952 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不被允許跟 %s 併用\n" -#: g10/gpg.c:2936 +#: g10/gpg.c:2955 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 跟 %s 放在一起沒有意義!\n" -#: g10/gpg.c:2951 +#: g10/gpg.c:2970 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "因為 %s 而不會在不安全的記憶體中執行\n" -#: g10/gpg.c:2965 +#: g10/gpg.c:2984 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "妳祇有在 --pgp2 模式下纔能做出分離式或明文簽章\n" -#: g10/gpg.c:2971 +#: g10/gpg.c:2990 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "妳在 --pgp2 模式下時, 不能同時簽署和加密\n" -#: g10/gpg.c:2977 +#: g10/gpg.c:2996 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "啟用 --pgp2 時妳祇應該使用檔案, 而非管道\n" -#: g10/gpg.c:2990 +#: g10/gpg.c:3009 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密訊息需要 IDEA 編密法\n" -#: g10/gpg.c:3056 g10/gpg.c:3080 sm/gpgsm.c:1441 +#: g10/gpg.c:3075 g10/gpg.c:3099 sm/gpgsm.c:1441 msgid "selected cipher algorithm is invalid\n" msgstr "所選的編密演算法無效\n" -#: g10/gpg.c:3062 g10/gpg.c:3086 sm/gpgsm.c:1449 sm/gpgsm.c:1455 +#: g10/gpg.c:3081 g10/gpg.c:3105 sm/gpgsm.c:1449 sm/gpgsm.c:1455 msgid "selected digest algorithm is invalid\n" msgstr "所選的摘要演算法無效\n" -#: g10/gpg.c:3068 +#: g10/gpg.c:3087 msgid "selected compression algorithm is invalid\n" msgstr "所選的壓縮演算法無效\n" -#: g10/gpg.c:3074 +#: g10/gpg.c:3093 msgid "selected certification digest algorithm is invalid\n" msgstr "所選的憑證摘要演算法無效\n" -#: g10/gpg.c:3089 +#: g10/gpg.c:3108 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 一定要大於 0\n" -#: g10/gpg.c:3091 +#: g10/gpg.c:3110 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 一定要大於 1\n" -#: g10/gpg.c:3093 +#: g10/gpg.c:3112 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 一定要介於 1 和 255 之間\n" -#: g10/gpg.c:3095 +#: g10/gpg.c:3114 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:3097 +#: g10/gpg.c:3116 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "無效的 min-cert-level; 一定要是 1, 2 或 3\n" -#: g10/gpg.c:3100 +#: g10/gpg.c:3119 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "請注意: 強烈不建議使用單純的 S2K 模式 (0)\n" -#: g10/gpg.c:3104 +#: g10/gpg.c:3123 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "無效的 S2K 模式; 一定要是 0, 1 或 3\n" -#: g10/gpg.c:3111 +#: g10/gpg.c:3130 msgid "invalid default preferences\n" msgstr "無效的預設偏好\n" -#: g10/gpg.c:3120 +#: g10/gpg.c:3139 msgid "invalid personal cipher preferences\n" msgstr "無效的個人編密法偏好\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3143 msgid "invalid personal digest preferences\n" msgstr "無效的個人摘要偏好\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3147 msgid "invalid personal compress preferences\n" msgstr "無效的個人壓縮偏好\n" -#: g10/gpg.c:3161 +#: g10/gpg.c:3180 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 還沒辦法跟 %s 一起運作\n" -#: g10/gpg.c:3208 +#: g10/gpg.c:3227 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "妳不該將編密演算法 `%s' 用於 %s 模式中\n" -#: g10/gpg.c:3213 +#: g10/gpg.c:3232 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "妳不該將摘要演算法 `%s' 用於 %s 模式中\n" -#: g10/gpg.c:3218 +#: g10/gpg.c:3237 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "妳不該將壓縮演算法 `%s' 用於 %s 模式中\n" -#: g10/gpg.c:3310 +#: g10/gpg.c:3329 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "信任資料庫啟始失敗: %s\n" -#: g10/gpg.c:3321 +#: g10/gpg.c:3340 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告: 給定的收件者 (-r) 未使用公鑰加密\n" -#: g10/gpg.c:3342 +#: g10/gpg.c:3361 msgid "--store [filename]" msgstr "--store [檔名]" -#: g10/gpg.c:3349 +#: g10/gpg.c:3368 msgid "--symmetric [filename]" msgstr "--symmetric [檔名]" -#: g10/gpg.c:3351 +#: g10/gpg.c:3370 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "`%s' 的對稱式加密失敗: %s\n" -#: g10/gpg.c:3361 +#: g10/gpg.c:3380 msgid "--encrypt [filename]" msgstr "--encrypt [檔名]" -#: g10/gpg.c:3374 +#: g10/gpg.c:3393 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [檔名]" -#: g10/gpg.c:3376 +#: g10/gpg.c:3395 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "妳不能在 --s2k-mode 0 中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3379 +#: g10/gpg.c:3398 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "妳不能在 %s 模式中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3397 +#: g10/gpg.c:3416 msgid "--sign [filename]" msgstr "--sign [檔名]" -#: g10/gpg.c:3410 +#: g10/gpg.c:3429 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [檔名]" -#: g10/gpg.c:3425 +#: g10/gpg.c:3444 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [檔名]" -#: g10/gpg.c:3427 +#: g10/gpg.c:3446 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "妳不能在 --s2k-mode 0 中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3430 +#: g10/gpg.c:3449 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "妳不能在 %s 模式中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3450 +#: g10/gpg.c:3469 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [檔名]" -#: g10/gpg.c:3459 +#: g10/gpg.c:3478 msgid "--clearsign [filename]" msgstr "--clearsign [檔名]" -#: g10/gpg.c:3484 +#: g10/gpg.c:3503 msgid "--decrypt [filename]" msgstr "--decrypt [檔名]" -#: g10/gpg.c:3492 +#: g10/gpg.c:3511 msgid "--sign-key user-id" msgstr "--sign-key 使用者ID" -#: g10/gpg.c:3496 +#: g10/gpg.c:3515 msgid "--lsign-key user-id" msgstr "--lsign-key 使用者ID" -#: g10/gpg.c:3517 +#: g10/gpg.c:3536 msgid "--edit-key user-id [commands]" msgstr "--edit-key 使用者ID [指令]" -#: g10/gpg.c:3602 +#: g10/gpg.c:3621 #, c-format msgid "keyserver send failed: %s\n" msgstr "送至金鑰伺服器時失敗: %s\n" -#: g10/gpg.c:3604 +#: g10/gpg.c:3623 #, c-format msgid "keyserver receive failed: %s\n" msgstr "從金鑰伺服器接收時失敗: %s\n" -#: g10/gpg.c:3606 +#: g10/gpg.c:3625 #, c-format msgid "key export failed: %s\n" msgstr "金鑰匯出時失敗: %s\n" -#: g10/gpg.c:3617 +#: g10/gpg.c:3636 #, c-format msgid "keyserver search failed: %s\n" msgstr "從金鑰伺服器中搜尋時失敗: %s\n" -#: g10/gpg.c:3627 +#: g10/gpg.c:3646 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "從金鑰伺服器更新時失敗: %s\n" -#: g10/gpg.c:3678 +#: g10/gpg.c:3697 #, c-format msgid "dearmoring failed: %s\n" msgstr "解開封裝失敗: %s\n" -#: g10/gpg.c:3686 +#: g10/gpg.c:3705 #, c-format msgid "enarmoring failed: %s\n" msgstr "進行封裝失敗: %s\n" -#: g10/gpg.c:3776 +#: g10/gpg.c:3795 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "無效的 `%s' 雜湊演算法\n" -#: g10/gpg.c:3893 +#: g10/gpg.c:3912 msgid "[filename]" msgstr "[檔名]" -#: g10/gpg.c:3897 +#: g10/gpg.c:3916 msgid "Go ahead and type your message ...\n" msgstr "請開始鍵入妳的訊息 ...\n" -#: g10/gpg.c:4209 +#: g10/gpg.c:4228 msgid "the given certification policy URL is invalid\n" msgstr "給定的的憑證原則 URL 無效\n" -#: g10/gpg.c:4211 +#: g10/gpg.c:4230 msgid "the given signature policy URL is invalid\n" msgstr "給定的簽章原則 URL 無效\n" -#: g10/gpg.c:4244 +#: g10/gpg.c:4263 msgid "the given preferred keyserver URL is invalid\n" msgstr "給定的偏好金鑰伺服器 URL 無效\n" @@ -2944,22 +2944,22 @@ msgstr "請注意: 主鑰在線上且已存放於卡片上了\n" msgid "NOTE: secondary key is online and stored on card\n" msgstr "請注意: 次鑰在線上且已存放於卡片上了\n" -#: g10/keydb.c:168 +#: g10/keydb.c:181 #, c-format msgid "error creating keyring `%s': %s\n" msgstr "建立鑰匙圈 `%s' 時發生錯誤: %s\n" -#: g10/keydb.c:174 +#: g10/keydb.c:187 #, c-format msgid "keyring `%s' created\n" msgstr "鑰匙圈 `%s' 已建立\n" -#: g10/keydb.c:315 g10/keydb.c:318 +#: g10/keydb.c:328 g10/keydb.c:331 #, c-format msgid "keyblock resource `%s': %s\n" msgstr "金鑰區塊資源 `%s': %s\n" -#: g10/keydb.c:697 +#: g10/keydb.c:710 #, c-format msgid "failed to rebuild keyring cache: %s\n" msgstr "重新建立鑰匙圈快取失敗: %s\n" @@ -5880,12 +5880,12 @@ msgstr "讀取 `%s' 錯誤: %s\n" msgid "trustdb: sync failed: %s\n" msgstr "信任資料庫: 同步化失敗: %s\n" -#: g10/tdbio.c:128 g10/tdbio.c:1437 +#: g10/tdbio.c:128 g10/tdbio.c:1448 #, c-format msgid "trustdb rec %lu: lseek failed: %s\n" msgstr "信任資料庫記錄 %lu: 本地搜尋失敗: %s\n" -#: g10/tdbio.c:135 g10/tdbio.c:1444 +#: g10/tdbio.c:135 g10/tdbio.c:1455 #, c-format msgid "trustdb rec %lu: write failed (n=%d): %s\n" msgstr "信任資料庫記錄 %lu: 寫入失敗 (n=%d): %s\n" @@ -5899,112 +5899,112 @@ msgstr "信任資料庫更動量過大\n" msgid "can't access `%s': %s\n" msgstr "無法存取 `%s': %s\n" -#: g10/tdbio.c:513 +#: g10/tdbio.c:524 #, c-format msgid "%s: directory does not exist!\n" msgstr "%s: 目錄不存在!\n" -#: g10/tdbio.c:523 g10/tdbio.c:546 g10/tdbio.c:587 sm/keydb.c:221 +#: g10/tdbio.c:534 g10/tdbio.c:557 g10/tdbio.c:598 sm/keydb.c:221 #, c-format msgid "can't create lock for `%s'\n" msgstr "無法為 `%s' 建立鎖定\n" -#: g10/tdbio.c:525 g10/tdbio.c:590 +#: g10/tdbio.c:536 g10/tdbio.c:601 #, c-format msgid "can't lock `%s'\n" msgstr "無法鎖定 `%s'\n" -#: g10/tdbio.c:551 +#: g10/tdbio.c:562 #, c-format msgid "%s: failed to create version record: %s" msgstr "%s: 建立版本記錄失敗: %s" -#: g10/tdbio.c:555 +#: g10/tdbio.c:566 #, c-format msgid "%s: invalid trustdb created\n" msgstr "%s: 建立了無效的信任資料庫\n" -#: g10/tdbio.c:558 +#: g10/tdbio.c:569 #, c-format msgid "%s: trustdb created\n" msgstr "%s: 建立了信任資料庫\n" -#: g10/tdbio.c:600 +#: g10/tdbio.c:611 msgid "NOTE: trustdb not writable\n" msgstr "請注意: 信任資料庫不可寫入\n" -#: g10/tdbio.c:608 +#: g10/tdbio.c:619 #, c-format msgid "%s: invalid trustdb\n" msgstr "%s: 無效的信任資料庫\n" -#: g10/tdbio.c:640 +#: g10/tdbio.c:651 #, c-format msgid "%s: failed to create hashtable: %s\n" msgstr "%s: 建立雜湊表失敗: %s\n" -#: g10/tdbio.c:648 +#: g10/tdbio.c:659 #, c-format msgid "%s: error updating version record: %s\n" msgstr "%s: 更新版本記錄時錯誤: %s\n" -#: g10/tdbio.c:665 g10/tdbio.c:685 g10/tdbio.c:701 g10/tdbio.c:715 -#: g10/tdbio.c:745 g10/tdbio.c:1369 g10/tdbio.c:1396 +#: g10/tdbio.c:676 g10/tdbio.c:696 g10/tdbio.c:712 g10/tdbio.c:726 +#: g10/tdbio.c:756 g10/tdbio.c:1380 g10/tdbio.c:1407 #, c-format msgid "%s: error reading version record: %s\n" msgstr "%s: 讀取版本記錄時錯誤: %s\n" -#: g10/tdbio.c:724 +#: g10/tdbio.c:735 #, c-format msgid "%s: error writing version record: %s\n" msgstr "%s: 寫入版本記錄時錯誤: %s\n" -#: g10/tdbio.c:1164 +#: g10/tdbio.c:1175 #, c-format msgid "trustdb: lseek failed: %s\n" msgstr "信任資料庫: 本地搜尋失敗: %s\n" -#: g10/tdbio.c:1173 +#: g10/tdbio.c:1184 #, c-format msgid "trustdb: read failed (n=%d): %s\n" msgstr "信任資料庫: 讀取失敗 (n=%d): %s\n" -#: g10/tdbio.c:1194 +#: g10/tdbio.c:1205 #, c-format msgid "%s: not a trustdb file\n" msgstr "%s: 不是一個信任資料庫檔案\n" -#: g10/tdbio.c:1212 +#: g10/tdbio.c:1223 #, c-format msgid "%s: version record with recnum %lu\n" msgstr "%s: 記錄編號為 %lu 的版本記錄\n" -#: g10/tdbio.c:1217 +#: g10/tdbio.c:1228 #, c-format msgid "%s: invalid file version %d\n" msgstr "%s: 無效的檔案版本 %d\n" -#: g10/tdbio.c:1402 +#: g10/tdbio.c:1413 #, c-format msgid "%s: error reading free record: %s\n" msgstr "%s: 讀取自由記錄時錯誤: %s\n" -#: g10/tdbio.c:1410 +#: g10/tdbio.c:1421 #, c-format msgid "%s: error writing dir record: %s\n" msgstr "%s: 寫入目錄記錄時錯誤: %s\n" -#: g10/tdbio.c:1420 +#: g10/tdbio.c:1431 #, c-format msgid "%s: failed to zero a record: %s\n" msgstr "%s: 記錄歸零時失敗: %s\n" -#: g10/tdbio.c:1450 +#: g10/tdbio.c:1461 #, c-format msgid "%s: failed to append a record: %s\n" msgstr "%s: 附加某筆記錄時失敗: %s\n" -#: g10/tdbio.c:1495 +#: g10/tdbio.c:1506 msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n" msgstr "信任資料庫損毀了; 請執行 \"gpg --fix-trustdb\".\n" @@ -6543,16 +6543,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:668 +#: scd/scdaemon.c:670 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1022 +#: scd/scdaemon.c:1024 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1028 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6562,6 +6562,11 @@ msgstr "" msgid "invalid radix64 character %02x skipped\n" msgstr "無效的 64 進位字符 %02x 被跳過了\n" +#: sm/call-agent.c:136 +#, c-format +msgid "failed to proxy %s inquiry to client\n" +msgstr "" + #: sm/call-dirmngr.c:209 #, c-format msgid "no running dirmngr - starting `%s'\n" @@ -6586,11 +6591,11 @@ msgstr "" msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:195 sm/certchain.c:1648 +#: sm/certchain.c:195 sm/certchain.c:1732 msgid "chain" msgstr "" -#: sm/certchain.c:196 sm/certchain.c:1648 +#: sm/certchain.c:196 sm/certchain.c:1732 msgid "shell" msgstr "" @@ -6599,227 +6604,241 @@ msgstr "" msgid "critical certificate extension %s is not supported" msgstr "gpg-agent 協定版本 %d 未被支援\n" -#: sm/certchain.c:279 +#: sm/certchain.c:280 msgid "issuer certificate is not marked as a CA" msgstr "" -#: sm/certchain.c:317 +#: sm/certchain.c:318 msgid "critical marked policy without configured policies" msgstr "" -#: sm/certchain.c:327 +#: sm/certchain.c:328 #, fuzzy, c-format msgid "failed to open `%s': %s\n" msgstr "無法開啟 `%s': %s\n" -#: sm/certchain.c:334 sm/certchain.c:363 +#: sm/certchain.c:335 sm/certchain.c:364 msgid "note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:338 sm/certchain.c:367 +#: sm/certchain.c:339 sm/certchain.c:368 #, fuzzy msgid "certificate policy not allowed" msgstr "未被允許匯出私鑰\n" -#: sm/certchain.c:478 +#: sm/certchain.c:480 msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:498 +#: sm/certchain.c:499 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:651 sm/certchain.c:1069 sm/certchain.c:1676 sm/decrypt.c:259 +#: sm/certchain.c:541 +msgid "looking up issuer from the Dirmngr cache\n" +msgstr "" + +#: sm/certchain.c:565 +#, fuzzy, c-format +msgid "number of matching certificates: %d\n" +msgstr "建立密語的時候發生錯誤: %s\n" + +#: sm/certchain.c:567 +#, fuzzy, c-format +msgid "dirmngr cache-only key lookup failed: %s\n" +msgstr "讀取公鑰時失敗: %s\n" + +#: sm/certchain.c:735 sm/certchain.c:1153 sm/certchain.c:1760 sm/decrypt.c:259 #: sm/encrypt.c:349 sm/sign.c:327 sm/verify.c:113 #, fuzzy msgid "failed to allocated keyDB handle\n" msgstr "存放金鑰失敗: %s\n" -#: sm/certchain.c:742 +#: sm/certchain.c:826 #, fuzzy msgid "certificate has been revoked" msgstr "請注意: 金鑰已經被撤銷了" -#: sm/certchain.c:752 +#: sm/certchain.c:836 #, fuzzy msgid "no CRL found for certificate" msgstr "損壞的憑證" -#: sm/certchain.c:757 +#: sm/certchain.c:841 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:762 +#: sm/certchain.c:846 #, fuzzy msgid "the available CRL is too old" msgstr "可用的金鑰於: " -#: sm/certchain.c:764 +#: sm/certchain.c:848 msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:770 +#: sm/certchain.c:854 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "檢查已建立的簽章時發生錯誤: %s\n" -#: sm/certchain.c:799 sm/certchain.c:867 +#: sm/certchain.c:883 sm/certchain.c:951 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:814 sm/certchain.c:899 +#: sm/certchain.c:898 sm/certchain.c:983 msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:815 sm/certchain.c:900 +#: sm/certchain.c:899 sm/certchain.c:984 #, fuzzy msgid "root certificate not yet valid" msgstr "未被允許匯出私鑰\n" -#: sm/certchain.c:816 sm/certchain.c:901 +#: sm/certchain.c:900 sm/certchain.c:985 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:829 +#: sm/certchain.c:913 #, fuzzy msgid "certificate has expired" msgstr "這把金鑰已經過期了!" -#: sm/certchain.c:830 +#: sm/certchain.c:914 #, fuzzy msgid "root certificate has expired" msgstr "這把金鑰已經過期了!" -#: sm/certchain.c:831 +#: sm/certchain.c:915 #, fuzzy msgid "intermediate certificate has expired" msgstr "這把金鑰已經過期了!" -#: sm/certchain.c:873 +#: sm/certchain.c:957 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:882 +#: sm/certchain.c:966 #, fuzzy msgid "certificate with invalid validity" msgstr "這把金鑰已經過期了!" -#: sm/certchain.c:919 +#: sm/certchain.c:1003 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:921 +#: sm/certchain.c:1005 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:922 +#: sm/certchain.c:1006 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:926 +#: sm/certchain.c:1010 #, fuzzy msgid " ( signature created at " msgstr " 已被清除掉的簽章: %lu\n" -#: sm/certchain.c:927 +#: sm/certchain.c:1011 #, fuzzy msgid " (certificate created at " msgstr "已建立撤銷憑證.\n" -#: sm/certchain.c:930 +#: sm/certchain.c:1014 #, fuzzy msgid " (certificate valid from " msgstr "損壞的憑證" -#: sm/certchain.c:931 +#: sm/certchain.c:1015 #, fuzzy msgid " ( issuer valid from " msgstr " 卡片序號 =" -#: sm/certchain.c:961 +#: sm/certchain.c:1045 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "憑證中心 (CA) 指紋: " -#: sm/certchain.c:970 +#: sm/certchain.c:1054 msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:983 +#: sm/certchain.c:1067 msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:989 +#: sm/certchain.c:1073 msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1046 +#: sm/certchain.c:1130 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1110 +#: sm/certchain.c:1194 #, fuzzy msgid "no issuer found in certificate" msgstr "產生一份撤銷憑證" -#: sm/certchain.c:1186 +#: sm/certchain.c:1270 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1255 +#: sm/certchain.c:1339 msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1268 +#: sm/certchain.c:1352 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "檢查已建立的簽章時發生錯誤: %s\n" -#: sm/certchain.c:1297 sm/import.c:158 +#: sm/certchain.c:1381 sm/import.c:158 msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1309 +#: sm/certchain.c:1393 msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1342 +#: sm/certchain.c:1426 #, fuzzy msgid "certificate has a BAD signature" msgstr "驗證某份簽章" -#: sm/certchain.c:1373 +#: sm/certchain.c:1457 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1424 +#: sm/certchain.c:1508 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1464 sm/certchain.c:1747 +#: sm/certchain.c:1548 sm/certchain.c:1831 #, fuzzy msgid "certificate is good\n" msgstr "偏好設定 `%s' 重複了\n" -#: sm/certchain.c:1465 +#: sm/certchain.c:1549 #, fuzzy msgid "intermediate certificate is good\n" msgstr "已建立撤銷憑證.\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1550 #, fuzzy msgid "root certificate is good\n" msgstr "損壞的憑證" -#: sm/certchain.c:1637 +#: sm/certchain.c:1721 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:1646 +#: sm/certchain.c:1730 #, c-format msgid "validation model used: %s" msgstr "" @@ -7695,7 +7714,7 @@ msgstr "" msgid "Configuration for OCSP" msgstr "" -#: tools/gpgconf-comp.c:3026 +#: tools/gpgconf-comp.c:3037 msgid "Note that group specifications are ignored\n" msgstr "" diff --git a/sm/ChangeLog b/sm/ChangeLog index 2ba2ee3b2..8f348a5f2 100644 --- a/sm/ChangeLog +++ b/sm/ChangeLog @@ -1,3 +1,16 @@ +2008-02-14 Werner Koch + + * server.c (option_handler): Add option allow-pinentry-notify. + (gpgsm_proxy_pinentry_notify): New. + * call-agent.c (default_inq_cb): New. + (gpgsm_agent_pksign, gpgsm_scd_pksign, gpgsm_agent_readkey) + (gpgsm_agent_istrusted, gpgsm_agent_marktrusted) + (gpgsm_agent_passwd, gpgsm_agent_get_confirmation): Call it. + (struct cipher_parm_s, struct genkey_parm_s): Add field CTRL. + (inq_ciphertext_cb): Test keyword and fallback to default_inq_cb. + (inq_genkey_parms): Ditto. + (start_agent): Tell agent to send us the pinentry notifications. + 2008-02-13 Werner Koch * call-dirmngr.c (gpgsm_dirmngr_lookup): Add arg CACHE_ONLY. diff --git a/sm/call-agent.c b/sm/call-agent.c index e0461d95f..625ca9d6e 100644 --- a/sm/call-agent.c +++ b/sm/call-agent.c @@ -1,6 +1,6 @@ -/* call-agent.c - divert operations to the agent - * Copyright (C) 2001, 2002, 2003, 2005, - * 2007 Free Software Foundation, Inc. +/* call-agent.c - Divert GPGSM operations to the agent + * Copyright (C) 2001, 2002, 2003, 2005, 2007, + * 2008 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -44,6 +44,7 @@ static assuan_context_t agent_ctx = NULL; struct cipher_parm_s { + ctrl_t ctrl; assuan_context_t ctx; const unsigned char *ciphertext; size_t ciphertextlen; @@ -51,6 +52,7 @@ struct cipher_parm_s struct genkey_parm_s { + ctrl_t ctrl; assuan_context_t ctx; const unsigned char *sexp; size_t sexplen; @@ -78,15 +80,27 @@ start_agent (ctrl_t ctrl) serialize the access to the agent (which is suitable given that the agent is not MT. */ else - rc = start_new_gpg_agent (&agent_ctx, - GPG_ERR_SOURCE_DEFAULT, - opt.homedir, - opt.agent_program, - opt.display, opt.ttyname, opt.ttytype, - opt.lc_ctype, opt.lc_messages, - opt.xauthority, opt.pinentry_user_data, - opt.verbose, DBG_ASSUAN, - gpgsm_status2, ctrl); + { + rc = start_new_gpg_agent (&agent_ctx, + GPG_ERR_SOURCE_DEFAULT, + opt.homedir, + opt.agent_program, + opt.display, opt.ttyname, opt.ttytype, + opt.lc_ctype, opt.lc_messages, + opt.xauthority, opt.pinentry_user_data, + opt.verbose, DBG_ASSUAN, + gpgsm_status2, ctrl); + + if (!rc) + { + /* Tell the agent that we support Pinentry notifications. No + error checking so that it will work also with older + agents. */ + assuan_transact (agent_ctx, "OPTION allow-pinentry-notify", + NULL, NULL, NULL, NULL, NULL, NULL); + } + } + if (!ctrl->agent_seen) { ctrl->agent_seen = 1; @@ -109,6 +123,29 @@ membuf_data_cb (void *opaque, const void *buffer, size_t length) } +/* This is the default inquiry callback. It mainly handles the + Pinentry notifications. */ +static int +default_inq_cb (void *opaque, const char *line) +{ + gpg_error_t err; + ctrl_t ctrl = opaque; + + if (!strncmp (line, "PINENTRY_LAUNCHED", 17) && (line[17]==' '||!line[17])) + { + err = gpgsm_proxy_pinentry_notify (ctrl, line); + if (err) + log_error (_("failed to proxy %s inquiry to client\n"), + "PINENTRY_LAUNCHED"); + /* We do not pass errors to avoid breaking other code. */ + } + else + log_error ("ignoring gpg-agent inquiry `%s'\n", line); + + return 0; +} + + /* Call the agent to do a sign operation using the key identified by @@ -161,7 +198,8 @@ gpgsm_agent_pksign (ctrl_t ctrl, const char *keygrip, const char *desc, init_membuf (&data, 1024); rc = assuan_transact (agent_ctx, "PKSIGN", - membuf_data_cb, &data, NULL, NULL, NULL, NULL); + membuf_data_cb, &data, default_inq_cb, ctrl, + NULL, NULL); if (rc) { xfree (get_membuf (&data, &len)); @@ -225,7 +263,8 @@ gpgsm_scd_pksign (ctrl_t ctrl, const char *keyid, const char *desc, snprintf (line, DIM(line)-1, "SCD PKSIGN %s %s", hashopt, keyid); line[DIM(line)-1] = 0; rc = assuan_transact (agent_ctx, line, - membuf_data_cb, &data, NULL, NULL, NULL, NULL); + membuf_data_cb, &data, default_inq_cb, ctrl, + NULL, NULL); if (rc) { xfree (get_membuf (&data, &len)); @@ -262,14 +301,20 @@ gpgsm_scd_pksign (ctrl_t ctrl, const char *keyid, const char *desc, /* Handle a CIPHERTEXT inquiry. Note, we only send the data, assuan_transact talkes care of flushing and writing the end */ static int -inq_ciphertext_cb (void *opaque, const char *keyword) +inq_ciphertext_cb (void *opaque, const char *line) { struct cipher_parm_s *parm = opaque; int rc; - assuan_begin_confidential (parm->ctx); - rc = assuan_send_data (parm->ctx, parm->ciphertext, parm->ciphertextlen); - assuan_end_confidential (parm->ctx); + if (!strncmp (line, "CIPHERTEXT", 10) && (line[10]==' '||!line[10])) + { + assuan_begin_confidential (parm->ctx); + rc = assuan_send_data (parm->ctx, parm->ciphertext, parm->ciphertextlen); + assuan_end_confidential (parm->ctx); + } + else + rc = default_inq_cb (parm->ctrl, line); + return rc; } @@ -323,6 +368,7 @@ gpgsm_agent_pkdecrypt (ctrl_t ctrl, const char *keygrip, const char *desc, } init_membuf (&data, 1024); + cipher_parm.ctrl = ctrl; cipher_parm.ctx = agent_ctx; cipher_parm.ciphertext = ciphertext; cipher_parm.ciphertextlen = ciphertextlen; @@ -377,12 +423,18 @@ gpgsm_agent_pkdecrypt (ctrl_t ctrl, const char *keygrip, const char *desc, /* Handle a KEYPARMS inquiry. Note, we only send the data, assuan_transact takes care of flushing and writing the end */ static int -inq_genkey_parms (void *opaque, const char *keyword) +inq_genkey_parms (void *opaque, const char *line) { struct genkey_parm_s *parm = opaque; int rc; - rc = assuan_send_data (parm->ctx, parm->sexp, parm->sexplen); + if (!strncmp (line, "KEYPARAM", 8) && (line[8]==' '||!line[8])) + { + rc = assuan_send_data (parm->ctx, parm->sexp, parm->sexplen); + } + else + rc = default_inq_cb (parm->ctrl, line); + return rc; } @@ -409,6 +461,7 @@ gpgsm_agent_genkey (ctrl_t ctrl, return rc; init_membuf (&data, 1024); + gk_parm.ctrl = ctrl; gk_parm.ctx = agent_ctx; gk_parm.sexp = keyparms; gk_parm.sexplen = gcry_sexp_canon_len (keyparms, 0, NULL, NULL); @@ -465,7 +518,7 @@ gpgsm_agent_readkey (ctrl_t ctrl, int fromcard, const char *hexkeygrip, init_membuf (&data, 1024); rc = assuan_transact (agent_ctx, line, membuf_data_cb, &data, - NULL, NULL, NULL, NULL); + default_inq_cb, ctrl, NULL, NULL); if (rc) { xfree (get_membuf (&data, &len)); @@ -568,7 +621,8 @@ gpgsm_agent_marktrusted (ctrl_t ctrl, ksba_cert_t cert) ksba_free (dn); xfree (fpr); - rc = assuan_transact (agent_ctx, line, NULL, NULL, NULL, NULL, NULL, NULL); + rc = assuan_transact (agent_ctx, line, NULL, NULL, + default_inq_cb, ctrl, NULL, NULL); return rc; } @@ -722,7 +776,8 @@ gpgsm_agent_passwd (ctrl_t ctrl, const char *hexkeygrip, const char *desc) snprintf (line, DIM(line)-1, "PASSWD %s", hexkeygrip); line[DIM(line)-1] = 0; - rc = assuan_transact (agent_ctx, line, NULL, NULL, NULL, NULL, NULL, NULL); + rc = assuan_transact (agent_ctx, line, NULL, NULL, + default_inq_cb, ctrl, NULL, NULL); return rc; } @@ -743,6 +798,7 @@ gpgsm_agent_get_confirmation (ctrl_t ctrl, const char *desc) snprintf (line, DIM(line)-1, "GET_CONFIRMATION %s", desc); line[DIM(line)-1] = 0; - rc = assuan_transact (agent_ctx, line, NULL, NULL, NULL, NULL, NULL, NULL); + rc = assuan_transact (agent_ctx, line, NULL, NULL, + default_inq_cb, ctrl, NULL, NULL); return rc; } diff --git a/sm/gpgsm.h b/sm/gpgsm.h index 5e7f3f33d..26a191f87 100644 --- a/sm/gpgsm.h +++ b/sm/gpgsm.h @@ -218,6 +218,8 @@ gpg_error_t gpgsm_status (ctrl_t ctrl, int no, const char *text); gpg_error_t gpgsm_status2 (ctrl_t ctrl, int no, ...); gpg_error_t gpgsm_status_with_err_code (ctrl_t ctrl, int no, const char *text, gpg_err_code_t ec); +gpg_error_t gpgsm_proxy_pinentry_notify (ctrl_t ctrl, + const unsigned char *line); /*-- fingerprint --*/ unsigned char *gpgsm_get_fingerprint (ksba_cert_t cert, int algo, diff --git a/sm/server.c b/sm/server.c index fbff003f8..e38d1764a 100644 --- a/sm/server.c +++ b/sm/server.c @@ -49,6 +49,8 @@ struct server_local_s { certlist_t recplist; certlist_t signerlist; certlist_t default_recplist; /* As set by main() - don't release. */ + int allow_pinentry_notify; /* Set if pinentry notifications should + be passed back to the client. */ }; @@ -292,6 +294,8 @@ option_handler (assuan_context_t ctx, const char *key, const char *value) int i = *value? atoi (value) : 0; ctrl->server_local->enable_audit_log = i; } + else if (!strcmp (key, "allow-pinentry-notify")) + ctrl->server_local->allow_pinentry_notify = 1; else return gpg_error (GPG_ERR_UNKNOWN_OPTION); @@ -299,8 +303,6 @@ option_handler (assuan_context_t ctx, const char *key, const char *value) } - - static void reset_notify (assuan_context_t ctx) { @@ -1284,3 +1286,18 @@ gpgsm_status_with_err_code (ctrl_t ctrl, int no, const char *text, return gpgsm_status2 (ctrl, no, buf, NULL); } + +/* Helper to notify the client about Pinentry events. Because that + might disturb some older clients, this is only done when enabled + via an option. Returns an gpg error code. */ +gpg_error_t +gpgsm_proxy_pinentry_notify (ctrl_t ctrl, const unsigned char *line) +{ + if (!ctrl || !ctrl->server_local + || !ctrl->server_local->allow_pinentry_notify) + return 0; + return assuan_inquire (ctrl->server_local->assuan_ctx, line, NULL, NULL, 0); +} + + +