aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2008-02-14 19:50:10 +0000
committerWerner Koch <[email protected]>2008-02-14 19:50:10 +0000
commit30a97e770cce0d6529058052cd78990ff08b84ad (patch)
tree626d2942172a8387a1cc00a1a9bce1e5bba1ad52
parentAlways search missing certifcates using a running Dirmngr's cache. (diff)
downloadgnupg-30a97e770cce0d6529058052cd78990ff08b84ad.tar.gz
gnupg-30a97e770cce0d6529058052cd78990ff08b84ad.zip
Poems for AllowSetForegroundWindow (W32)
-rw-r--r--agent/ChangeLog7
-rw-r--r--agent/call-pinentry.c44
-rw-r--r--agent/command.c24
-rw-r--r--common/ChangeLog5
-rw-r--r--common/sysutils.c17
-rw-r--r--common/sysutils.h1
-rw-r--r--g10/ChangeLog10
-rw-r--r--g10/call-agent.c96
-rw-r--r--po/be.po601
-rw-r--r--po/ca.po608
-rw-r--r--po/cs.po605
-rw-r--r--po/da.po605
-rw-r--r--po/de.po606
-rw-r--r--po/el.po605
-rw-r--r--po/eo.po608
-rw-r--r--po/es.po608
-rw-r--r--po/et.po605
-rw-r--r--po/fi.po605
-rw-r--r--po/fr.po605
-rw-r--r--po/gl.po608
-rw-r--r--po/hu.po605
-rw-r--r--po/id.po605
-rw-r--r--po/it.po603
-rw-r--r--po/ja.po605
-rw-r--r--po/nb.po605
-rw-r--r--po/pl.po606
-rw-r--r--po/pt.po605
-rw-r--r--po/pt_BR.po608
-rw-r--r--po/ro.po605
-rw-r--r--po/ru.po605
-rw-r--r--po/sk.po605
-rw-r--r--po/sv.po606
-rw-r--r--po/tr.po606
-rw-r--r--po/zh_CN.po605
-rw-r--r--po/zh_TW.po605
-rw-r--r--sm/ChangeLog13
-rw-r--r--sm/call-agent.c104
-rw-r--r--sm/gpgsm.h2
-rw-r--r--sm/server.c21
39 files changed, 8715 insertions, 7977 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 <[email protected]>
+
+ * 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 <[email protected]>
* 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 <[email protected]>
+
+ * sysutils.c (gnupg_allow_set_foregound_window): New.
+ (WINVER) [W32]: Define.
+
2008-01-31 Werner Koch <[email protected]>
* 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 <sys/resource.h>
#endif
#ifdef HAVE_W32_SYSTEM
+# define WINVER 0x0500 /* Required for AllowSetForegroundWindow. */
# include <windows.h>
#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 <[email protected]>
+
+ * 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 <[email protected]>
* 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Belarusian <[email protected]>\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
+#: g10/card-util.c:1320
msgid "change the login name"
msgstr ""
-#: g10/card-util.c:1319
+#: g10/card-util.c:1321
#, fuzzy
msgid "change the language preferences"
msgstr "за шмат пераваг для \"%c\"\n"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "паказаць ключы й адбіткі пальцаў"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "стварыць новую пару ключоў"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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
#, 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
+#: g10/gpg.c:1805
#, c-format
-msgid "libgcrypt is too old (need %s, have %s)\n"
+msgid "NOTE: old default options file `%s' ignored\n"
msgstr ""
-#: g10/gpg.c:1997
+#: g10/gpg.c:1896
#, c-format
-msgid "NOTE: old default options file `%s' ignored\n"
+msgid "libgcrypt is too old (need %s, have %s)\n"
msgstr ""
-#: 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 ""
-#: 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "mostra empremta"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "genera un nou parell de claus"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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: [email protected]\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 <[email protected]>\n"
"Language-Team: Czech <[email protected]>\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 "ulo�en� fingerprintu se nezda�ilo: %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�m, vlo�te heslo; toto je tajn� v�ta \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 "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 p��li� dlouh�"
-#: agent/call-pinentry.c:672
+#: agent/call-pinentry.c:716
#, fuzzy
msgid "Passphrase too long"
msgstr "��dek je p��li� dlouh�"
-#: agent/call-pinentry.c:680
+#: agent/call-pinentry.c:724
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Neplatn� znak ve jm�n�\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� algoritmus %d nen� podporov�n\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 "nemohu vytvo�it `%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 "POZN�MKA: neexistuje implicitn� soubor s mo�nostmi `%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 mo�nostmi `%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 mo�nosti z `%s'\n"
@@ -432,16 +432,16 @@ msgstr "chyba p�i vytv��en� `%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 "nemohu vytvo�it 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 vytvo�it `%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 p�i z�sk�n� nov�ho 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 p�i hled�n� z�znamu d�v�ryhodnosti 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 vytvo�it 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 p�i �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 tajn�ho kl��e 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: p�esko�eno: %s\n"
@@ -709,43 +709,43 @@ msgstr "zm�nit heslo"
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 p�i vytv��en� 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 otev��t 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 p�i �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 p�i z�sk�n� informac� o aktu�ln�m kl��i: %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 p�i �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 p�i �ten� `%s': %s\n"
@@ -787,18 +787,18 @@ msgstr "zru�eno u�ivatelem\n"
msgid "problem with the agent\n"
msgstr "probl�m s agentem - pou��v�n� agenta vypnuto\n"
-#: common/sysutils.c:104
+#: common/sysutils.c:105
#, c-format
msgid "can't disable core dumps: %s\n"
msgstr "nemohu vypnout vytv��en� core soubor�: %s\n"
-#: common/sysutils.c:199
+#: common/sysutils.c:200
#, fuzzy, c-format
msgid "Warning: unsafe ownership on %s \"%s\"\n"
msgstr ""
"VAROV�N�: vlastnictv� roz�i�uj�c�ho modulu nen� nastaveno bezpe�n� `%s'\n"
-#: common/sysutils.c:231
+#: common/sysutils.c:232
#, fuzzy, c-format
msgid "Warning: unsafe permissions on %s \"%s\"\n"
msgstr "VAROV�N�: p��stupov� pr�va roz�i�uj�c�mu modulu nejsou bezpe�n� `%s'\n"
@@ -970,24 +970,24 @@ msgstr "�patn� certifik�t"
msgid "Included certificates"
msgstr "�patn� certifik�t"
-#: 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 "nezn�m� 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�N�: nalezen neplatn� form�t z�pisu data\n"
msgid "not human readable"
msgstr "nen� v p��mo �iteln�m form�tu"
-#: 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� dostupn�: %s\n"
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 prov�st v d�vkov�m m�du\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� v�b�r? "
-#: 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� vy�adov�no"
-#: g10/card-util.c:443
+#: g10/card-util.c:445
msgid "forced"
msgstr "vy�adov�no"
-#: g10/card-util.c:521
+#: g10/card-util.c:523
msgid "Error: Only plain ASCII is currently allowed.\n"
msgstr "Chyba: V sou�asn� verzi je povolenou pouze plain ASCII.\n"
-#: g10/card-util.c:523
+#: g10/card-util.c:525
msgid "Error: The \"<\" character may not be used.\n"
msgstr "Chyba: Znak \"<\" nelze pou��t.\n"
-#: g10/card-util.c:525
+#: g10/card-util.c:527
msgid "Error: Double spaces are not allowed.\n"
msgstr "Chyba: V�ce mezer nen� povoleno.\n"
-#: g10/card-util.c:542
+#: g10/card-util.c:544
msgid "Cardholder's surname: "
msgstr "P��jmen� dr�itele karty: "
-#: g10/card-util.c:544
+#: g10/card-util.c:546
msgid "Cardholder's given name: "
msgstr "Jm�no (k�estn�) dr�itele 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: jm�no a p��jmen� je p��li� 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 z�sk�n� ve�ejn�ho kl��e: "
-#: 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 p��li� 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 p�i �ten� `%s': %s\n"
-#: g10/card-util.c:697
+#: g10/card-util.c:699
msgid "Login data (account name): "
msgstr "Login (jm�nu ��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 p��li� dlouh� (limit je %d znak�).\n"
-#: g10/card-util.c:766
+#: g10/card-util.c:768
msgid "Private DO data: "
msgstr "Priv�tn� 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: Priv�tn� DO je p��li� dlouh� (limit je %d znak�).\n"
-#: g10/card-util.c:796
+#: g10/card-util.c:798
msgid "Language preferences: "
msgstr "Jazykov� p�edvolby: "
-#: g10/card-util.c:804
+#: g10/card-util.c:806
msgid "Error: invalid length of preference string.\n"
msgstr "Chyba: neplatn� d�lka �etezce s p�edvolbami.\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
msgid "Error: invalid characters in preference string.\n"
msgstr "Chyba: neplatn� znak v �et�zci s p�edvolbami\n"
-#: g10/card-util.c:834
+#: g10/card-util.c:836
msgid "Sex ((M)ale, (F)emale or space): "
msgstr "Zadejte pohlav�: M - mu�sk�, F - �ensk� nebo stisn�te mezern�k: "
-#: g10/card-util.c: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: nespr�vn� naform�tovan� fingerprint.\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, c-format
msgid "key operation not possible: %s\n"
msgstr "operace s kl��em nen� mo�n�: %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 p�i z�sk�n� informac� o aktu�ln�m kl��i: %s\n"
-#: g10/card-util.c:1034
+#: g10/card-util.c:1036
msgid "Replace existing key? (y/N) "
msgstr "P�epsat existuj�c� 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 "Vytvo�it z�lohu �ifrovac�ho kl��e mimo kartu? (A/n) "
-#: g10/card-util.c:1075
+#: g10/card-util.c:1077
msgid "Replace existing keys? (y/N) "
msgstr "P�epsat existuj�c� kl��e? (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 administr�tora = `%s'\n"
"Toto nastaven� m��ete zm�nit p��kazem --change-pin\n"
-#: g10/card-util.c:1118
+#: g10/card-util.c:1120
msgid "Please select the type of key to generate:\n"
msgstr "Pros�m, vyberte druh kl��e, kter� chcete generovat:\n"
-#: g10/card-util.c: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) Autentiza�n� 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� v�b�r.\n"
-#: g10/card-util.c:1194
+#: g10/card-util.c:1196
msgid "Please select where to store the key:\n"
msgstr "Pros�m vyberte m�sto pro uchov�n� kl��e:\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
msgid "unknown key protection algorithm\n"
msgstr "nezn�m� algoritmus pro ochranu kl��e\n"
-#: g10/card-util.c:1234
+#: g10/card-util.c:1236
msgid "secret parts of key are not available\n"
msgstr "tajn� ��sti kl�e 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� ulo�en\n"
-#: g10/card-util.c:1307 g10/keyedit.c:1362
+#: g10/card-util.c:1309 g10/keyedit.c:1362
msgid "quit this menu"
msgstr "ukon�it toto menu"
-#: g10/card-util.c:1309
+#: g10/card-util.c:1311
msgid "show admin commands"
msgstr "zobraz administr�torsk� p��kazy"
-#: g10/card-util.c:1310 g10/keyedit.c:1365
+#: g10/card-util.c:1312 g10/keyedit.c:1365
msgid "show this help"
msgstr "uk�zat tuto pomoc"
-#: g10/card-util.c:1312
+#: g10/card-util.c:1314
msgid "list all available data"
msgstr "vypi� v�echna dostupn� data"
-#: g10/card-util.c:1315
+#: g10/card-util.c:1317
msgid "change card holder's name"
msgstr "zm�n� jm�no majitele karty"
-#: g10/card-util.c:1316
+#: g10/card-util.c:1318
msgid "change URL to retrieve key"
msgstr "zm�n� URL pro z�sk�n� kl��e"
-#: g10/card-util.c:1317
+#: g10/card-util.c:1319
msgid "fetch the key specified in the card URL"
msgstr "z�sk� kl�� specifikovan� v URL karty"
-#: g10/card-util.c:1318
+#: g10/card-util.c:1320
msgid "change the login name"
msgstr "zm�nit login name"
-#: g10/card-util.c:1319
+#: g10/card-util.c:1321
msgid "change the language preferences"
msgstr "zm�nit jazykov� p�edvolby"
-#: g10/card-util.c:1320
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr "zm�n� pohlav� dr�itele karty"
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
msgid "change a CA fingerprint"
msgstr "vypsat fingerprint certifika�n� autority"
-#: g10/card-util.c:1322
+#: g10/card-util.c:1324
msgid "toggle the signature force PIN flag"
msgstr "zapnout/vypnout po�adov�n� PINu p�i ka�d� self-sign operaci"
-#: g10/card-util.c:1323
+#: g10/card-util.c:1325
msgid "generate new keys"
msgstr "vytvo�it nov� p�r kl���"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr "nab�dka pro zm�nu anebo odblokov�n� PINu"
-#: g10/card-util.c:1325
+#: g10/card-util.c:1327
msgid "verify the PIN and list all data"
msgstr "ov�� PIN a vypi� v�echna data"
-#: g10/card-util.c:1445 g10/keyedit.c:1634
+#: g10/card-util.c:1447 g10/keyedit.c:1634
msgid "Command> "
msgstr "P��kaz> "
-#: g10/card-util.c:1483
+#: g10/card-util.c:1485
msgid "Admin-only command\n"
msgstr "pouze administr�torsk� p��kazy\n"
-#: g10/card-util.c:1514
+#: g10/card-util.c:1516
msgid "Admin commands are allowed\n"
msgstr "administr�torsk� p��kazy jsou povoleny\n"
-#: g10/card-util.c:1516
+#: g10/card-util.c:1518
msgid "Admin commands are not allowed\n"
msgstr "administr�torsk� p��kazy 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� p��kaz (zkuste \"help\")\n"
@@ -1393,7 +1393,7 @@ msgstr "Neplatn� p��kaz (zkuste \"help\")\n"
msgid "--output doesn't work for this command\n"
msgstr "--output pro tento p��kaz 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 otev��t `%s'\n"
@@ -2102,410 +2102,410 @@ msgstr "p�epnout mezi vypisem seznamu tajn�ch a ve�ejn�ch kl���"
msgid "show expiration dates during signature listings"
msgstr "V souboru tajn�ch kl��� chyb� odpov�daj�c� podpis\n"
-#: g10/gpg.c: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 "POZN�MKA: star� implicitn� soubor s mo�nostmi `%s ignorov�n'\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 "POZN�MKA: %s nen� pro norm�ln� pou�it�!\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 v�pis\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
msgid "invalid list options\n"
msgstr "neplatn� parametr pro v�pis\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 preferovan�ho 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 ov��en�\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
msgid "invalid verify options\n"
msgstr "neplatn� parametr pro ov��en�\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 ov��en�\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 "VAROV�N�: program m��e vytvo�it soubor core!\n"
-#: g10/gpg.c:2924
+#: g10/gpg.c:2943
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "VAROV�N�: %s p�ep��e %s\n"
-#: g10/gpg.c:2933
+#: g10/gpg.c:2952
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "Nen� dovoleno pou��vat %s s %s!\n"
-#: g10/gpg.c:2936
+#: g10/gpg.c:2955
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s ned�v� 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 nebezpe�nou pam�t� 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 m�du --pgp2 m��ete vytv��et pouze odd�len� 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 m�du --pgp2 nelze sou�asn� �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 m�du --pgp2 mus�te pou��t 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 "�ifrov�n� zpr�v v m�du --pgp2 vy�aduje 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 "polo�ka completes-needed mus� b�t v�t�� ne� 0\n"
-#: g10/gpg.c:3091
+#: g10/gpg.c:3110
msgid "marginals-needed must be greater than 1\n"
msgstr "polo�ka marginals-needed mus� b�t v�t�� ne� 1\n"
-#: g10/gpg.c:3093
+#: g10/gpg.c:3112
msgid "max-cert-depth must be in the range from 1 to 255\n"
msgstr "polo�ka max-cert-depth mus� b�t v rozmez� od 1 do 255\n"
-#: g10/gpg.c: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� b�t 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� minim�ln� �rove� certifikace (min-cert-level); mus� b�t 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 "POZN�MKA: jednoduch� m�d S2K (0) je d�razn� nedoporu�ov�n\n"
-#: g10/gpg.c:3104
+#: g10/gpg.c:3123
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "neplatn� m�d S2K; mus� b�t 0, 1 nebo 3\n"
-#: g10/gpg.c:3111
+#: g10/gpg.c:3130
msgid "invalid default preferences\n"
msgstr "neplatn� defaultn� p�edvolby\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "neplatn� u�ivatelsk� p�edvolby pro �ifrov�n�\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "neplatn� u�ivatelsk� p�edvolby pro hashov�n�\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "neplatn� u�ivatelsk� p�edvolby 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� funk�n� 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 "pou�it� �ifrovac�ho algoritmu `%s' v m�du %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 "pou�it� hashovac�ho algoritmu `%s' v m�du %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 "pou�it� komprima�n�ho algoritmu `%s' v m�du %s dovoleno\n"
-#: g10/gpg.c:3310
+#: g10/gpg.c:3329
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "nemohu inicializovat datab�zi d�v�ry: %s\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr ""
"VAROV�N�: specifikov�n adres�t (-r) bez pou�it� �ifrov�n� s ve�ejn�m kl��em\n"
-#: g10/gpg.c:3342
+#: g10/gpg.c:3361
msgid "--store [filename]"
msgstr "--store [jm�no souboru]"
-#: g10/gpg.c:3349
+#: g10/gpg.c:3368
msgid "--symmetric [filename]"
msgstr "--symmetric [jm�no souboru]"
-#: g10/gpg.c:3351
+#: g10/gpg.c:3370
#, c-format
msgid "symmetric encryption of `%s' failed: %s\n"
msgstr "symetrick� �ifrov�n� `%s' se nepovedlo: %s\n"
-#: g10/gpg.c:3361
+#: g10/gpg.c:3380
msgid "--encrypt [filename]"
msgstr "--encrypt [jm�no souboru]"
-#: g10/gpg.c:3374
+#: g10/gpg.c:3393
msgid "--symmetric --encrypt [filename]"
msgstr "--symmetric --encrypt [jm�no souboru]"
-#: g10/gpg.c:3376
+#: g10/gpg.c:3395
msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n"
msgstr "nelze pou��t --symmetric --encrypt s p��kazem --s2k-mode 0\n"
-#: g10/gpg.c:3379
+#: g10/gpg.c:3398
#, c-format
msgid "you cannot use --symmetric --encrypt while in %s mode\n"
msgstr "nelze pou��t --symmetric --encrypt v m�du %s\n"
-#: g10/gpg.c:3397
+#: g10/gpg.c:3416
msgid "--sign [filename]"
msgstr "--sign [jm�no souboru]"
-#: g10/gpg.c:3410
+#: g10/gpg.c:3429
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [jm�no souboru]"
-#: g10/gpg.c:3425
+#: g10/gpg.c:3444
msgid "--symmetric --sign --encrypt [filename]"
msgstr "--symmetric --sign --encrypt [jm�no souboru]"
-#: g10/gpg.c:3427
+#: g10/gpg.c:3446
msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n"
msgstr "nelze pou��t --symmetric --sign --encrypt s p��kazem --s2k-mode 0\n"
-#: g10/gpg.c:3430
+#: g10/gpg.c:3449
#, c-format
msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n"
msgstr "nelze pou��t --symmetric --sign --encrypt v m�du %s\n"
-#: g10/gpg.c:3450
+#: g10/gpg.c:3469
msgid "--sign --symmetric [filename]"
msgstr "--sign --symmetric [jm�no souboru]"
-#: g10/gpg.c:3459
+#: g10/gpg.c:3478
msgid "--clearsign [filename]"
msgstr "--clearsign [jm�no souboru]"
-#: g10/gpg.c:3484
+#: g10/gpg.c:3503
msgid "--decrypt [filename]"
msgstr "--decrypt [jm�no souboru]"
-#: g10/gpg.c:3492
+#: g10/gpg.c:3511
msgid "--sign-key user-id"
msgstr "--sign-key id u�ivatele"
-#: g10/gpg.c:3496
+#: g10/gpg.c:3515
msgid "--lsign-key user-id"
msgstr "--lsign-key id u�ivatele"
-#: g10/gpg.c:3517
+#: g10/gpg.c:3536
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id u�ivatele [p��kazy]"
-#: g10/gpg.c:3602
+#: g10/gpg.c:3621
#, c-format
msgid "keyserver send failed: %s\n"
msgstr "odesl�n� na keyserver se nezda�ilo: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "z�sk�n� dat z keyserveru se nezda�ilo: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "export kl��e se nepoda�il: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "hled�n� na keyserveru se nezda�ilo: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "refresh dat na keyserveru se nezda�il: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "dek�dov�n� z ASCII form�tu selhalo: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "k�dov�n� do ASCII form�tu 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 "[jm�no souboru]"
-#: g10/gpg.c:3897
+#: g10/gpg.c:3916
msgid "Go ahead and type your message ...\n"
msgstr "Za�n�te ps�t svou zpr�vu ...\n"
-#: g10/gpg.c:4209
+#: g10/gpg.c:4228
msgid "the given certification policy URL is invalid\n"
msgstr "zadan� URL pro certifika�n� 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 preferovan�ho serveru kl��� je neplat�\n"
@@ -2990,22 +2990,22 @@ msgstr "POZN�MKA: prim�rn� kl�� je online a je ulo�en na kart�\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "POZN�MKA: sekund�rn� kl�� je online a je ulo�en na kart�\n"
-#: g10/keydb.c:168
+#: g10/keydb.c:181
#, c-format
msgid "error creating keyring `%s': %s\n"
msgstr "chyba p�i vytv��en� 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' vytvo�en\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 kl��e `%s': %s\n"
-#: g10/keydb.c:697
+#: g10/keydb.c:710
#, c-format
msgid "failed to rebuild keyring cache: %s\n"
msgstr "selhalo obnoven� vyrovn�vac� pam�ti kl���: %s\n"
@@ -5980,12 +5980,12 @@ msgstr "chyba p�i �ten� v `%s': %s\n"
msgid "trustdb: sync failed: %s\n"
msgstr "datab�ze d�v�ry: 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 "z�znam v datab�zi d�v�ry %lu: lseek() se nepoda�il: %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 "z�znam v datab�zi d�v�ry %lu: z�pis se nepoda�il (n=%d): %s\n"
@@ -5999,112 +5999,112 @@ msgstr "transakce s datab�z� d�v�ry je p��li� dlouh�\n"
msgid "can't access `%s': %s\n"
msgstr "nemohu otev��t `%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 vytvo�it z�mek 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 zam��t `%s'\n"
-#: g10/tdbio.c:551
+#: g10/tdbio.c:562
#, c-format
msgid "%s: failed to create version record: %s"
msgstr "%s: nepoda�ilo se vytvo�it z�znam verze: %s"
-#: g10/tdbio.c:555
+#: g10/tdbio.c:566
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: vytvo�ena neplatn� datab�ze d�v�ry\n"
-#: g10/tdbio.c:558
+#: g10/tdbio.c:569
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: datab�ze d�v�ry vytvo�ena\n"
-#: g10/tdbio.c:600
+#: g10/tdbio.c:611
msgid "NOTE: trustdb not writable\n"
msgstr "POZN�MKA: do trustedb nezle zapisovat\n"
-#: g10/tdbio.c:608
+#: g10/tdbio.c:619
#, c-format
msgid "%s: invalid trustdb\n"
msgstr "%s: neplatn� datab�ze d�v�ry\n"
-#: g10/tdbio.c:640
+#: g10/tdbio.c:651
#, c-format
msgid "%s: failed to create hashtable: %s\n"
msgstr "%s: nepoda�ilo se vytvo�it 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 p�i aktualizaci z�znamu 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 p�i �ten� z�znamu verze: %s\n"
-#: g10/tdbio.c:724
+#: g10/tdbio.c:735
#, c-format
msgid "%s: error writing version record: %s\n"
msgstr "%s: chyba p�i z�pisu z�znamu verze: %s\n"
-#: g10/tdbio.c:1164
+#: g10/tdbio.c:1175
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "datab�ze d�v�ry: procedura lseek() selhala: %s\n"
-#: g10/tdbio.c:1173
+#: g10/tdbio.c:1184
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "datab�ze d�v�ry: 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 datab�ze d�v�ry\n"
-#: g10/tdbio.c:1212
+#: g10/tdbio.c:1223
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: z�znam 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 p�i �ten� voln�ho z�znamu: %s\n"
-#: g10/tdbio.c:1410
+#: g10/tdbio.c:1421
#, c-format
msgid "%s: error writing dir record: %s\n"
msgstr "%s: chyba p�i z�pisu adres��ov�ho z�znamu: %s\n"
-#: g10/tdbio.c:1420
+#: g10/tdbio.c:1431
#, c-format
msgid "%s: failed to zero a record: %s\n"
msgstr "%s: vynulov�n� z�znamu selhalo: %s\n"
-#: g10/tdbio.c:1450
+#: g10/tdbio.c:1461
#, c-format
msgid "%s: failed to append a record: %s\n"
msgstr "%s: p�id�n� z�znamu selhalo: %s\n"
-#: g10/tdbio.c:1495
+#: g10/tdbio.c:1506
msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
msgstr "datab�ze d�v�ry je po�kozena; pros�m spus�te \"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 p�esko�en\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� podporov�n\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 otev��t `%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 "exportov�n� tajn�ho kl��e 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 p�i vytv��en� hesla: %s\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "�ten� ve�ejn�ho kl��e se nezda�ilo: %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 ulo�it kl��: %s\n"
-#: sm/certchain.c:742
+#: sm/certchain.c:826
#, fuzzy
msgid "certificate has been revoked"
msgstr "POZN�MKA: kl�� byl revokov�n"
-#: sm/certchain.c:752
+#: sm/certchain.c:836
#, fuzzy
msgid "no CRL found for certificate"
msgstr "�patn� certifik�t"
-#: 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 vytvo�en�ho podpisu se nepoda�ila: %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 "exportov�n� tajn�ho kl��e 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 kl��e vypr�ela!"
-#: sm/certchain.c:830
+#: sm/certchain.c:914
#, fuzzy
msgid "root certificate has expired"
msgstr "Platnost kl��e vypr�ela!"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
#, fuzzy
msgid "intermediate certificate has expired"
msgstr "Platnost kl��e vypr�ela!"
-#: 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 kl��e vypr�ela!"
-#: 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 " odstran�n� podpisy: %lu\n"
-#: sm/certchain.c:927
+#: sm/certchain.c:1011
#, fuzzy
msgid " (certificate created at "
msgstr "Revoka�n� certifik�t vytvo�en.\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "�patn� certifik�t"
-#: 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 "vytvo�it revoka�n� certifik�t"
-#: 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 vytvo�en�ho podpisu se nepoda�ila: %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 p�edvolby `%s'\n"
-#: sm/certchain.c:1465
+#: sm/certchain.c:1549
#, fuzzy
msgid "intermediate certificate is good\n"
msgstr "Revoka�n� certifik�t vytvo�en.\n"
-#: sm/certchain.c:1466
+#: sm/certchain.c:1550
#, fuzzy
msgid "root certificate is good\n"
msgstr "�patn� certifik�t"
-#: 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Danish <[email protected]>\n"
@@ -17,18 +17,18 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
# er det klogt at overs�tte 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 "d�rlig mpi"
-#: agent/call-pinentry.c:698
+#: agent/call-pinentry.c:742
#, fuzzy
msgid "Bad Passphrase"
msgstr "d�rlig kodes�tning"
-#: agent/call-pinentry.c:734
+#: agent/call-pinentry.c:778
#, fuzzy
msgid "Passphrase"
msgstr "d�rlig kodes�tning"
@@ -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 "l�ser indstillinger fra `%s'\n"
@@ -430,16 +430,16 @@ msgstr "fejl ved l�sning af '%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: 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�seproblem: %s\n"
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 kodes�tning: %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 l�sning 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 �bne %s: %s\n"
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 l�sning 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 "�ndr kodes�tningen"
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 kodes�tning: %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 l�sning 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 n�glering `%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 l�sning 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 l�sning 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 hj�lp tilg�ngelig 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 n�gle ikke tilg�ngelig"
@@ -1103,166 +1103,166 @@ msgstr "hemmelig n�gle ikke tilg�ngelig"
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 "sl�til"
-#: g10/card-util.c:416
+#: g10/card-util.c:418
#, fuzzy
msgid "female"
msgstr "sl�til"
-#: 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 l�sning 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 pr�ferencer"
-#: 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 "p�kl�dning 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 n�glering `%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 "V�lg venligst hvilken slags n�gle 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 n�gle 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 (krypt�r 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 n�gletilbagekald\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 n�gle ikke tilg�ngelig"
-#: g10/card-util.c:1239
+#: g10/card-util.c:1241
#, fuzzy
msgid "secret key already stored on a card\n"
msgstr "udelod: hemmelig n�gle 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 hj�lp"
-#: g10/card-util.c:1312
+#: g10/card-util.c:1314
#, fuzzy
msgid "list all available data"
msgstr "Ingen hj�lp tilg�ngelig"
-#: 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 udl�bsdatoen"
-#: g10/card-util.c:1319
+#: g10/card-util.c:1321
#, fuzzy
msgid "change the language preferences"
msgstr "vis pr�ferencer"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "vis fingeraftryk"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "gener�r et nyt n�glepar"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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
#, 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�gle visning"
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 tegns�t\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 tegns�t\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 "import�r n�gler fra en n�gleserver: %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 n�glering"
-#: 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 n�glering"
-#: 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 tegns�t\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 tegns�t\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 tegns�t\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 n�glering"
-#: 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 meningsl�s 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 resum�algoritme 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 resum�algoritme 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 v�re 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 v�re 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) frar�des 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 v�re 0, 1 el. 3\n"
-#: g10/gpg.c:3111
+#: g10/gpg.c:3130
#, fuzzy
msgid "invalid default preferences\n"
msgstr "vis pr�ferencer"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
#, fuzzy
msgid "invalid personal cipher preferences\n"
msgstr "vis pr�ferencer"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
#, fuzzy
msgid "invalid personal digest preferences\n"
msgstr "vis pr�ferencer"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
#, fuzzy
msgid "invalid personal compress preferences\n"
msgstr "vis pr�ferencer"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, fuzzy, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s er meningsl�s 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 overs�tte 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 "p�kl�dning af beskyttelse fejlede: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, fuzzy, c-format
msgid "keyserver receive failed: %s\n"
msgstr "p�kl�dning af beskyttelse fejlede: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, fuzzy, c-format
msgid "key export failed: %s\n"
msgstr "p�kl�dning 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 "p�kl�dning 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�gle er allerede tilstede\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "udelod: hemmelig n�gle 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 n�glering `%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 l�sning 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 n�glering\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 "hj�lp"
@@ -6692,228 +6697,242 @@ msgstr "hj�lp"
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 kodes�tning: %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 overs�tte 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 "n�gle %08lX: n�gle 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 hj�lp tilg�ngelig"
-#: 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 "certifikatl�seproblem: %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 "certifikatl�seproblem: %s\n"
-#: sm/certchain.c:830
+#: sm/certchain.c:914
#, fuzzy
msgid "root certificate has expired"
msgstr "certifikatl�seproblem: %s\n"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
#, fuzzy
msgid "intermediate certificate has expired"
msgstr "certifikatl�seproblem: %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 "certifikatl�seproblem: %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 "n�gle %08lX: offentlig n�gle importeret\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "certifikatl�seproblem: %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 "certifikatl�seproblem: %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 "certifikatl�seproblem: %s\n"
-#: sm/certchain.c:1465
+#: sm/certchain.c:1549
#, fuzzy
msgid "intermediate certificate is good\n"
msgstr "n�gle %08lX: offentlig n�gle 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: [email protected]\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 <[email protected]>\n"
"Language-Team: German <[email protected]>\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: [email protected]\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 <[email protected]>\n"
"Language-Team: Greek <[email protected]>\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 "�������������� �� ����� �����߷ ���� ����� ��� ������� ������� \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 "� ������ ����� ���� ������\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 "��� ������������� � ���������� ���������� %d%s\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"
@@ -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 "������ ���� �� ���������� ��� `%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"
@@ -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 ������� (n=%d): %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"
@@ -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 "��������� ��� �� ������\n"
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 "�������������: �������� �� ������ �������� ���������\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 "�� ������� ������ ��� ����� ���������"
@@ -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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "���������� ��� fingerprint"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "���������� ���� ���� ������� ��������"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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
#, 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 "�� ������ ������ (��������� \"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"
@@ -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 "������������: ������� ������ ��� �����\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
#, 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 "������ ���������: %s\n"
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 "���� ������ ��������� 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
#, 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Esperanto <[email protected]>\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 "�an�i la pasfrazon"
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 mal�alti 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 �losilo ne havebla"
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 re�imo\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 signo�eno\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
#, fuzzy
msgid "Error: invalid characters in preference string.\n"
msgstr "nevalida signo en signo�eno\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 eksvalidi�os 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 "�an�i la daton de eksvalidi�o"
-#: g10/card-util.c:1319
+#: g10/card-util.c:1321
#, fuzzy
msgid "change the language preferences"
msgstr "�an�i la posedantofidon"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "montri fingrospuron"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "krei novan �losilparon"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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 �losilaro estas listigita �losilo"
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 mesa�on 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-re�imo (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-re�imo; 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 re�imo %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 re�imo %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 re�imo %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 "mal�ifrado 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 re�imo %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 re�imo %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 mesa�on ...\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 �losilo jam �eestas\n"
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 fu�ita; 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 "forvi�o 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 - forvi�ita"
-#: 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 - en�ovas\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: [email protected]\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 Su�rez <[email protected]>\n"
"Language-Team: Spanish <[email protected]>\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�a: 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
#, 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 "l�nea demasiado larga"
-#: agent/call-pinentry.c:672
+#: agent/call-pinentry.c:716
#, fuzzy
msgid "Passphrase too long"
msgstr "frase contrase�a demasiado larga\n"
-#: agent/call-pinentry.c:680
+#: agent/call-pinentry.c:724
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caracter inv�lido 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 m�s listos? :-)
#
-#: agent/call-pinentry.c:698
+#: agent/call-pinentry.c:742
#, fuzzy
msgid "Bad Passphrase"
msgstr "Frase contrase�a incorrecta"
@@ -105,7 +105,7 @@ msgstr "Frase contrase�a incorrecta"
# �Por qu� los ingleses entonces s� que saben lo que es un "passphrase"?
# �Es que son m�s listos? :-)
#
-#: agent/call-pinentry.c:734
+#: agent/call-pinentry.c:778
#, fuzzy
msgid "Passphrase"
msgstr "Frase contrase�a 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�n de certificado v�lida"
msgid "a gpg-agent is already running - not starting a new one\n"
msgstr "el agente gpg no esta disponible en esta sesi�n\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 "actualizaci�n 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� en %s: %s\n"
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 "actualizaci�n 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�a"
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 contrase�a: %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 informaci�n 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 extensi�n `%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 extensi�n `%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 "Versi�n 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�N: encontrados datos de notaci�n inv�lidos\n"
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 elecci�n: "
-#: 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: s�lo 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 (m�ximo %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 p�blica: "
-#: 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 m�ximo 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 (l�mite 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 (l�mite 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 inv�lida.\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
msgid "Error: invalid characters in preference string.\n"
msgstr "Error: caracteres inv�lidos 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 v�lida.\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 inv�lido 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 operaci�n 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 informaci�n 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"
"Deber�a 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 autentificaci�n\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 "Elecci�n inv�lida.\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 protecci�n 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 est�n 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 opci�n 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 s�lo 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 inv�lida (pruebe \"help\")\n"
@@ -1429,7 +1429,7 @@ msgstr "Orden inv�lida (pruebe \"help\")\n"
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� anillos est� una clave"
msgid "show expiration dates during signature listings"
msgstr "No existe la firma correspondiente en el anillo secreto\n"
-#: g10/gpg.c: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 v�lido\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 v�lido\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 inv�lidas\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
msgid "invalid keyserver options\n"
msgstr "opciones del servidor de claves inv�lidas\n"
-#: g10/gpg.c:2577
+#: g10/gpg.c:2595
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: opciones de importaci�n inv�lidas\n"
-#: g10/gpg.c:2580
+#: g10/gpg.c:2598
msgid "invalid import options\n"
msgstr "opciones de importaci�n inv�lidas\n"
-#: g10/gpg.c:2587
+#: g10/gpg.c:2605
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: opciones de exportaci�n inv�lidas\n"
-#: g10/gpg.c:2590
+#: g10/gpg.c:2608
msgid "invalid export options\n"
msgstr "opciones de exportaci�n inv�lidas\n"
-#: g10/gpg.c:2597
+#: g10/gpg.c:2615
#, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: lista de opciones inv�lida\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
msgid "invalid list options\n"
msgstr "lista de opciones inv�lida\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 v�lido\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 v�lida\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 v�lido\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 v�lido\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 verificaci�n inv�lidas\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
msgid "invalid verify options\n"
msgstr "opciones de verificaci�n inv�lidas\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 verificaci�n inv�lidas\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 "ATENCI�N: �el programa podr�a 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 "s�lo 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 tuber�as) 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 inv�lido\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 inv�lido\n"
-#: g10/gpg.c:3068
+#: g10/gpg.c:3087
msgid "selected compression algorithm is invalid\n"
msgstr "el algoritmo de compresi�n seleccionado es inv�lido\n"
-#: g10/gpg.c:3074
+#: g10/gpg.c:3093
msgid "selected certification digest algorithm is invalid\n"
msgstr "el algoritmo de certificaci�n por resumen elegido es inv�lido\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 inv�lido; 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 inv�lido; 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 inv�lidas\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "preferencias personales de cifrado inv�lidas\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "preferencias personales de algoritmo de resumen inv�lidas\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "preferencias personales de compresi�n inv�lidas\n"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s a�n 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 compresi�n `%s' en modo %s\n"
-#: g10/gpg.c:3310
+#: g10/gpg.c:3329
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "inicializaci�n de la base de datos de confianza fallida: %s\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr "AVISO: se indicaron receptores (-r) sin clave p�blica de cifrado\n"
-#: g10/gpg.c: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 sim�trico 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 "env�o al servidor de claves fallido: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "recepci�n del servidor de claves fallida: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "exportaci�n de clave fallida: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "b�squeda del servidor de claves fallida: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "renovaci�n al servidor de claves fallida: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "eliminaci�n de armadura fallida: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "creaci�n de armadura fallida: %s\n"
-#: g10/gpg.c:3776
+#: g10/gpg.c:3795
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de distribuci�n inv�lido `%s'\n"
-#: g10/gpg.c:3893
+#: g10/gpg.c:3912
msgid "[filename]"
msgstr "[nombre_fichero]"
@@ -2519,19 +2519,19 @@ msgstr "[nombre_fichero]"
# En espa�ol no se deja espacio antes de los puntos suspensivos
# (Real Academia dixit) :)
# Tomo nota :-). Este comentario d�jalo siempre.
-#: g10/gpg.c: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 pol�tica de certificado inv�lida\n"
-#: g10/gpg.c:4211
+#: g10/gpg.c:4230
msgid "the given signature policy URL is invalid\n"
msgstr "URL de pol�tica inv�lida\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 v�lida\n"
@@ -3021,22 +3021,22 @@ msgstr "NOTA: clave primaria en l�nea y almacenada en la tarjeta\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "NOTA: clave secundaria en l�nea 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 sincronizaci�n: %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�n en la base de datos de confianza demasiado grande\n"
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 creaci�n del registro de versi�n: %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 inv�lida\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 inv�lida\n"
-#: g10/tdbio.c:640
+#: g10/tdbio.c:651
#, c-format
msgid "%s: failed to create hashtable: %s\n"
msgstr "%s: fallo en la creaci�n 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 versi�n: %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 versi�n: %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 versi�n: %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 versi�n con n�mero de registro %lu\n"
-#: g10/tdbio.c:1217
+#: g10/tdbio.c:1228
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: versi�n del fichero %d inv�lida\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 a�adir 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� da�ada. 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 inv�lido 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 versi�n %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 n�mero 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 comprobaci�n 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 "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:815 sm/certchain.c:900
+#: sm/certchain.c:899 sm/certchain.c:984
#, fuzzy
msgid "root certificate not yet valid"
msgstr "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:816 sm/certchain.c:901
+#: sm/certchain.c:900 sm/certchain.c:985
#, fuzzy
msgid "intermediate certificate not yet valid"
msgstr "Revocaci�n de certificado v�lida"
-#: 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 revocaci�n creado.\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:931
+#: sm/certchain.c:1015
#, fuzzy
msgid " ( issuer valid from "
msgstr " N�mero 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 ning�n 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 ning�n 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 comprobaci�n 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 "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:1309
+#: sm/certchain.c:1393
#, fuzzy
msgid "issuer certificate not found"
msgstr "Revocaci�n de certificado v�lida"
-#: 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 "Revocaci�n de certificado v�lida"
-#: 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 ning�n 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 ""
#~ "ATENC�ON: todav�a 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Estonian <[email protected]>\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 eba�nnestus: %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 s�mbol 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 "M�RKUS: vaikimisi v�tmete 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 "v�tmete 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 v�tmeid 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 eba�nnestus: %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 v�tme faili `%s'\n"
@@ -487,7 +487,7 @@ msgstr "trustdb: lugemine eba�nnestus (n=%d): %s\n"
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 v�tme uuendamine eba�nnestus: %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: j�tsin 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 v�tme v�tmehoidlasse `%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 m�lupildi 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 v�ti ei ole k�ttesaadav"
@@ -1113,166 +1113,166 @@ msgstr "salajane v�ti ei ole k�ttesaadav"
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 "P�hjus puudub"
-#: g10/card-util.c:443
+#: g10/card-util.c:445
#, fuzzy
msgid "not forced"
msgstr "ei t��deldud"
-#: 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 v�tit 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 s�mbol eelistuste s�nes\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
#, fuzzy
msgid "Error: invalid characters in preference string.\n"
msgstr "lubamatu s�mbol eelistuste s�nes\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 s�rmej�lg\n"
-#: g10/card-util.c:869
+#: g10/card-util.c:871
#, fuzzy
msgid "CA fingerprint: "
msgstr "n�ita s�rmej�lge"
-#: g10/card-util.c:892
+#: g10/card-util.c:894
#, fuzzy
msgid "Error: invalid formatted fingerprint.\n"
msgstr "viga: vigane s�rmej�lg\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, fuzzy, c-format
msgid "key operation not possible: %s\n"
msgstr "V�tme genereerimine eba�nnestus: %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 v�tme v�tmehoidlasse `%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 v�tmet��pi 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 kr�pteerimiseks)\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 t�histamise p�hjus:\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 v�tme salajased komponendid ei ole k�ttesaadavad.\n"
-#: g10/card-util.c:1239
+#: g10/card-util.c:1241
#, fuzzy
msgid "secret key already stored on a card\n"
msgstr "j�tsin vahele: avalik v�ti on juba olemas\n"
-#: g10/card-util.c:1307 g10/keyedit.c:1362
+#: g10/card-util.c:1309 g10/keyedit.c:1362
msgid "quit this menu"
msgstr "v�lju sellest men��st"
-#: g10/card-util.c:1309
+#: g10/card-util.c:1311
#, fuzzy
msgid "show admin commands"
msgstr "vastuolulised k�sud\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�ita seda abiinfot"
-#: g10/card-util.c:1312
+#: g10/card-util.c:1314
#, fuzzy
msgid "list all available data"
msgstr "V�tme 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 kuup�eva"
-#: 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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "n�ita s�rmej�lge"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "genereeri uus v�tmepaar"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "K�sklus> "
-#: g10/card-util.c:1483
+#: g10/card-util.c:1485
#, fuzzy
msgid "Admin-only command\n"
msgstr "vastuolulised k�sud\n"
-#: g10/card-util.c:1514
+#: g10/card-util.c:1516
#, fuzzy
msgid "Admin commands are allowed\n"
msgstr "vastuolulised k�sud\n"
-#: g10/card-util.c:1516
+#: g10/card-util.c:1518
#, fuzzy
msgid "Admin commands are not allowed\n"
msgstr "kirjutan salajase v�tme 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 k�sklus (proovige \"help\")\n"
@@ -1417,7 +1417,7 @@ msgstr "Vigane k�sklus (proovige \"help\")\n"
msgid "--output doesn't work for this command\n"
msgstr "v�ti --output ei t��ta selle k�suga\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�ita millisesse v�tmehoidlasse n�idatud v�ti kuulub"
msgid "show expiration dates during signature listings"
msgstr "Vastavat allkirja salajaste v�tmete hoidlas pole\n"
-#: g10/gpg.c: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 "M�RKUS: ignoreerin vana vaikimisi v�tmete 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 "M�RKUS: %s ei ole tavap�raseks 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 v�tmeserveri 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 v�tmed\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
#, fuzzy
msgid "invalid keyserver options\n"
msgstr "vigased ekspordi v�tmed\n"
-#: g10/gpg.c:2577
+#: g10/gpg.c:2595
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: vigased impordi v�tmed\n"
-#: g10/gpg.c:2580
+#: g10/gpg.c:2598
msgid "invalid import options\n"
msgstr "vigased impordi v�tmed\n"
-#: g10/gpg.c:2587
+#: g10/gpg.c:2605
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: vigased ekspordi v�tmed\n"
-#: g10/gpg.c:2590
+#: g10/gpg.c:2608
msgid "invalid export options\n"
msgstr "vigased ekspordi v�tmed\n"
-#: g10/gpg.c:2597
+#: g10/gpg.c:2615
#, fuzzy, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: vigased impordi v�tmed\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
#, fuzzy
msgid "invalid list options\n"
msgstr "vigased impordi v�tmed\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 v�tmed\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
#, fuzzy
msgid "invalid verify options\n"
msgstr "vigased ekspordi v�tmed\n"
-#: g10/gpg.c:2647
+#: g10/gpg.c:2665
#, c-format
msgid "unable to set exec-path to %s\n"
msgstr "exec-path v��rtuseks 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 v�tmed\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 v�ib salvestada oma m�lupildi!\n"
-#: g10/gpg.c:2924
+#: g10/gpg.c:2943
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "HOIATUS: %s m��rab �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 m�tet!\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 v�tme 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 v�i 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 kr�pteerida\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 kr�pteerimine --pgp2 moodis n�uab 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 l�hendi 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 l�hendi 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 v�i 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 v�i 3\n"
-#: g10/gpg.c:3100
+#: g10/gpg.c:3119
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "M�RKUS: 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 v�i 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 l�hendi 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 t��ta 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 "s�numil�hendi 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 eba�nnestus: %s\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr ""
"HOIATUS: m��rati saajad (-r) aga ei kasutata avaliku v�tme kr�ptograafiat\n"
-#: g10/gpg.c: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 "lahtikr�pteerimine eba�nnestus: %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 [k�sud]"
-#: g10/gpg.c:3602
+#: g10/gpg.c:3621
#, c-format
msgid "keyserver send failed: %s\n"
msgstr "v�tmeserverile saatmine eba�nnestus: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "v�tmeserverilt lugemine eba�nnestus: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "v�tme eksport eba�nnestus: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "v�tmeserveri otsing eba�nnestus: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "v�tmeserveri uuendamine eba�nnestus: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "lahtipakendamine eba�nnestus: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "pakendamine eba�nnestus: %s\n"
-#: g10/gpg.c:3776
+#: g10/gpg.c:3795
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "vigane r�sialgoritm `%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 n��d 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�tsin vahele: avalik v�ti on juba olemas\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "j�tsin vahele: avalik v�ti on juba olemas\n"
-#: g10/keydb.c:168
+#: g10/keydb.c:181
#, c-format
msgid "error creating keyring `%s': %s\n"
msgstr "viga v�tmehoidla `%s' loomisel: %s\n"
-#: g10/keydb.c:174
+#: g10/keydb.c:187
#, c-format
msgid "keyring `%s' created\n"
msgstr "v�tmehoidla `%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 "v�tmehoidla vahem�lu uuesti loomine eba�nnestus: %s\n"
@@ -6076,12 +6076,12 @@ msgstr "viga lugemisel: %s\n"
msgid "trustdb: sync failed: %s\n"
msgstr "trustdb: sync eba�nnestus: %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 eba�nnestus: %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 "M�RKUS: 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 eba�nnestus: %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 eba�nnestus: %s\n"
-#: g10/tdbio.c:1173
+#: g10/tdbio.c:1184
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "trustdb: lugemine eba�nnestus (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 eba�nnestus: %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 eba�nnestus: %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 k�ivitage \"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 s�mbol %02x vahele j�etud\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 v�tme 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 "v�tmebloki kustutamine eba�nnestus: %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 eba�nnestus: %s\n"
-#: sm/certchain.c:742
+#: sm/certchain.c:826
#, fuzzy
msgid "certificate has been revoked"
msgstr "M�RKUS: v�ti on t�histatud"
-#: 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 "V�tme 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 v�tme 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 v�ti on aegunud!"
-#: sm/certchain.c:830
+#: sm/certchain.c:914
#, fuzzy
msgid "root certificate has expired"
msgstr "See v�ti on aegunud!"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
#, fuzzy
msgid "intermediate certificate has expired"
msgstr "See v�ti 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 v�ti 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 "T�histamise 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 "n�ita s�rmej�lge"
-#: 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 t�histamise 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 "T�histamise 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "näytä sormenjälki"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "luo uusi avainpari"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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: [email protected]\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: Ga�l Qu�ri <[email protected]>\n"
"Language-Team: French <[email protected]>\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�te \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 "validit�: %s"
@@ -50,45 +50,45 @@ msgstr "validit�: %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 "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 "Caract�re 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 pr�cision 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�\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 "impossible de cr�er `%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 d�faut `%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�ation 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
#, c-format
msgid "can't create directory `%s': %s\n"
msgstr "impossible de cr�er le r�pertoire `%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 cr�er `%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� secr�te dans `%s'\n"
@@ -505,7 +505,7 @@ msgstr "fstat(%d) �chou� dans %s: %s\n"
msgid "can't use `%s' as home directory\n"
msgstr "impossible de cr�er le r�pertoire `%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� secr�te 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 cr�ation 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 donn�es sign�es `%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� par l'utilisateur\n"
msgid "problem with the agent\n"
msgstr "probl�me avec l'agent - arr�t 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'emp�cher la g�n�ration 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 propri�taire de l'extension `%s' est peu\n"
"s�r\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�es de notation invalides ont �t� d�tect�es\n"
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 d�tect�e\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 "f�minin"
-#: g10/card-util.c:416
+#: g10/card-util.c:418
msgid "unspecified"
msgstr "non sp�cifi�"
-#: 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 caract�re � < � 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 d�teneur de la carte: "
-#: g10/card-util.c:544
+#: g10/card-util.c:546
msgid "Cardholder's given name: "
msgstr "Pr�nom du d�teneur 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 caract�res).\n"
-#: g10/card-util.c:583
+#: g10/card-util.c:585
msgid "URL to retrieve public key: "
msgstr "URL pour r�cup�rer 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 caract�res).\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 "Donn�es 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: Donn�es d'indentification trop longues (la limite est\n"
"%d caract�res).\n"
-#: g10/card-util.c:766
+#: g10/card-util.c:768
msgid "Private DO data: "
msgstr "Donn�es DO priv�es: "
-#: 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 caract�res).\n"
-#: g10/card-util.c:796
+#: g10/card-util.c:798
msgid "Language preferences: "
msgstr "Pr�f�rences 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 cha�ne de pr�f�rences.\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
msgid "Error: invalid characters in preference string.\n"
msgstr "Erreur: caract�res invalide dans la cha�ne de pr�f�rences.\n"
-#: g10/card-util.c: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: r�ponse 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 format�e.\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, c-format
msgid "key operation not possible: %s\n"
msgstr "l'op�ration sur la cl� n'est pas possible: %s\n"
-#: g10/card-util.c: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 cl�s 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 "S�lectionnez le type de cl� � g�n�rer:\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 "S�lectionnez 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 secr�tes 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� secr�te est d�j� stock�e 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 donn�es disponibles"
-#: g10/card-util.c:1315
+#: g10/card-util.c:1317
msgid "change card holder's name"
msgstr "changer le nom du propri�taire de la carte"
-#: g10/card-util.c:1316
+#: g10/card-util.c:1318
msgid "change URL to retrieve key"
msgstr "changer l'URL pour r�cup�rer 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� sp�cifi�e 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 pr�f�rences de langue"
-#: g10/card-util.c:1320
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr "changer le sexe du propri�taire 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 param�tre obligeant � rentrer le code PIN pour les\n"
"signatures"
-#: g10/card-util.c:1323
+#: g10/card-util.c:1325
msgid "generate new keys"
msgstr "g�n�rer de nouvelles cl�s"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr "menu pour changer ou d�verrouiller le PIN"
-#: g10/card-util.c:1325
+#: g10/card-util.c:1327
msgid "verify the PIN and list all data"
msgstr "v�rifier le code PIN et lister toutes les donn�es"
-#: 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 �help�)\n"
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-cl�s 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 d�faut `%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 caract�res 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'interpr�ter l'URL du serveur de cl�s\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 cl�s sont invalides\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
msgid "invalid keyserver options\n"
msgstr "les options du serveur de cl�s 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 cl�s favori qui a �t� donn�e 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 v�rification invalides\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
msgid "invalid verify options\n"
msgstr "options de v�rification 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'ex�cution � %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 v�rification 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 cr�er 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'ex�cution ave une m�moire non s�curis�e � 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 d�tach�e 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 m�me 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 n�cessite 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 s�lectionn� 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 s�lectionn�e est invalide\n"
-#: g10/gpg.c:3068
+#: g10/gpg.c:3087
msgid "selected compression algorithm is invalid\n"
msgstr "l'algorithme de compression s�lectionn� 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 s�lectionn�e 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 sup�rieur � 0\n"
-#: g10/gpg.c:3091
+#: g10/gpg.c:3110
msgid "marginals-needed must be greater than 1\n"
msgstr "�marginals-needed� doit �tre sup�rieur � 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 d�conseill�\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 "pr�f�rences par d�faut invalides\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "pr�f�rences de chiffrement personnelles invalides\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "pr�f�rences de hachage personnelles invalides\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "pr�f�rences 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� donn�s 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 sym�trique 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 cl�s a �chou�: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "la r�ception depuis le serveur de cl�s a �chou�: %s\n"
-#: g10/gpg.c: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 cl�s a �chou�: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "le rafra�chissement par le serveur de cl�s a �chou�: %s\n"
-#: g10/gpg.c: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 donn�e 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 donn�e 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 cl�s favori qui a �t� donn�e est invalide\n"
@@ -3057,22 +3057,22 @@ msgstr "NOTE: la cl� primaire est en ligne et stock�e sur la carte\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "NOTE: la cl� secondaire est en ligne et stock�e sur la carte\n"
-#: g10/keydb.c:168
+#: g10/keydb.c:181
#, c-format
msgid "error creating keyring `%s': %s\n"
msgstr "erreur durant la cr�ation du porte-cl�s `%s' : %s\n"
-#: g10/keydb.c:174
+#: g10/keydb.c:187
#, c-format
msgid "keyring `%s' created\n"
msgstr "le porte-cl�s `%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 cl�s `%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-cl�s 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'acc�der � `%s': %s\n"
-#: g10/tdbio.c:513
+#: g10/tdbio.c:524
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: le r�pertoire 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 cr�er 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 cr�er 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 cr��e\n"
-#: g10/tdbio.c:558
+#: g10/tdbio.c:569
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: base de confiance cr��e\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 cr�ation 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 num�ro %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"
"r�pertoire: %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 � z�ro: %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; ex�cutez �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 "caract�re %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� secr�tes\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 cr�ation 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� r�voqu�e"
-#: 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 v�rifier la signature cr��e: %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� secr�tes\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 nettoy�es: %lu\n"
-#: sm/certchain.c:927
+#: sm/certchain.c:1011
#, fuzzy
msgid " (certificate created at "
msgstr "Certificat de r�vocation 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 s�rie 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 "g�n�rer un certificat de r�vocation"
-#: 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 v�rifier la signature cr��e: %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 "v�rifier 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 "pr�f�rence `%s' dupliqu�e\n"
-#: sm/certchain.c:1465
+#: sm/certchain.c:1549
#, fuzzy
msgid "intermediate certificate is good\n"
msgstr "Certificat de r�vocation 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Galician <[email protected]>\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 � unha 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 ""
@@ -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 "li�a longa de m�is\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 v�lido 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 err�neo"
-#: agent/call-pinentry.c:698
+#: agent/call-pinentry.c:742
#, fuzzy
msgid "Bad Passphrase"
msgstr "contrasinal err�neo"
-#: agent/call-pinentry.c:734
+#: agent/call-pinentry.c:778
#, fuzzy
msgid "Passphrase"
msgstr "contrasinal err�neo"
@@ -94,18 +94,18 @@ msgstr "o algoritmo de protecci�n %d%s non est� soportado\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 "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 opci�ns 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 opci�ns `%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 opci�ns 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�n de certificado v�lida"
msgid "a gpg-agent is already running - not starting a new one\n"
msgstr "gpg-agent non est� dispo�ible nesta sesi�n\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 actualizaci�n 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 actualizaci�n 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 v�lido"
-#: 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�n desco�ecida"
-#: 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 dispo�ible para `%s'"
@@ -1113,7 +1113,7 @@ msgstr "AVISO: atop�ronse datos de notaci�n non v�lidos\n"
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� dispo�ible"
@@ -1123,166 +1123,166 @@ msgstr "a chave secreta non est� dispo�ible"
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 s�a selecci�n? "
-#: 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 p�blica 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 v�lido 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 v�lido 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 v�lida\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 v�lida\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, fuzzy, c-format
msgid "key operation not possible: %s\n"
msgstr "A xeraci�n 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 v�lidos.\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 "Selecci�n non v�lida.\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 revocaci�n:\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
#, fuzzy
msgid "unknown key protection algorithm\n"
msgstr "algoritmo de protecci�n desco�ecido\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 est�n dispo�ibles.\n"
-#: g10/card-util.c:1239
+#: g10/card-util.c:1241
#, fuzzy
msgid "secret key already stored on a card\n"
msgstr "om�tese: 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 "sa�r 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 dispo�ible 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 expiraci�n"
-#: 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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "amosar fingerprint"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "xerar un novo par de chaves"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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� unha chave listada"
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: ign�rase o antigo ficheiro de opci�ns 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 v�lido\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 v�lido\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: opci�ns de exportaci�n non v�lidas\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
#, fuzzy
msgid "invalid keyserver options\n"
msgstr "opci�ns de exportaci�n non v�lidas\n"
-#: g10/gpg.c:2577
+#: g10/gpg.c:2595
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: opci�ns de importaci�n non v�lidas\n"
-#: g10/gpg.c:2580
+#: g10/gpg.c:2598
msgid "invalid import options\n"
msgstr "opci�ns de importaci�n non v�lidas\n"
-#: g10/gpg.c:2587
+#: g10/gpg.c:2605
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: opci�ns de exportaci�n non v�lidas\n"
-#: g10/gpg.c:2590
+#: g10/gpg.c:2608
msgid "invalid export options\n"
msgstr "opci�ns de exportaci�n non v�lidas\n"
-#: g10/gpg.c:2597
+#: g10/gpg.c:2615
#, fuzzy, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: opci�ns de importaci�n non v�lidas\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
#, fuzzy
msgid "invalid list options\n"
msgstr "opci�ns de importaci�n non v�lidas\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 v�lido\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 � v�lido\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 v�lido\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 v�lido\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: opci�ns de exportaci�n non v�lidas\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
#, fuzzy
msgid "invalid verify options\n"
msgstr "opci�ns de exportaci�n non v�lidas\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: opci�ns de exportaci�n non v�lidas\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 empreg�ndoo 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 canalizaci�ns) 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 prec�sase 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 � v�lido\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 � v�lido\n"
-#: g10/gpg.c:3068
+#: g10/gpg.c:3087
#, fuzzy
msgid "selected compression algorithm is invalid\n"
msgstr "o algoritmo de cifrado seleccionado non � v�lido\n"
-#: g10/gpg.c:3074
+#: g10/gpg.c:3093
msgid "selected certification digest algorithm is invalid\n"
msgstr "o algoritmo de resumo de certificaci�n seleccionado non � v�lido\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 comprobaci�n por defecto non v�lido; 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 comprobaci�n por defecto non v�lido; 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: desacons�llase 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 v�lido; 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 v�lidas\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "preferencias de cifrado personais non v�lidas\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "preferencias de resumo personais non v�lidas\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "preferencias de compresi�n personais non v�lidas\n"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, c-format
msgid "%s does not yet work with %s\n"
msgstr "�%s a�nda 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 compresi�n \"%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 p�blica\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 env�o 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 recepci�n 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 exportaci�n 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 actualizaci�n 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 po�e-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 v�lido `%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 s�a 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 certificaci�n dado non � v�lido\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 � v�lido\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 � v�lido\n"
@@ -3036,22 +3036,22 @@ msgstr "om�tese: a chave secreta xa est� presente\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "om�tese: 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 sincronizaci�n: %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�n da base de datos de confianza demasiado grande\n"
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 versi�n: %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 v�lida\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 t�boa 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 versi�n: %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 versi�n: %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 versi�n: %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 versi�n con n�mero de rexistro %lu\n"
-#: g10/tdbio.c:1217
+#: g10/tdbio.c:1228
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: versi�n 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 p�r 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 "car�cter radix64 non v�lido %02x omitido\n"
+#: sm/call-agent.c:136
+#, fuzzy, c-format
+msgid "failed to proxy %s inquiry to client\n"
+msgstr "erro ao p�r '%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 versi�n %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 dispo�ible 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 comprobaci�n 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 "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:815 sm/certchain.c:900
+#: sm/certchain.c:899 sm/certchain.c:984
#, fuzzy
msgid "root certificate not yet valid"
msgstr "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:816 sm/certchain.c:901
+#: sm/certchain.c:900 sm/certchain.c:985
#, fuzzy
msgid "intermediate certificate not yet valid"
msgstr "Revocaci�n de certificado v�lida"
-#: 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 revocaci�n.\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "Revocaci�n de certificado v�lida"
-#: 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 comprobaci�n 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 "Revocaci�n de certificado v�lida"
-#: sm/certchain.c:1309
+#: sm/certchain.c:1393
#, fuzzy
msgid "issuer certificate not found"
msgstr "Revocaci�n de certificado v�lida"
-#: 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 "Revocaci�n de certificado v�lida"
-#: 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 p�r '%s' na base de datos de confianza: %s\n"
-
#~ msgid "WARNING: can't yet handle long pref records\n"
#~ msgstr ""
#~ "AVISO: a�nda 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: [email protected]\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 L�szl� <[email protected]>\n"
"Language-Team: Hungarian <[email protected]>\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 adatb�zis (%s) inicializ�l�sa 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�rem, adja meg a jelsz�t! Ezt egy titkos mondat. \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 "A sor t�l hossz�!\n"
-#: agent/call-pinentry.c:672
+#: agent/call-pinentry.c:716
#, fuzzy
msgid "Passphrase too long"
msgstr "A jelsz� t�l hossz�!\n"
-#: agent/call-pinentry.c:680
+#: agent/call-pinentry.c:724
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "�rv�nytelen karakter a n�vben!\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 "hib�s 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�d� algoritmus nem t�mogatott.\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 "Nem tudom l�trehozni a(z) \"%s\" �llom�nyt: %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 "MEGJEGYZ�S: Nincs alap�rtelmezett opci�s f�jl (%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\" opci�s f�jl: %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 opci�kat a \"%s\" �llom�nyb�l olvasom.\n"
@@ -428,16 +428,16 @@ msgstr "Hiba \"%s\" l�trehoz�sakor: %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 "Nem tudom a \"%s\" k�nyvt�rat l�trehozni: %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� l�tre: %s\n"
@@ -452,22 +452,22 @@ msgstr ""
msgid "a gpg-agent is already running - not starting a new one\n"
msgstr "GPG �gyn�k nem el�rhet� 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� l�trehoz�sakor: %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 k�ld�skor: %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 "Friss�t�s 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 �llom�nyba.\n"
@@ -487,7 +487,7 @@ msgstr "Bizalmi adatb�zis: olvas�s sikertelen (n=%d): %s.\n"
msgid "can't use `%s' as home directory\n"
msgstr "%s: Nem tudom a k�nyvt�rat l�trehozni: %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\" olvas�sakor: %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 friss�t�se 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�v�ltoztat�s"
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� l�trehoz�sakor: %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 �llom�nyt: %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\" olvas�sakor: %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 �r�sakor: %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\" olvas�sakor: %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\" olvas�sakor: %s\n"
@@ -784,17 +784,17 @@ msgstr "A felhaszn�l� megszak�totta a m�veletet.\n"
msgid "problem with the agent\n"
msgstr "Probl�ma az �gyn�kkel: �gyn�k v�lasza: 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 f�jlokat: %s.\n"
-#: common/sysutils.c:199
+#: common/sysutils.c:200
#, fuzzy, c-format
msgid "Warning: unsafe ownership on %s \"%s\"\n"
msgstr "FIGYELEM: Nem biztons�gos 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 biztons�gos enged�lyek: %s \"%s\"\n"
@@ -966,24 +966,24 @@ msgstr "rossz igazol�s"
msgid "Included certificates"
msgstr "rossz igazol�s"
-#: 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 rendelkez�sre seg�ts�g \"%s\" t�m�hoz."
@@ -1103,7 +1103,7 @@ msgstr "FIGYELEM: �rv�nytelen jel�l� adatot tal�ltam.\n"
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 rendelkez�sre"
@@ -1113,166 +1113,166 @@ msgstr "titkos kulcs nem �ll rendelkez�sre"
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 megcsin�lni k�tegelt m�dban!\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 v�laszt? "
-#: 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� nyilv�nos 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\" olvas�sakor: %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 "preferenci�k friss�t�se"
-#: g10/card-util.c:804
+#: g10/card-util.c:806
#, fuzzy
msgid "Error: invalid length of preference string.\n"
msgstr "�rv�nytelen karakter a preferenci�k k�z�tt!\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
#, fuzzy
msgid "Error: invalid characters in preference string.\n"
msgstr "�rv�nytelen karakter a preferenci�k k�z�tt!\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: �rv�nytelen 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: �rv�nytelen ujjlenyomat.\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, fuzzy, c-format
msgid "key operation not possible: %s\n"
msgstr "Kulcsgener�l�s sikertelen: %s\n"
-#: g10/card-util.c:941
+#: g10/card-util.c:943
#, fuzzy
msgid "not an OpenPGP card"
msgstr "Nem tal�ltam �rv�nyes 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 �r�sakor: %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 "K�rem, adja meg, milyen kulcsot k�v�n:\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 al��r�s lej�rt: %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 titkos�t�s)\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 "�rv�nytelen v�laszt�s.\n"
-#: g10/card-util.c:1194
+#: g10/card-util.c:1196
#, fuzzy
msgid "Please select where to store the key:\n"
msgstr "K�rem, v�lassza ki a visszavon�s ok�t:\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
#, fuzzy
msgid "unknown key protection algorithm\n"
msgstr "Ismeretlen v�delmi algoritmus!\n"
-#: g10/card-util.c:1234
+#: g10/card-util.c:1236
#, fuzzy
msgid "secret parts of key are not available\n"
msgstr "Az els�dleges kulcs titkos r�szei nem el�rhet�k.\n"
-#: g10/card-util.c:1239
+#: g10/card-util.c:1241
#, fuzzy
msgid "secret key already stored on a card\n"
msgstr "Kihagytam: titkos kulcs m�r 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 "kil�p�s ebb�l a men�b�l"
-#: g10/card-util.c:1309
+#: g10/card-util.c:1311
#, fuzzy
msgid "show admin commands"
msgstr "Egym�snak 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 s�g�t"
-#: g10/card-util.c:1312
+#: g10/card-util.c:1314
#, fuzzy
msgid "list all available data"
msgstr "Kulcs tal�lhat�: "
-#: 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 "lej�rat megv�ltoztat�sa"
-#: g10/card-util.c:1319
+#: g10/card-util.c:1321
#, fuzzy
msgid "change the language preferences"
msgstr "kulcstulajdonos megb�zhat�s�g�nak be�ll�t�sa"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "megmutatja az ujjlenyomatot"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "�j kulcsp�r l�trehoz�sa"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "Parancs> "
-#: g10/card-util.c:1483
+#: g10/card-util.c:1485
#, fuzzy
msgid "Admin-only command\n"
msgstr "Egym�snak ellentmond� parancsok!\n"
-#: g10/card-util.c:1514
+#: g10/card-util.c:1516
#, fuzzy
msgid "Admin commands are allowed\n"
msgstr "Egym�snak 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 �llom�nyba.\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 "�rv�nytelen parancs! (Pr�b�lja a s�g�t: \"help\".)\n"
@@ -1417,7 +1417,7 @@ msgstr "�rv�nytelen parancs! (Pr�b�lja a s�g�t: \"help\".)\n"
msgid "--output doesn't work for this command\n"
msgstr "Az --output opci� nem m�k�dik 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�zott kulcs kulcskarik�j�t is"
msgid "show expiration dates during signature listings"
msgstr "Nincs megfelel� al��r�s a titkoskulcs-karik�n.\n"
-#: g10/gpg.c: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 "MEGJEGYZ�S: Figyelmen k�v�l hagytam a r�gi opci�kat (%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 "MEGJEGYZ�S: %s nem norm�l haszn�latra 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 �rv�nyes karakterkioszt�s!\n"
-#: g10/gpg.c:2532
+#: g10/gpg.c:2550
#, fuzzy, c-format
msgid "`%s' is not a valid character set\n"
msgstr "%s nem �rv�nyes karakterkioszt�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 "�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: �rv�nytelen export opci�k!\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
#, fuzzy
msgid "invalid keyserver options\n"
msgstr "�rv�nytelen export opci�k!\n"
-#: g10/gpg.c:2577
+#: g10/gpg.c:2595
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: �rv�nytelen import opci�k!\n"
-#: g10/gpg.c:2580
+#: g10/gpg.c:2598
msgid "invalid import options\n"
msgstr "�rv�nytelen import opci�k!\n"
-#: g10/gpg.c:2587
+#: g10/gpg.c:2605
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: �rv�nytelen export opci�k!\n"
-#: g10/gpg.c:2590
+#: g10/gpg.c:2608
msgid "invalid export options\n"
msgstr "�rv�nytelen export opci�k!\n"
-#: g10/gpg.c:2597
+#: g10/gpg.c:2615
#, fuzzy, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: �rv�nytelen import opci�k!\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
#, fuzzy
msgid "invalid list options\n"
msgstr "�rv�nytelen import opci�k!\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 �rv�nyes karakterkioszt�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 "A megadott al��r�si elj�r�sm�d URL-je �rv�nytelen!\n"
-#: g10/gpg.c:2622
+#: g10/gpg.c:2640
#, fuzzy
msgid "show user ID validity during signature verification"
msgstr "%s nem �rv�nyes karakterkioszt�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 nem �rv�nyes karakterkioszt�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: �rv�nytelen export opci�k!\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
#, fuzzy
msgid "invalid verify options\n"
msgstr "�rv�nytelen export opci�k!\n"
-#: g10/gpg.c:2647
+#: g10/gpg.c:2665
#, c-format
msgid "unable to set exec-path to %s\n"
msgstr "Nem tudom a v�grehajt�si el�r�si utat %s �rt�kre �ll�tani!\n"
-#: g10/gpg.c:2822
+#: g10/gpg.c:2840
#, fuzzy, c-format
msgid "%s:%d: invalid auto-key-locate list\n"
msgstr "%s:%d: �rv�nytelen export opci�k!\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 �llom�nyt hozhat l�tre!\n"
-#: g10/gpg.c:2924
+#: g10/gpg.c:2943
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "FIGYELEM: %s hat�stalan�tja %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 haszn�lhat� egy�tt!\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 �llom�nyba.\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 k�l�n�ll� �s olvashat�sz�veg-al��r�st k�sz�thet --pgp2 m�dban!\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 titkos�that egyszerre --pgp2 m�dban!\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 �llom�nyokat (pipe-ot nem) haszn�lhat --pgp2 m�dban!\n"
-#: g10/gpg.c:2990
+#: g10/gpg.c:3009
msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n"
msgstr "�zenet titkos�t�sa --pgp2 m�dban IDEA rejtjelez�t ig�nyel!\n"
-#: g10/gpg.c: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 kiv�lasztott rejtjelez� algoritmus �rv�nytelen!\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 kiv�lasztott kivonatol� algoritmus �rv�nytelen!\n"
-#: g10/gpg.c:3068
+#: g10/gpg.c:3087
#, fuzzy
msgid "selected compression algorithm is invalid\n"
msgstr "A kiv�lasztott rejtjelez� algoritmus �rv�nytelen!\n"
-#: g10/gpg.c:3074
+#: g10/gpg.c:3093
msgid "selected certification digest algorithm is invalid\n"
msgstr "Az igazol�shoz kiv�lasztott kivonatol� algoritmus �rv�nytelen!\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-n�l!\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-n�l!\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 k�z� 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 "�rv�nytelen 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 "�rv�nytelen 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 "MEGJEGYZ�S: Egyszer� S2K m�d (0) er�sen ellenjavallt!\n"
-#: g10/gpg.c:3104
+#: g10/gpg.c:3123
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "�rv�nytelen S2K m�d; 0, 1 vagy 3 lehet.\n"
-#: g10/gpg.c:3111
+#: g10/gpg.c:3130
msgid "invalid default preferences\n"
msgstr "�rv�nytelen alap�rtelmezett preferenci�k!\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "�rv�nytelen szem�lyes rejtjelez�-preferenci�k!\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "�rv�nytelen szem�lyes kivonatol�preferenci�k!\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "�rv�nytelen szem�lyes t�m�r�t�preferenci�k!\n"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s �s %s egyel�re nem haszn�lhat� egy�tt!\n"
-#: g10/gpg.c: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 haszn�lhatja \"%s\" rejtjelez� algoritmust %s m�dban!\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 haszn�lhatja \"%s\" kivonatol� algoritmust %s m�dban!\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 haszn�lhatja \"%s\" t�m�r�t� algoritmust %s m�dban!\n"
-#: g10/gpg.c:3310
+#: g10/gpg.c:3329
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "Bizalmi adatb�zis (%s) inicializ�l�sa sikertelen!\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr ""
"FIGYELEM: C�mzett megadva (-r), de nincs nyilv�nos kulcs� titkos�t�s!\n"
-#: g10/gpg.c:3342
+#: g10/gpg.c:3361
msgid "--store [filename]"
msgstr "--store [f�jln�v]"
-#: g10/gpg.c:3349
+#: g10/gpg.c:3368
msgid "--symmetric [filename]"
msgstr "--symmetric [f�jln�v]"
-#: g10/gpg.c:3351
+#: g10/gpg.c:3370
#, fuzzy, c-format
msgid "symmetric encryption of `%s' failed: %s\n"
msgstr "Visszafejt�s sikertelen: %s.\n"
-#: g10/gpg.c:3361
+#: g10/gpg.c:3380
msgid "--encrypt [filename]"
msgstr "--encrypt [f�jln�v]"
-#: g10/gpg.c:3374
+#: g10/gpg.c:3393
#, fuzzy
msgid "--symmetric --encrypt [filename]"
msgstr "--sign --encrypt [f�jln�v]"
-#: 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 haszn�lhatja %s-t %s m�dban!\n"
-#: g10/gpg.c:3397
+#: g10/gpg.c:3416
msgid "--sign [filename]"
msgstr "--sign [f�jln�v]"
-#: g10/gpg.c:3410
+#: g10/gpg.c:3429
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [f�jln�v]"
-#: g10/gpg.c:3425
+#: g10/gpg.c:3444
#, fuzzy
msgid "--symmetric --sign --encrypt [filename]"
msgstr "--sign --encrypt [f�jln�v]"
-#: 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 haszn�lhatja %s-t %s m�dban!\n"
-#: g10/gpg.c:3450
+#: g10/gpg.c:3469
msgid "--sign --symmetric [filename]"
msgstr "--sign --symmetric [f�jln�v]"
-#: g10/gpg.c:3459
+#: g10/gpg.c:3478
msgid "--clearsign [filename]"
msgstr "--clearsign [f�jln�v]"
-#: g10/gpg.c:3484
+#: g10/gpg.c:3503
msgid "--decrypt [filename]"
msgstr "--decrypt [f�jln�v]"
-#: g10/gpg.c:3492
+#: g10/gpg.c:3511
msgid "--sign-key user-id"
msgstr "--sign-key felh-azonos�t�"
-#: g10/gpg.c:3496
+#: g10/gpg.c:3515
msgid "--lsign-key user-id"
msgstr "--lsign-key felh-azonos�t�"
-#: g10/gpg.c:3517
+#: g10/gpg.c:3536
msgid "--edit-key user-id [commands]"
msgstr "--edit-key felh-azonos�t� [parancsok]"
-#: g10/gpg.c:3602
+#: g10/gpg.c:3621
#, c-format
msgid "keyserver send failed: %s\n"
msgstr "K�ld�s a kulcsszerverre sikertelen: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "V�tel a kulcsszerverr�l sikertelen: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "Kulcsexport�l�s sikertelen: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "Keres�s a kulcsszerveren sikertelen: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "Friss�t�s a kulcsszerverr�l sikertelen: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "P�nc�l elt�vol�t�sa nem siker�lt: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "P�nc�loz�s nem siker�lt: %s\n"
-#: g10/gpg.c:3776
+#: g10/gpg.c:3795
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "�rv�nytelen kivonatol� algoritmus: %s\n"
-#: g10/gpg.c:3893
+#: g10/gpg.c:3912
msgid "[filename]"
msgstr "[f�jln�v]"
-#: g10/gpg.c:3897
+#: g10/gpg.c:3916
msgid "Go ahead and type your message ...\n"
msgstr "Kezdheti g�pelni az �zenetet...\n"
-#: g10/gpg.c:4209
+#: g10/gpg.c:4228
msgid "the given certification policy URL is invalid\n"
msgstr "A megadott igazol�si elj�r�sm�d URL-je �rv�nytelen!\n"
-#: g10/gpg.c:4211
+#: g10/gpg.c:4230
msgid "the given signature policy URL is invalid\n"
msgstr "A megadott al��r�si elj�r�sm�d URL-je �rv�nytelen!\n"
-#: g10/gpg.c:4244
+#: g10/gpg.c:4263
#, fuzzy
msgid "the given preferred keyserver URL is invalid\n"
msgstr "A megadott al��r�si elj�r�sm�d URL-je �rv�nytelen!\n"
@@ -3009,22 +3009,22 @@ msgstr "Kihagytam: titkos kulcs m�r jelen van.\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "Kihagytam: titkos kulcs m�r 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 l�trehoz�sakor: %s\n"
-#: g10/keydb.c:174
+#: g10/keydb.c:187
#, c-format
msgid "keyring `%s' created\n"
msgstr "\"%s\" kulcskarik�t l�trehoztam.\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\" l�trehoz�sakor: %s\n"
-#: g10/keydb.c:697
+#: g10/keydb.c:710
#, c-format
msgid "failed to rebuild keyring cache: %s\n"
msgstr "Nem tudtam �jra�p�teni a kulcskarika cache-�t: %s\n"
@@ -6107,12 +6107,12 @@ msgstr "Olvas�si hiba: %s.\n"
msgid "trustdb: sync failed: %s\n"
msgstr "Bizalmi adatb�zis: szinkroniz�ci� 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 adatb�zis %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 adatb�zis %lu. rekord: �r�s sikertelen (n=%d): %s.\n"
@@ -6126,112 +6126,112 @@ msgstr "Bizalmi adatb�zis tranzakci�ja t�l nagy.\n"
msgid "can't access `%s': %s\n"
msgstr "Nem tudom bez�rni a(z) \"%s\" �llom�nyt: %s.\n"
-#: g10/tdbio.c:513
+#: g10/tdbio.c:524
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: K�nyvt�r nem l�tezik!\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 l�trehozni a(z) \"%s\" �llom�nyt: %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 siker�lt verzi�rekordot l�trehoznom: %s"
-#: g10/tdbio.c:555
+#: g10/tdbio.c:566
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: �rv�nytelen bizalmi adatb�zis j�tt l�tre.\n"
-#: g10/tdbio.c:558
+#: g10/tdbio.c:569
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: Bizalmi adatb�zis l�trej�tt.\n"
-#: g10/tdbio.c:600
+#: g10/tdbio.c:611
msgid "NOTE: trustdb not writable\n"
msgstr "MEGJEGYZ�S: Bizalmi adatb�zis nem �rhat�.\n"
-#: g10/tdbio.c:608
+#: g10/tdbio.c:619
#, c-format
msgid "%s: invalid trustdb\n"
msgstr "%s: �rv�nytelen bizalmi adatb�zis.\n"
-#: g10/tdbio.c:640
+#: g10/tdbio.c:651
#, c-format
msgid "%s: failed to create hashtable: %s\n"
msgstr "%s: Hasht�bla l�trehoz�sa 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 verzi�rekord friss�t�sekor: %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 verzi�rekord olvas�sakor: %s.\n"
-#: g10/tdbio.c:724
+#: g10/tdbio.c:735
#, c-format
msgid "%s: error writing version record: %s\n"
msgstr "%s: Hiba a verzi�rekord �r�sakor: %s.\n"
-#: g10/tdbio.c:1164
+#: g10/tdbio.c:1175
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "Bizalmi adatb�zis: lseek sikertelen: %s.\n"
-#: g10/tdbio.c:1173
+#: g10/tdbio.c:1184
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "Bizalmi adatb�zis: olvas�s 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 adatb�zis.\n"
-#: g10/tdbio.c:1212
+#: g10/tdbio.c:1223
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: Verzi�rekord, rekordsz�m: %lu.\n"
-#: g10/tdbio.c:1217
+#: g10/tdbio.c:1228
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: �rv�nytelen �llom�nyverzi� (%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 olvas�sakor: %s.\n"
-#: g10/tdbio.c:1410
+#: g10/tdbio.c:1421
#, c-format
msgid "%s: error writing dir record: %s\n"
msgstr "%s: Hiba k�nyvt�rrekord �r�sakor: %s.\n"
-#: g10/tdbio.c:1420
+#: g10/tdbio.c:1431
#, c-format
msgid "%s: failed to zero a record: %s\n"
msgstr "%s: Nem siker�lt egy rekord null�z�sa: %s.\n"
-#: g10/tdbio.c:1450
+#: g10/tdbio.c:1461
#, c-format
msgid "%s: failed to append a record: %s\n"
msgstr "%s: Nem siker�lt egy rekord hozz�ad�sa: %s.\n"
-#: g10/tdbio.c:1495
+#: g10/tdbio.c:1506
msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
msgstr "Bizalmi adatb�zis s�r�lt. K�rem, 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 k�d� �rv�nytelen 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 t�mogatott!\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\" �llom�nyt: %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 �llom�nyba.\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� l�trehoz�sakor: %s.\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "A kulcsblokk t�rl�se 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 adatb�zis (%s) inicializ�l�sa sikertelen!\n"
-#: sm/certchain.c:742
+#: sm/certchain.c:826
#, fuzzy
msgid "certificate has been revoked"
msgstr "MEGJEGYZ�S: A kulcsot visszavont�k."
-#: sm/certchain.c:752
+#: sm/certchain.c:836
#, fuzzy
msgid "no CRL found for certificate"
msgstr "rossz igazol�s"
-#: 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 tal�lhat�: "
-#: 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 l�trehozott al��r�s ellen�rz�se 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 �llom�nyba.\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 lej�rt!"
-#: sm/certchain.c:830
+#: sm/certchain.c:914
#, fuzzy
msgid "root certificate has expired"
msgstr "Ez a kulcs lej�rt!"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
#, fuzzy
msgid "intermediate certificate has expired"
msgstr "Ez a kulcs lej�rt!"
-#: 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 lej�rt!"
-#: 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 al��r�sok: %lu\n"
-#: sm/certchain.c:927
+#: sm/certchain.c:1011
#, fuzzy
msgid " (certificate created at "
msgstr "Visszavon� igazol�s l�trehozva.\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "rossz igazol�s"
-#: 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 "visszavon�si igazol�s k�sz�t�se"
-#: 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 l�trehozott al��r�s ellen�rz�se 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 "al��r�s ellen�rz�se"
-#: 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 k�tszer szerepel!\n"
-#: sm/certchain.c:1465
+#: sm/certchain.c:1549
#, fuzzy
msgid "intermediate certificate is good\n"
msgstr "Visszavon� igazol�s l�trehozva.\n"
-#: sm/certchain.c:1466
+#: sm/certchain.c:1550
#, fuzzy
msgid "root certificate is good\n"
msgstr "rossz igazol�s"
-#: 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Indonesian <[email protected]>\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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "tampilkan fingerprint"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "buat sepasang kunci baru"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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: [email protected]\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 <[email protected]>\n"
"Language-Team: Italian <[email protected]>\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� una frase segreta \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 "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 � gestito\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 "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 � disponibile"
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
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr ""
-#: g10/card-util.c:1321
+#: g10/card-util.c:1323
#, fuzzy
msgid "change a CA fingerprint"
msgstr "mostra le impronte digitali"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "genera una nuova coppia di chiavi"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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
+#: g10/gpg.c:1805
#, c-format
-msgid "libgcrypt is too old (need %s, have %s)\n"
+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:1997
+#: g10/gpg.c:1896
#, c-format
-msgid "NOTE: old default options file `%s' ignored\n"
+msgid "libgcrypt is too old (need %s, have %s)\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: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� presente\n"
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: [email protected]\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 <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\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 "�ѥ��ե졼�������Ϥ��Ƥ����������������̩��ʸ�ϤΤ��ȤǤ� \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 "�ѥ��ե졼����Ĺ�����ޤ�\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 "�ݸ�����%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"
@@ -788,17 +788,17 @@ msgstr "�桼�����ˤ���ä�\n"
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 "�ٹ�: ̵��������ǡ�����ȯ��\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������no. %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 "̵���ʥ��ޥ�� (��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"
@@ -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-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 �桼����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 "��̩���Ϥ⤦�����ɤ��ݴɤ��Ƥ���ޤ�\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
#, 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 "��%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"
@@ -5940,112 +5940,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"
@@ -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: [email protected]\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 Endrest�l <[email protected]>\n"
"Language-Team: Norwegian Bokm�l <[email protected]>\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 s�king 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 n�kkel 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 n�kkelknippet"
-#: 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 n�v�rende n�kkelinfo: %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 gj�re 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 forel�pig 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 g�r 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 n�kkel: "
-#: 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 g�r 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 g�r 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 g�r ved %d tegn).\n"
-#: g10/card-util.c:796
+#: g10/card-util.c:798
msgid "Language preferences: "
msgstr "Spr�kpreferanser:"
-#: 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 "Kj�nn ((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 "n�kkeloperasjonen 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 n�v�rende n�kkelinfo: %s\n"
-#: g10/card-util.c:1034
+#: g10/card-util.c:1036
msgid "Replace existing key? (y/N) "
msgstr "Erstatte eksisterende n�kkel? (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 krypteringsn�kler utenfor kortet? (J/n) "
-#: g10/card-util.c:1075
+#: g10/card-util.c:1077
msgid "Replace existing keys? (y/N) "
msgstr "Erstatte eksisterende n�kler? (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 b�r 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 n�kkel 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) Signaturn�kkel\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) Krypteringsn�kkel\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) Autentiseringsn�kkel\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 n�kkelen skal lagres:\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
msgid "unknown key protection algorithm\n"
msgstr "ukjent n�kkelbeskyttelsesalgoritme\n"
-#: g10/card-util.c:1234
+#: g10/card-util.c:1236
msgid "secret parts of key are not available\n"
msgstr "hemmelige deler av n�kkelen 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 n�kkel 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 n�kkel"
-#: g10/card-util.c:1317
+#: g10/card-util.c:1319
msgid "fetch the key specified in the card URL"
msgstr "hente n�kkelen angitt i URL som er lagret i kortet"
-#: g10/card-util.c: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 spr�kpreferansene"
-#: g10/card-util.c:1320
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr "endre kortholders kj�nn"
-#: 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 n�kler"
-#: 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 (pr�v �help�)\n"
@@ -1381,7 +1381,7 @@ msgstr "Ugyldig kommando (pr�v �help�)\n"
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�kkelknippene i n�kkellister"
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 signaturutg�else\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 n�kkelserverens 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 n�kkelserver\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
msgid "invalid keyserver options\n"
msgstr "ugyldige valg for n�kkelserver\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) n�r --pgp2 er p�sl�tt\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� v�re st�rre enn 0\n"
-#: g10/gpg.c:3091
+#: g10/gpg.c:3110
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-neede m� v�re st�rre 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� v�re 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� v�re 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� v�re 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 frar�det\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� v�re 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 n�kkelkryptering\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 n�kkelserver mislyktes: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "mottak fra n�kkelserver mislyktes: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "n�kkeleksport mislyktes: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "s�k p� n�kkelserver mislyktes: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "refresh p� n�kkelserver 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 n�kkelserveren 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 n�kkelknippet �%s�: %s\n"
-#: g10/keydb.c:174
+#: g10/keydb.c:187
#, c-format
msgid "keyring `%s' created\n"
msgstr "n�kkelknippet �%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 "n�kkelblokkressurs �%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 �%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 ""
@@ -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 l�s 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 l�se �%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 n�kler 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 n�kkel 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 n�kkelen: %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 "N�kkel 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 n�kkelblokk 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 n�kler 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 n�kkelen er utg�tt!"
-#: sm/certchain.c:830
+#: sm/certchain.c:914
#, fuzzy
msgid "root certificate has expired"
msgstr "Denne n�kkelen er utg�tt!"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
#, fuzzy
msgid "intermediate certificate has expired"
msgstr "Denne n�kkelen er utg�tt!"
-#: 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 n�kkelen er utg�tt!"
-#: 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 "omd�ping 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 "n�kkel %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: [email protected]\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 <[email protected]>\n"
"Language-Team: Polish <[email protected]>\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 uda�o 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� sw�j 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��: %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 (pr�ba %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 d�ugi"
-#: agent/call-pinentry.c:672
+#: agent/call-pinentry.c:716
msgid "Passphrase too long"
msgstr "Has�o zbyt d�ugie"
-#: agent/call-pinentry.c:680
+#: agent/call-pinentry.c:724
msgid "Invalid characters in PIN"
msgstr "Niew�a�ciwy znak w PIN-ie"
-#: agent/call-pinentry.c:685
+#: agent/call-pinentry.c:729
msgid "PIN too short"
msgstr "PIN zbyt kr�tki"
-#: 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 has�o"
-#: agent/call-pinentry.c:734
+#: agent/call-pinentry.c:778
msgid "Passphrase"
msgstr "Has�o"
@@ -94,18 +94,18 @@ msgstr "klucze ssh wi�ksze ni� %d bit�w nie s� obs�ugiwane\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 "nie mo�na 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��dny poziom diagnostyki ,,%s''\n"
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 domy�lnego 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��d tworzenia ,,%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 "nie mo�na 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 d�uga\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 mo�na utworzy� gniazda: %s\n"
@@ -456,22 +456,22 @@ msgstr "nazwa gniazda zbyt d�uga\n"
msgid "a gpg-agent is already running - not starting a new one\n"
msgstr "gpg-agent ju� dzia�a - 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 "b��d 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 "b��d 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 powiod�o 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 "nas�uchiwanie na gnie�dzie ,,%s''\n"
@@ -491,7 +491,7 @@ msgstr "stat() nie powiod�o si� dla ,,%s'': %s\n"
msgid "can't use `%s' as home directory\n"
msgstr "nie mo�na u�y� ,,%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 "b��d odczytu z %s: %s\n"
@@ -516,12 +516,12 @@ msgstr "obs�uga ssh 0x%lx dla fd %d uruchomiona\n"
msgid "ssh handler 0x%lx for fd %d terminated\n"
msgstr "obs�uga ssh 0x%lx dla fd %d zako�czona\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 powiod�o 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�a"
msgid "I'll change it later"
msgstr "Zmieni� je p�niej"
-#: 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 "b��d 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 mo�na 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 "b��d 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 zako�czenie procesu %d nie powiod�o si�: %s\n"
-#: common/exechelp.c:653
+#: common/exechelp.c:661
#, c-format
msgid "error getting exit code of process %d: %s\n"
msgstr "b��d odczytu kodu zako�czenia 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 "b��d uruchamiania ,,%s'': kod wyj�cia %d\n"
-#: common/exechelp.c:704
+#: common/exechelp.c:712
#, c-format
msgid "error running `%s': probably not installed\n"
msgstr "b��d uruchamiania ,,%s'': prawdopodobnie nie zainstalowany\n"
-#: common/exechelp.c:717
+#: common/exechelp.c:725
#, c-format
msgid "error running `%s': terminated\n"
msgstr "b��d uruchamiania ,,%s'': zako�czono\n"
@@ -787,17 +787,17 @@ msgstr "anulowano przez u�ytkownika\n"
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 mo�na wy��czy� zrzut�w pami�ci: %s\n"
-#: common/sysutils.c:199
+#: common/sysutils.c:200
#, c-format
msgid "Warning: unsafe ownership on %s \"%s\"\n"
msgstr "Ostrze�enie: niebezpieczne prawa w�asno�ci do %s ,,%s''\n"
-#: common/sysutils.c:231
+#: common/sysutils.c:232
#, c-format
msgid "Warning: unsafe permissions on %s \"%s\"\n"
msgstr "Ostrze�enie: niebezpieczne prawa dost�pu do %s ,,%s''\n"
@@ -971,24 +971,24 @@ msgstr "nie znaleziono CRL dla certyfikatu"
msgid "Included certificates"
msgstr "eksport certyfikat�w"
-#: 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�ENIE: napotkano b��dne dane adnotacji\n"
msgid "not human readable"
msgstr "nieczytelne dla cz�owieka"
-#: 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 niedost�pna: %s\n"
@@ -1116,153 +1116,153 @@ msgstr "Karta OpenPGP niedost�pna: %s\n"
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 dzia�a 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 "Tw�j wyb�r? "
-#: 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 "m�czyzna"
-#: 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 "B��d: 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 "B��d: znak ,,<'' nie mo�e by� u�yty.\n"
-#: g10/card-util.c:525
+#: g10/card-util.c:527
msgid "Error: Double spaces are not allowed.\n"
msgstr "B��d: podw�jne 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 "B��d: pe�ne personalia zbyt d�ugie (limit to %d znak�w).\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 "B��d: URL zbyt d�ugi (limit to %d znak�w).\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 "b��d 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 "B��d: dane logowania zbyt d�ugie (limit to %d znak�w).\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 "B��d: prywatne DO zbyt d�ugie (limit to %d znak�w).\n"
-#: g10/card-util.c:796
+#: g10/card-util.c:798
msgid "Language preferences: "
msgstr "Preferowane j�zyki: "
-#: g10/card-util.c:804
+#: g10/card-util.c:806
msgid "Error: invalid length of preference string.\n"
msgstr "B��d: niew�a�ciwa d�ugo�� tekstu preferencji.\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
msgid "Error: invalid characters in preference string.\n"
msgstr "B��d: niew�a�ciwe znaki w tek�cie preferencji.\n"
-#: g10/card-util.c:834
+#: g10/card-util.c:836
msgid "Sex ((M)ale, (F)emale or space): "
msgstr "P�e� (M - m�czyzna, F - kobieta lub spacja): "
-#: g10/card-util.c:848
+#: g10/card-util.c:850
msgid "Error: invalid response.\n"
msgstr "B��d: niew�a�ciwa 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 "B��d: niew�a�ciwie 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 "b��d 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 "Zast�pi� istniej�cy 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 szyfruj�cego? (T/n) "
-#: g10/card-util.c:1075
+#: g10/card-util.c:1077
msgid "Replace existing keys? (y/N) "
msgstr "Zast�pi� istniej�ce 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"
"Nale�y je zmieni� przy u�yciu 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 podpis�w\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 "Niew�a�ciwy wyb�r.\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 "cz�ci tajne klucza s� niedost�pne\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 "wyj�cie 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 dost�pnych 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 okre�lonego 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 j�zyk�w"
-#: g10/card-util.c:1320
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr "zmiana p�ci 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 (spr�buj ,,help'')\n"
@@ -1394,7 +1394,7 @@ msgstr "Niepoprawne polecenie (spr�buj ,,help'')\n"
msgid "--output doesn't work for this command\n"
msgstr "opcja --output nie dzia�a 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 mo�na 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 wyga�ni�cia przy wypisywaniu podpis�w"
-#: g10/gpg.c:1839
+#: g10/gpg.c:1805
+#, c-format
+msgid "NOTE: old default options file `%s' ignored\n"
+msgstr "UWAGA: stary domy�lny plik opcji ,,%s'' zosta� zignorowany\n"
+
+#: g10/gpg.c: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 domy�lny 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 u�ytku!\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 wyga�ni�cia 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 znak�w\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 "niezrozumia�y 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 "wy�wietlanie ID zdj�� przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2610
+#: g10/gpg.c:2628
msgid "show policy URLs during signature verification"
msgstr "pokazywanie URL-i polityk przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2612
+#: g10/gpg.c:2630
msgid "show all notations during signature verification"
msgstr "pokazywanie wszystkich adnotacji przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2614
+#: g10/gpg.c:2632
msgid "show IETF standard notations during signature verification"
msgstr "pokazywanie standardowych adnotacji IETF przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2618
+#: g10/gpg.c:2636
msgid "show user-supplied notations during signature verification"
msgstr "pokazywanie adnotacji u�ytkownika przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2620
+#: g10/gpg.c:2638
msgid "show preferred keyserver URLs during signature verification"
msgstr ""
"pokazywanie URL-i preferowanych serwer�w kluczy przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2622
+#: g10/gpg.c:2640
msgid "show user ID validity during signature verification"
msgstr "pokazywanie poprawno�ci ID u�ytkownika przy sprawdzaniu podpis�w"
-#: g10/gpg.c:2624
+#: g10/gpg.c:2642
msgid "show revoked and expired user IDs in signature verification"
msgstr ""
"pokazywanie uniewa�nionych i wygas�ych ID u�ytkownika przy sprawdzaniu "
"podpis�w"
-#: g10/gpg.c:2626
+#: g10/gpg.c:2644
msgid "show only the primary user ID in signature verification"
msgstr "pokazywanie tylko g��wnego ID u�ytkownika przy sprawdzaniu podpisu"
-#: g10/gpg.c:2628
+#: g10/gpg.c:2646
msgid "validate signatures with PKA data"
msgstr "sprawdzanie podpis�w z danymi PKA"
-#: g10/gpg.c:2630
+#: g10/gpg.c:2648
msgid "elevate the trust of signatures with valid PKA data"
msgstr "zwi�kszenie zaufania podpis�w 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 mo�na ustawi� �cie�ki program�w 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 "OSTRZE�ENIE: program mo�e stworzy� plik zrzutu pami�ci!\n"
-#: g10/gpg.c:2924
+#: g10/gpg.c:2943
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "OSTRZE�ENIE: %s powoduje obej�cie %s\n"
-#: g10/gpg.c:2933
+#: g10/gpg.c:2952
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "Nie wolno u�ywa� %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 po��czeniu 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 zadzia�a z niebezpieczn� pami�ci� 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 mo�na sk�ada� tylko podpisy oddzielne lub do��czone 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 mo�na jednocze�nie 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 u�ywa� plik�w a nie potok�w.\n"
-#: g10/gpg.c:2990
+#: g10/gpg.c:3009
msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n"
msgstr "szyfrowanie wiadomo�ci w trybie --pgp2 wymaga modu�u szyfru IDEA\n"
-#: g10/gpg.c: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 szyfruj�cy 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 skr�t�w wiadomo�ci 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 skr�t�w po�wiadcze� 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� wi�ksza 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� wi�ksza 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 mie�ci� 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 ""
"niew�a�ciwy domy�lny 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 ""
"niew�a�ciwy 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 "niew�a�ciwe domy�lne ustawienia\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "niew�a�ciwe ustawienia szyfr�w\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "niew�a�ciwe ustawienia skr�t�w\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "niew�a�ciwe ustawienia algorytm�w 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 dzia�a 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 dost�pny 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 "skr�t ,,%s'' nie jest dost�pny 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 dost�pna 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 powiod�o si�: %s\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr "OSTRZE�ENIE: podano adresat�w (-r) w dzia�aniu kt�re ich nie dotyczy\n"
-#: g10/gpg.c: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 powiod�o 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 mo�na u�y� --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 mo�na u�y� --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 mo�na u�y� --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 mo�na u�y� --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 u�ytkownika"
-#: g10/gpg.c:3496
+#: g10/gpg.c:3515
msgid "--lsign-key user-id"
msgstr "--lsign-key nazwa u�ytkownika"
-#: g10/gpg.c:3517
+#: g10/gpg.c:3536
msgid "--edit-key user-id [commands]"
msgstr "--edit-key nazwa u�ytkownika [polecenia]"
-#: g10/gpg.c:3602
+#: g10/gpg.c:3621
#, c-format
msgid "keyserver send failed: %s\n"
msgstr "wysy�ka do serwera kluczy nie powiod�a si�: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "odbi�r z serwera kluczy nie powi�d� si�: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "eksport kluczy nie powi�d� 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 powiod�o si�: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "od�wie�enie kluczy z serwera nie powiod�o si�: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "zdj�cie opakowania ASCII nie powiod�o si�: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "opakowywanie ASCII nie powiod�o si�: %s\n"
-#: g10/gpg.c:3776
+#: g10/gpg.c:3795
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "niew�a�ciwy algorytm skr�tu ,,%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 po�wiadczania jest niepoprawny\n"
-#: g10/gpg.c:4211
+#: g10/gpg.c:4230
msgid "the given signature policy URL is invalid\n"
msgstr "podany URL regulaminu podpis�w 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��wny jest aktywny i zapisany na karcie\n"
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 "b��d tworzenia zbioru kluczy `%s': %s\n"
-#: g10/keydb.c:174
+#: g10/keydb.c:187
#, c-format
msgid "keyring `%s' created\n"
msgstr "zbi�r 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 "zas�b 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 powiod�a si� odbudowa bufora bazy: %s\n"
@@ -6003,12 +6003,12 @@ msgstr "b��d odczytu w ,,%s'': %s\n"
msgid "trustdb: sync failed: %s\n"
msgstr "baza zaufania: synchronizacja nie powiod�a 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 powiod�a 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 powi�d� si� (n=%d): %s\n"
@@ -6022,112 +6022,112 @@ msgstr "zbyt du�e zlecenie dla bazy zaufania\n"
msgid "can't access `%s': %s\n"
msgstr "nie mo�na 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 mo�na 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 mo�na 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 powiod�o 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 mo�na 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 skr�t�w nie powiod�o si�: %s\n"
-#: g10/tdbio.c:648
+#: g10/tdbio.c:659
#, c-format
msgid "%s: error updating version record: %s\n"
msgstr "%s: b��d 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: b��d 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: b��d 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() zawiod�a: %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) zawiod�a: %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: niew�a�ciwa wersja pliku %d\n"
-#: g10/tdbio.c:1402
+#: g10/tdbio.c:1413
#, c-format
msgid "%s: error reading free record: %s\n"
msgstr "%s: b��d 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: b��d 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 powiod�o 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 powiod�o 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 ""
"Sk�adnia: 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� u�y� 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 "obs�uga fd %d uruchomiona\n"
-#: scd/scdaemon.c:1028
+#: scd/scdaemon.c:1030
#, c-format
msgid "handler for fd %d terminated\n"
msgstr "obs�uga fd %d zako�czona\n"
@@ -6685,6 +6685,11 @@ msgstr "obs�uga fd %d zako�czona\n"
msgid "invalid radix64 character %02x skipped\n"
msgstr "niew�a�ciwy znak formatu radix64 %02x zosta� pomini�ty\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�na po��czy� si� z dirmngr - pr�ba fallbacku\n"
msgid "validation model requested by certificate: %s"
msgstr "model poprawno�ci ��dany przez certyfikat: %s"
-#: sm/certchain.c:195 sm/certchain.c:1648
+#: sm/certchain.c:195 sm/certchain.c:1732
msgid "chain"
msgstr "�a�cuchowy"
-#: sm/certchain.c:196 sm/certchain.c:1648
+#: sm/certchain.c:196 sm/certchain.c:1732
msgid "shell"
msgstr "pow�okowy"
@@ -6721,208 +6726,223 @@ msgstr "pow�okowy"
msgid "critical certificate extension %s is not supported"
msgstr "krytyczne rozszerzenie certyfikatu %s nie jest obs�ugiwane"
-#: 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 uda�o 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 zewn�trz\n"
-#: sm/certchain.c:498
+#: sm/certchain.c:499
#, c-format
msgid "number of issuers matching: %d\n"
msgstr "liczba pasuj�cych wystawc�w: %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 zewn�trz\n"
+
+#: sm/certchain.c:565
+#, fuzzy, c-format
+msgid "number of matching certificates: %d\n"
+msgstr "b��d importu certyfikatu: %s\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "zaciemnienie klucza nie powiod�o 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 uda�o si� przydzieli� uchwytu keyDB\n"
-#: sm/certchain.c:742
+#: sm/certchain.c:826
msgid "certificate has been revoked"
msgstr "certyfikat zosta� uniewa�niony"
-#: 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 "dost�pny 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 powiod�o 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 niewa�nej wa�no�ci: %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 wa�ny"
-#: sm/certchain.c:815 sm/certchain.c:900
+#: sm/certchain.c:899 sm/certchain.c:984
msgid "root certificate not yet valid"
msgstr "certyfikat g��wny jeszcze nie jest wa�ny"
-#: sm/certchain.c:816 sm/certchain.c:901
+#: sm/certchain.c:900 sm/certchain.c:985
msgid "intermediate certificate not yet valid"
msgstr "certyfikat po�redni jeszcze nie jest wa�ny"
-#: 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 g��wny wygas�"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
msgid "intermediate certificate has expired"
msgstr "certyfikat po�redni wygas�"
-#: sm/certchain.c:873
+#: sm/certchain.c:957
#, c-format
msgid "required certificate attributes missing: %s%s%s"
msgstr "brak wymaganych atrybut�w certyfikatu: %s%s%s"
-#: sm/certchain.c:882
+#: sm/certchain.c:966
msgid "certificate with invalid validity"
msgstr "certyfikat o niewa�nej wa�no�ci"
-#: 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 "po�redni 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 wa�ny od "
-#: sm/certchain.c:931
+#: sm/certchain.c:1015
msgid " ( issuer valid from "
msgstr " ( wystawca wa�ny 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 "g��wny 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 w��czone 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 wy��czone 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 - przyj�to czas bie��cy"
-#: 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 "w�asnor�cznie podpisany certyfikat ma Z�Y podpis"
-#: sm/certchain.c:1255
+#: sm/certchain.c:1339
msgid "root certificate is not marked trusted"
msgstr "g��wny 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 powiod�o 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 "�a�cuch certyfikat�w zbyt d�ugi\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 Z�Y podpis"
-#: sm/certchain.c:1373
+#: sm/certchain.c:1457
msgid "found another possible matching CA certificate - trying again"
msgstr "znaleziono inny by� mo�e pasuj�cy certyfikat CA - ponawianie pr�by"
-#: sm/certchain.c:1424
+#: sm/certchain.c:1508
#, c-format
msgid "certificate chain longer than allowed by CA (%d)"
msgstr "�a�cuch certyfikat�w d�u�szy 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 po�redni jest dobry\n"
-#: sm/certchain.c:1466
+#: sm/certchain.c:1550
msgid "root certificate is good\n"
msgstr "certyfikat g��wny jest dobry\n"
-#: sm/certchain.c:1637
+#: sm/certchain.c:1721
msgid "switching to chain model"
msgstr "prze��czanie do modelu �a�cuchowego"
-#: sm/certchain.c:1646
+#: sm/certchain.c:1730
#, c-format
msgid "validation model used: %s"
msgstr "u�yty model poprawno�ci: %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, okre�lenia 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: [email protected]\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 <[email protected]>\n"
"Language-Team: pt <[email protected]>\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 confian�a: %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 inv�lido 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��o %d%s n�o � suportado\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 "imposs�vel 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 op��es por omiss�o `%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 op��es `%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 op��es 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: imposs�vel 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 "imposs�vel 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 n�o est� dispon�vel nesta sess�o\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 cria��o 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 "actualiza��o 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�a: leitura falhou (n=%d): %s\n"
msgid "can't use `%s' as home directory\n"
msgstr "%s: imposs�vel 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 "actualiza��o 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 cria��o 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 "imposs�vel 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 "imposs�vel 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: permiss�es 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 "vers�o 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 dispon�vel para `%s'"
@@ -1109,7 +1109,7 @@ msgstr "AVISO: dados de nota��o inv�lidos encontrados\n"
msgid "not human readable"
msgstr "n�o leg�vel 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 n�o dispon�vel"
@@ -1119,166 +1119,166 @@ msgstr "chave secreta n�o dispon�vel"
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 "imposs�vel fazer isso em modo n�o-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 "Op��o? "
-#: 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 "n�o 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 p�blica 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 "prefer�ncias actualizadas"
-#: g10/card-util.c:804
+#: g10/card-util.c:806
#, fuzzy
msgid "Error: invalid length of preference string.\n"
msgstr "caracter inv�lido na cadeia de caract�res da prefer�ncia\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
#, fuzzy
msgid "Error: invalid characters in preference string.\n"
msgstr "caracter inv�lido na cadeia de caract�res da prefer�ncia\n"
-#: g10/card-util.c: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: vers�o de ficheiro inv�lida %d\n"
-#: g10/card-util.c:869
+#: g10/card-util.c:871
#, fuzzy
msgid "CA fingerprint: "
msgstr "mostra impress�o digital"
-#: g10/card-util.c:892
+#: g10/card-util.c:894
#, fuzzy
msgid "Error: invalid formatted fingerprint.\n"
msgstr "%s: vers�o de ficheiro inv�lida %d\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, fuzzy, c-format
msgid "key operation not possible: %s\n"
msgstr "A gera��o 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 v�lido 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 "Op��o inv�lida.\n"
-#: g10/card-util.c:1194
+#: g10/card-util.c:1196
#, fuzzy
msgid "Please select where to store the key:\n"
msgstr "motivo da revoca��o: "
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
#, fuzzy
msgid "unknown key protection algorithm\n"
msgstr "algoritmo de compress�o 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 prim�ria n�o dispon�veis.\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 dispon�vel"
-#: 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 confian�a"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "mostra impress�o digital"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "gerar um novo par de chaves"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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 inv�lido (tente \"help\")\n"
@@ -1423,7 +1423,7 @@ msgstr "Comando inv�lido (tente \"help\")\n"
msgid "--output doesn't work for this command\n"
msgstr "--output n�o 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 "imposs�vel 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 op��es por omiss�o `%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 n�o � 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 n�o � um conjunto de caracteres v�lido\n"
-#: g10/gpg.c:2532
+#: g10/gpg.c:2550
#, fuzzy, c-format
msgid "`%s' is not a valid character set\n"
msgstr "%s n�o � um conjunto de caracteres v�lido\n"
-#: g10/gpg.c: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 "n�o 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: op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
#, fuzzy
msgid "invalid keyserver options\n"
msgstr "op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c:2577
+#: g10/gpg.c:2595
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: op��es de importa��o inv�lidas\n"
-#: g10/gpg.c:2580
+#: g10/gpg.c:2598
msgid "invalid import options\n"
msgstr "op��es de importa��o inv�lidas\n"
-#: g10/gpg.c:2587
+#: g10/gpg.c:2605
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c:2590
+#: g10/gpg.c:2608
msgid "invalid export options\n"
msgstr "op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c:2597
+#: g10/gpg.c:2615
#, fuzzy, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: op��es de importa��o inv�lidas\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
#, fuzzy
msgid "invalid list options\n"
msgstr "op��es de importa��o inv�lidas\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�o � um conjunto de caracteres v�lido\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 pol�tica de assinatura dada � inv�lida\n"
-#: g10/gpg.c:2622
+#: g10/gpg.c:2640
#, fuzzy
msgid "show user ID validity during signature verification"
msgstr "%s n�o � um conjunto de caracteres v�lido\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�o � um conjunto de caracteres v�lido\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: op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
#, fuzzy
msgid "invalid verify options\n"
msgstr "op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c:2647
+#: g10/gpg.c:2665
#, c-format
msgid "unable to set exec-path to %s\n"
msgstr "n�o foi poss�vel alterar o exec-path para %s\n"
-#: g10/gpg.c:2822
+#: g10/gpg.c:2840
#, fuzzy, c-format
msgid "%s:%d: invalid auto-key-locate list\n"
msgstr "%s:%d: op��es de exporta��o inv�lidas\n"
-#: g10/gpg.c: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 sobrep�e %s\n"
-#: g10/gpg.c:2933
+#: g10/gpg.c:2952
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s n�o � permitido com %s!\n"
-#: g10/gpg.c:2936
+#: g10/gpg.c:2955
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s n�o 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 "n�o 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 n�o 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 � inv�lido\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 � inv�lido\n"
-#: g10/gpg.c:3068
+#: g10/gpg.c:3087
#, fuzzy
msgid "selected compression algorithm is invalid\n"
msgstr "o algoritmo de cifragem selecionado � inv�lido\n"
-#: g10/gpg.c:3074
+#: g10/gpg.c:3093
msgid "selected certification digest algorithm is invalid\n"
msgstr "o algoritmo de \"digest\" de certifica��o selecionado � inv�lido\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 "n�vel de verifica��o por omiss�o inv�lido: 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 "n�vel de verifica��o por omiss�o inv�lido: 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) n�o � recomend�vel\n"
-#: g10/gpg.c:3104
+#: g10/gpg.c:3123
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "modo S2K inv�lido: deve ser 0, 1 ou 3\n"
-#: g10/gpg.c:3111
+#: g10/gpg.c:3130
msgid "invalid default preferences\n"
msgstr "prefer�ncias por omiss�o inv�lidas\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "prefer�ncias pessoais de cifra inv�lidas\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "prefer�ncias pessoais de 'digest' inv�lidas\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "prefer�ncias pessoais de compress�o inv�lidas\n"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, fuzzy, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s n�o 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 "n�o 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 "n�o 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 "n�o 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 confian�a: %s\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr ""
"AVISO: destinat�rios (-r) dados sem utilizar uma cifra de chave p�blica\n"
-#: g10/gpg.c: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 "n�o 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 "n�o 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 gera��o de chaves falhou: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, fuzzy, c-format
msgid "keyserver receive failed: %s\n"
msgstr "A gera��o de chaves falhou: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, fuzzy, c-format
msgid "key export failed: %s\n"
msgstr "A gera��o de chaves falhou: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, fuzzy, c-format
msgid "keyserver search failed: %s\n"
msgstr "A gera��o de chaves falhou: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, fuzzy, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "actualiza��o 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 "cria��o de armadura falhou: %s\n"
-#: g10/gpg.c:3776
+#: g10/gpg.c:3795
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de dispers�o inv�lido `%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 pol�tica de certifica��o dada � inv�lida\n"
-#: g10/gpg.c:4211
+#: g10/gpg.c:4230
msgid "the given signature policy URL is invalid\n"
msgstr "a URL de pol�tica de assinatura dada � inv�lida\n"
-#: g10/gpg.c:4244
+#: g10/gpg.c:4263
#, fuzzy
msgid "the given preferred keyserver URL is invalid\n"
msgstr "a URL de pol�tica de assinatura dada � inv�lida\n"
@@ -3019,22 +3019,22 @@ msgstr "ignorado: a chave secreta j� est� presente\n"
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 confian�a: sincroniza��o 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 confian�a 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 confian�a rec %lu: escrita falhou (n=%d): %s\n"
@@ -6129,112 +6129,112 @@ msgstr "transa��o de base de dados de confian�a muito grande\n"
msgid "can't access `%s': %s\n"
msgstr "imposs�vel 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 "imposs�vel 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 "imposs�vel 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 vers�o: %s"
-#: g10/tdbio.c:555
+#: g10/tdbio.c:566
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: base de dados de confian�a inv�lida criada\n"
-#: g10/tdbio.c:558
+#: g10/tdbio.c:569
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: base de dados de confian�a criada\n"
-#: g10/tdbio.c:600
+#: g10/tdbio.c:611
msgid "NOTE: trustdb not writable\n"
msgstr "NOTA: n�o � poss�vel 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 confian�a inv�lida\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 dispers�o: %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 vers�o: %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 vers�o: %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 vers�o: %s\n"
-#: g10/tdbio.c:1164
+#: g10/tdbio.c:1175
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "base de dados de confian�a: 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 confian�a: 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: n�o � um base de dados de confian�a\n"
-#: g10/tdbio.c:1212
+#: g10/tdbio.c:1223
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: registo de vers�o com recnum %lu\n"
-#: g10/tdbio.c:1217
+#: g10/tdbio.c:1228
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: vers�o de ficheiro inv�lida %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 diret�rio: %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 confian�a 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 inv�lido %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 vers�o %d do protocolo gpg-agent n�o � 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 "imposs�vel 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 cria��o da frase secreta: %s\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "remo��o 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 confian�a: %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 dispon�vel"
-#: 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 "verifica��o 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 revoga��o \"%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 impress�o 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 revoga��o"
-#: 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 "verifica��o 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 "prefer�ncia %c%lu duplicada\n"
-#: sm/certchain.c:1465
+#: sm/certchain.c:1549
#, fuzzy
msgid "intermediate certificate is good\n"
msgstr "chave %08lX: certificado de revoga��o \"%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: [email protected]\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 inv�lido 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��o %d n�o � suportado\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 "imposs�vel 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 op��es padr�o `%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 op��es `%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 op��es 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: imposs�vel criar diret�rio: %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 "imposs�vel criar %s: %s\n"
@@ -459,22 +459,22 @@ msgstr "Certificado de revoga��o v�lido"
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 cria��o 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 "atualiza��o 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: imposs�vel criar diret�rio: %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 "atualiza��o 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 cria��o 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 "imposs�vel 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 "imposs�vel 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 op��es 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 op��es criado\n"
@@ -975,24 +975,24 @@ msgstr "Certificado correto"
msgid "Included certificates"
msgstr "Certificado inv�lido"
-#: 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 "vers�o 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 dispon�vel para `%s'"
@@ -1115,7 +1115,7 @@ msgstr "AVISO: dados de nota��o inv�lidos encontrados\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 "chave secreta n�o dispon�vel"
@@ -1125,167 +1125,167 @@ msgstr "chave secreta n�o dispon�vel"
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 "imposs�vel fazer isso em modo n�o-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 op��o? "
-#: 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 "n�o 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 p�blico 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 prefer�ncias"
-#: g10/card-util.c:804
+#: g10/card-util.c:806
#, fuzzy
msgid "Error: invalid length of preference string.\n"
msgstr "Caractere inv�lido no nome\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
#, fuzzy
msgid "Error: invalid characters in preference string.\n"
msgstr "Caractere inv�lido 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: impress�o digital inv�lida\n"
-#: g10/card-util.c:869
+#: g10/card-util.c:871
#, fuzzy
msgid "CA fingerprint: "
msgstr "Impress�o digital:"
-#: g10/card-util.c:892
+#: g10/card-util.c:894
#, fuzzy
msgid "Error: invalid formatted fingerprint.\n"
msgstr "erro: impress�o digital inv�lida\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, fuzzy, c-format
msgid "key operation not possible: %s\n"
msgstr "A gera��o 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 v�lido 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 n�o � 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 "Op��o inv�lida.\n"
-#: g10/card-util.c:1194
+#: g10/card-util.c:1196
#, fuzzy
msgid "Please select where to store the key:\n"
msgstr "rev- revoga��es de chaves incorreta\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
#, fuzzy
msgid "unknown key protection algorithm\n"
msgstr "algoritmo de compress�o desconhecido"
-#: g10/card-util.c:1234
+#: g10/card-util.c:1236
#, fuzzy
msgid "secret parts of key are not available\n"
msgstr "chave secreta n�o dispon�vel"
-#: 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 dispon�vel"
-#: 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 confian�a"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "mostra impress�o digital"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "gerar um novo par de chaves"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "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 inv�lido (tente \"help\")\n"
@@ -1431,7 +1431,7 @@ msgstr "Comando inv�lido (tente \"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 "imposs�vel abrir `%s'\n"
@@ -2128,424 +2128,424 @@ msgstr "alterna entre listagem de chave secreta e p�blica"
msgid "show expiration dates during signature listings"
msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n"
-#: g10/gpg.c: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 op��es padr�o `%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 n�o � 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 n�o � um conjunto de caracteres v�lido\n"
-#: g10/gpg.c:2532
+#: g10/gpg.c:2550
#, fuzzy, c-format
msgid "`%s' is not a valid character set\n"
msgstr "%s n�o � um conjunto de caracteres v�lido\n"
-#: g10/gpg.c: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 "imposs�vel 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 inv�lido"
-#: 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 inv�lida"
-#: 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 inv�lido"
-#: 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 inv�lida"
-#: 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�o � um conjunto de caracteres v�lido\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 pol�tica dada � inv�lida\n"
-#: g10/gpg.c:2622
+#: g10/gpg.c:2640
#, fuzzy
msgid "show user ID validity during signature verification"
msgstr "%s n�o � um conjunto de caracteres v�lido\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�o � um conjunto de caracteres v�lido\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 inv�lido"
-#: 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 n�o � permitido com %s!\n"
-#: g10/gpg.c:2936
+#: g10/gpg.c:2955
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s n�o 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 n�o � v�lido\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 n�o � v�lido\n"
-#: g10/gpg.c:3068
+#: g10/gpg.c:3087
#, fuzzy
msgid "selected compression algorithm is invalid\n"
msgstr "o algoritmo de criptografia selecionado n�o � v�lido\n"
-#: g10/gpg.c:3074
+#: g10/gpg.c:3093
#, fuzzy
msgid "selected certification digest algorithm is invalid\n"
msgstr "o algoritmo de \"digest\" selecionado n�o � v�lido\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 inv�lido: 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 inv�lido: 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) n�o � recomend�vel\n"
-#: g10/gpg.c:3104
+#: g10/gpg.c:3123
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "modo S2K inv�lido: deve ser 0, 1 ou 3\n"
-#: g10/gpg.c:3111
+#: g10/gpg.c:3130
#, fuzzy
msgid "invalid default preferences\n"
msgstr "lista prefer�ncias"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
#, fuzzy
msgid "invalid personal cipher preferences\n"
msgstr "lista prefer�ncias"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
#, fuzzy
msgid "invalid personal digest preferences\n"
msgstr "lista prefer�ncias"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
#, fuzzy
msgid "invalid personal compress preferences\n"
msgstr "lista prefer�ncias"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, fuzzy, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s n�o 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 n�o � v�lido\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-usu�rio"
-#: g10/gpg.c:3496
+#: g10/gpg.c:3515
msgid "--lsign-key user-id"
msgstr "--lsign-key id-usu�rio"
-#: g10/gpg.c:3517
+#: g10/gpg.c:3536
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id-usu�rio [comandos]"
-#: g10/gpg.c:3602
+#: g10/gpg.c:3621
#, fuzzy, c-format
msgid "keyserver send failed: %s\n"
msgstr "A gera��o de chaves falhou: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, fuzzy, c-format
msgid "keyserver receive failed: %s\n"
msgstr "enumera��o 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 gera��o 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 "enumera��o 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 "cria��o de armadura falhou: %s\n"
# "hash" poderia ser "espalhamento", mas n�o fica claro
-#: g10/gpg.c:3776
+#: g10/gpg.c:3795
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de hash inv�lido `%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 pol�tica dada � inv�lida\n"
-#: g10/gpg.c:4211
+#: g10/gpg.c:4230
#, fuzzy
msgid "the given signature policy URL is invalid\n"
msgstr "a URL de pol�tica dada � inv�lida\n"
-#: g10/gpg.c:4244
+#: g10/gpg.c:4263
#, fuzzy
msgid "the given preferred keyserver URL is invalid\n"
msgstr "a URL de pol�tica dada � inv�lida\n"
@@ -3037,22 +3037,22 @@ msgstr "ignorado: a chave secreta j� est� presente\n"
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: sincroniza��o 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��o de banco de dados de confiabilidade muito grande\n"
msgid "can't access `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: g10/tdbio.c:513
+#: g10/tdbio.c:524
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: diret�rio 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 "imposs�vel 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 "imposs�vel 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 vers�o: %s"
-#: g10/tdbio.c:555
+#: g10/tdbio.c:566
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: banco de dados de confiabilidade inv�lido 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 inv�lido\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 vers�o: %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 vers�o: %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 vers�o: %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: n�o � 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 vers�o com recnum %lu\n"
-#: g10/tdbio.c:1217
+#: g10/tdbio.c:1228
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: vers�o de arquivo inv�lida %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 diret�rio: %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 inv�lido %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 prote��o %d n�o � 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 "imposs�vel 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 cria��o da frase secreta: %s\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "enumera��o 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 dispon�vel"
-#: 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 revoga��o v�lido"
-#: 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 revoga��o v�lido"
-#: 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 revoga��o v�lido"
-#: 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 revoga��o adicionado\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "Certificado de revoga��o v�lido"
-#: 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 "Impress�o digital:"
-#: sm/certchain.c:970
+#: sm/certchain.c:1054
#, fuzzy
msgid "root certificate has now been marked as trusted\n"
msgstr ""
"Nenhum certificado com confian�a 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 confian�a 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 revoga��o v�lido"
-#: sm/certchain.c:1309
+#: sm/certchain.c:1393
#, fuzzy
msgid "issuer certificate not found"
msgstr "Certificado de revoga��o v�lido"
-#: 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 revoga��o v�lido"
-#: 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 confian�a 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 ""
#~ "usu�rio `%s' n�o 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Romanian <[email protected]>\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 e�uat 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 fi�ier op�iuni 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 "fi�ier op�iuni `%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 op�iuni 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 ob�inere 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 e�uat: %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�uat �n %s: %s\n"
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 e�uat: %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�rit�: %s\n"
@@ -715,43 +715,43 @@ msgstr "schimb� fraza-parol�"
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 fi�ierul: %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 ob�inerea informa�iei 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� de utilizator\n"
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 fi�ierelor 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�sit date de notare invalide\n"
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 "Selec�ia 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 "nefor�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 "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: Spa�iile 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 "Preferin�e 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 preferin�e.\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 preferin�e.\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 spa�iu): "
-#: g10/card-util.c:848
+#: g10/card-util.c:850
msgid "Error: invalid response.\n"
msgstr "Eroare: r�spuns 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 "opera�ia 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 ob�inerea informa�iei 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 schimba�i 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� rug�m selecta�i 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 "Selec�ie invalid�.\n"
-#: g10/card-util.c:1194
+#: g10/card-util.c:1196
msgid "Please select where to store the key:\n"
msgstr "V� rug�m selecta�i unde s� fie stocat� cheia:\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
msgid "unknown key protection algorithm\n"
msgstr "algoritm de protec�ie a cheii necunoscut\n"
-#: g10/card-util.c:1234
+#: g10/card-util.c:1236
msgid "secret parts of key are not available\n"
msgstr "p�r�i 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 "ie�i 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 "afi�eaz� acest mesaj"
-#: g10/card-util.c:1312
+#: g10/card-util.c:1314
msgid "list all available data"
msgstr "afi�eaz� toate datele disponibile"
-#: g10/card-util.c:1315
+#: g10/card-util.c:1317
msgid "change card holder's name"
msgstr "schimb� numele purt�torului 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� preferin�ele de limb�"
-#: g10/card-util.c:1320
+#: g10/card-util.c:1322
msgid "change card holder's sex"
msgstr "schimb� sexul purt�torului 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 for�are a semn�turii"
-#: 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� (�ncerca�i \"ajutor\")\n"
@@ -1400,7 +1400,7 @@ msgstr "Comand� invalid� (�ncerca�i \"ajutor\")\n"
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� c�ruia dintre inelele de chei �i apar�ine o cheie enumerat�"
msgid "show expiration dates during signature listings"
msgstr "Nici o semn�tur� corespunz�toare �n inelul secret\n"
-#: g10/gpg.c: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 op�iuni 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 semn�tur� 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: op�iuni server de chei invalide\n"
-#: g10/gpg.c:2570
+#: g10/gpg.c:2588
msgid "invalid keyserver options\n"
msgstr "op�iuni 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: op�iuni import invalide\n"
-#: g10/gpg.c:2580
+#: g10/gpg.c:2598
msgid "invalid import options\n"
msgstr "op�iuni import invalide\n"
-#: g10/gpg.c:2587
+#: g10/gpg.c:2605
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: op�iuni export invalide\n"
-#: g10/gpg.c:2590
+#: g10/gpg.c:2608
msgid "invalid export options\n"
msgstr "op�iuni export invalide\n"
-#: g10/gpg.c:2597
+#: g10/gpg.c:2615
#, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: op�iuni enumerare invalide\n"
-#: g10/gpg.c:2600
+#: g10/gpg.c:2618
msgid "invalid list options\n"
msgstr "op�iuni 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 semn�tur� 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 semn�tur� 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 semn�tur� 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: op�iuni verificare invalide\n"
-#: g10/gpg.c:2640
+#: g10/gpg.c:2658
msgid "invalid verify options\n"
msgstr "op�iuni 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-execu�ie 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: op�iuni 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 fi�ier core!\n"
-#: g10/gpg.c:2924
+#: g10/gpg.c:2943
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "AVERTISMENT: %s �nlocuie�te %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 ""
"pute�i crea doar semn�turi deta�ate sau �n clar c�t� vreme sunte�i �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 pute�i semna �i cifra �n acela�i timp c�t� vreme sunte�i �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� folosi�i fi�iere (�i nu un pipe) c�nd lucra�i 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 dec�t 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 dec�t 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 "preferin�e implicite invalide\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "preferin�e cifrare personale invalide\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "preferin�e rezumat personale invalide\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "preferin�e 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 pute�i folosi algoritmul de cifrare `%s' c�t� 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 pute�i folosi algorimul de rezumat `%s' c�t� 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 pute�i folosi algoritmul de compresie `%s' c�t� 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 e�uat s� ini�ializez 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) furniza�i f�r� a folosi cifrare cu cheie "
"public�\n"
-#: g10/gpg.c:3342
+#: g10/gpg.c:3361
msgid "--store [filename]"
msgstr "--store [nume_fi�ier]"
-#: g10/gpg.c:3349
+#: g10/gpg.c:3368
msgid "--symmetric [filename]"
msgstr "--symmetric [nume_fi�ier]"
-#: 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 e�uat: %s\n"
-#: g10/gpg.c:3361
+#: g10/gpg.c:3380
msgid "--encrypt [filename]"
msgstr "--encrypt [nume_fi�ier]"
-#: g10/gpg.c:3374
+#: g10/gpg.c:3393
msgid "--symmetric --encrypt [filename]"
msgstr "--symmetric --encrypt [nume_fi�ier]"
-#: g10/gpg.c:3376
+#: g10/gpg.c:3395
msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n"
msgstr "nu pute�i folosi --symmetric --encrypt cu --s2k-mode 0\n"
-#: g10/gpg.c:3379
+#: g10/gpg.c:3398
#, c-format
msgid "you cannot use --symmetric --encrypt while in %s mode\n"
msgstr "nu pute�i folosi --symmetric --encrypt c�t� vreme �n modul %s\n"
-#: g10/gpg.c:3397
+#: g10/gpg.c:3416
msgid "--sign [filename]"
msgstr "--sign [nume_fi�ier]"
-#: g10/gpg.c:3410
+#: g10/gpg.c:3429
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nume_fi�ier]"
-#: g10/gpg.c:3425
+#: g10/gpg.c:3444
msgid "--symmetric --sign --encrypt [filename]"
msgstr "--symmetric --sign --encrypt [nume_fi�ier]"
-#: g10/gpg.c:3427
+#: g10/gpg.c:3446
msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n"
msgstr "nu pute�i folosi --symmetric --sign --encrypt cu --s2k-mode 0\n"
-#: g10/gpg.c:3430
+#: g10/gpg.c:3449
#, c-format
msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n"
msgstr "nu pute�i folosi --symmetric --sign --encrypt c�t� vreme �n modul %s\n"
-#: g10/gpg.c:3450
+#: g10/gpg.c:3469
msgid "--sign --symmetric [filename]"
msgstr "--sign --symmetric [nume_fi�ier]"
-#: g10/gpg.c:3459
+#: g10/gpg.c:3478
msgid "--clearsign [filename]"
msgstr "--clearsign [nume_fi�ier]"
-#: g10/gpg.c:3484
+#: g10/gpg.c:3503
msgid "--decrypt [filename]"
msgstr "--decrypt [nume_fi�ier]"
-#: 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 e�uat�: %s\n"
-#: g10/gpg.c:3604
+#: g10/gpg.c:3623
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "recep�ie server de chei e�uat�: %s\n"
-#: g10/gpg.c:3606
+#: g10/gpg.c:3625
#, c-format
msgid "key export failed: %s\n"
msgstr "export cheie e�uat: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "c�utare server de chei e�uat�: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "actualizare server de chei e�uat�: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "eliminarea armurii a e�uat: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "punerea armurii a e�uat: %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_fi�ier]"
-#: g10/gpg.c:3897
+#: g10/gpg.c:3916
msgid "Go ahead and type your message ...\n"
msgstr "Da�i-i drumul �i scrie�i 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 semn�turi 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�: cheia primar� este online �i stocat� pe card\n"
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 e�uat s� reconstruiesc cache-ul inelului de chei: %s\n"
@@ -6007,12 +6007,12 @@ msgstr "eroare citire �n `%s': %s\n"
msgid "trustdb: sync failed: %s\n"
msgstr "trustdb: sincronizarea a e�uat: %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 e�uat: %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 e�uat (n=%d): %s\n"
@@ -6026,112 +6026,112 @@ msgstr "tranzac�ia trustdb prea mare\n"
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 e�uat 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 e�uat 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 e�uat: %s\n"
-#: g10/tdbio.c:1173
+#: g10/tdbio.c:1184
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "trustdb: citirea a e�uat (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 fi�ier 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 fi�ier 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 �nregistr�rii: %s\n"
-#: g10/tdbio.c:1450
+#: g10/tdbio.c:1461
#, c-format
msgid "%s: failed to append a record: %s\n"
msgstr "%s: ad�ugarea unei �nregistr�ri a e�uat: %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�; rula�i \"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 s�rit\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 ob�inerea num�rului serial: %s\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "citirea cheii publice a e�uat: %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 e�uat 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 semn�turii create a e�uat: %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 "semn�turi create p�n� 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 semn�turii create a e�uat: %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 semn�tur�"
-#: 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 "preferin�a `%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: [email protected]\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 <[email protected]>\n"
"Language-Team: Russian <[email protected]>\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: [email protected]\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 <[email protected]>\n"
"Language-Team: Slovak <[email protected]>\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 "nem��em inicializova� datab�zu d�very: %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�m, vlo�te heslo; toto je tajn� veta \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 ""
@@ -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 pr�li� dlh�\n"
-#: agent/call-pinentry.c:672
+#: agent/call-pinentry.c:716
#, fuzzy
msgid "Passphrase too long"
msgstr "heslo je pr�li� 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 "nespr�vne MPI"
-#: agent/call-pinentry.c:698
+#: agent/call-pinentry.c:742
#, fuzzy
msgid "Bad Passphrase"
msgstr "nespr�vne heslo"
-#: agent/call-pinentry.c:734
+#: agent/call-pinentry.c:778
#, fuzzy
msgid "Passphrase"
msgstr "nespr�vne heslo"
@@ -93,18 +93,18 @@ msgstr "ochrann� algoritmus %d%s nie je podporov�n�\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 "nem��em 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 "POZN�MKA: neexistuje implicitn� s�bor s mo�nos�ami `%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�bor s mo�nos�ami `%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 mo�nosti z `%s'\n"
@@ -429,16 +429,16 @@ msgstr "chyba pri vytv�ran� `%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 "nem��em vytvori� adres�r `%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: nem��em 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 vytv�ran� 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 "aktualiz�cia 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�za d�very: proced�ra read() (n=%d) zlyhala: %s\n"
msgid "can't use `%s' as home directory\n"
msgstr "%s: nem��em vytvori� adres�r: %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 "aktualiz�cia tajn�ho k���a 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: presko�en�: %s\n"
@@ -706,43 +706,43 @@ msgstr "zmeni� heslo"
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 vytv�ran� 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 "nemo�no otvori� s�bor: %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 z�pise do s�boru tajn�ch k���ov `%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�en� u��vate�om\n"
msgid "problem with the agent\n"
msgstr "probl�m 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 "nem��em vypn�� vytv�ranie core s�borov: %s\n"
-#: common/sysutils.c:199
+#: common/sysutils.c:200
#, fuzzy, c-format
msgid "Warning: unsafe ownership on %s \"%s\"\n"
msgstr "VAROVANIE: vlastn�ctvo pre %s nastaven� nebezpe�ne \"%s\"\n"
-#: common/sysutils.c:231
+#: common/sysutils.c:232
#, fuzzy, c-format
msgid "Warning: unsafe permissions on %s \"%s\"\n"
msgstr "VAROVANIE: pr�stupov� pr�va pre %s nie s� nastaven� bezpe�ne \"%s\"\n"
@@ -967,24 +967,24 @@ msgstr "nespr�vny certifik�t"
msgid "Included certificates"
msgstr "nespr�vny certifik�t"
-#: 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 "nezn�ma 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�jden� neplatn� form�t z�pisu d�tumu\n"
msgid "not human readable"
msgstr "nie je v priamo �itate�nom form�te"
-#: 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� k��� nie je dostupn�"
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 "nemo�no previes� v d�vkovom m�de\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� v�ber? "
-#: 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 "D�vod 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 zodpovedaj�ci 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� predvo�by"
-#: g10/card-util.c:804
+#: g10/card-util.c:806
#, fuzzy
msgid "Error: invalid length of preference string.\n"
msgstr "neplatn� znak v re�azci s predvo�bami\n"
-#: g10/card-util.c:813
+#: g10/card-util.c:815
#, fuzzy
msgid "Error: invalid characters in preference string.\n"
msgstr "neplatn� znak v re�azci s predvo�bami\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� odtla�ok\n"
-#: g10/card-util.c:869
+#: g10/card-util.c:871
#, fuzzy
msgid "CA fingerprint: "
msgstr "vyp�sa� fingerprint"
-#: g10/card-util.c:892
+#: g10/card-util.c:894
#, fuzzy
msgid "Error: invalid formatted fingerprint.\n"
msgstr "chyba: neplatn� odtla�ok\n"
-#: g10/card-util.c:940
+#: g10/card-util.c:942
#, fuzzy, c-format
msgid "key operation not possible: %s\n"
msgstr "Vytvorenie k���a sa nepodarilo: %s\n"
-#: g10/card-util.c:941
+#: g10/card-util.c:943
#, fuzzy
msgid "not an OpenPGP card"
msgstr "nen�jden� �iadne platn� d�ta vo form�te 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 z�pise do s�boru tajn�ch k���ov `%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 "Pros�m, vyberte druh k���a, 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 vypr�ala %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� v�ber.\n"
-#: g10/card-util.c:1194
+#: g10/card-util.c:1196
#, fuzzy
msgid "Please select where to store the key:\n"
msgstr "Pros�m v�berte d�vod na revok�ciu:\n"
-#: g10/card-util.c:1229
+#: g10/card-util.c:1231
#, fuzzy
msgid "unknown key protection algorithm\n"
msgstr "nezn�my 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 prim�rneho k���a 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 "presko�en�: tajn� k��� je u� v datab�ze\n"
-#: g10/card-util.c:1307 g10/keyedit.c:1362
+#: g10/card-util.c:1309 g10/keyedit.c:1362
msgid "quit this menu"
msgstr "ukon�i� toto menu"
-#: g10/card-util.c:1309
+#: g10/card-util.c:1311
#, fuzzy
msgid "show admin commands"
msgstr "konfliktn� pr�kazy\n"
-#: g10/card-util.c:1310 g10/keyedit.c:1365
+#: g10/card-util.c:1312 g10/keyedit.c:1365
msgid "show this help"
msgstr "uk�za� t�to pomoc"
-#: g10/card-util.c:1312
+#: g10/card-util.c:1314
#, fuzzy
msgid "list all available data"
msgstr "K��� k dispoz�cii 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� d�veryhodnos� vlastn�ka k���a"
-#: 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
#, fuzzy
msgid "change a CA fingerprint"
msgstr "vyp�sa� fingerprint"
-#: 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
#, fuzzy
msgid "generate new keys"
msgstr "vytvori� nov� p�r k���ov"
-#: g10/card-util.c:1324
+#: g10/card-util.c:1326
msgid "menu to change or unblock the PIN"
msgstr ""
-#: 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 "Pr�kaz> "
-#: g10/card-util.c:1483
+#: g10/card-util.c:1485
#, fuzzy
msgid "Admin-only command\n"
msgstr "konfliktn� pr�kazy\n"
-#: g10/card-util.c:1514
+#: g10/card-util.c:1516
#, fuzzy
msgid "Admin commands are allowed\n"
msgstr "konfliktn� pr�kazy\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� pr�kaz (sk�ste \"help\")\n"
@@ -1419,7 +1419,7 @@ msgstr "Neplatn� pr�kaz (sk�ste \"help\")\n"
msgid "--output doesn't work for this command\n"
msgstr "--output pre tento pr�kaz 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 "nemo�no otvori� `%s'\n"
@@ -2124,418 +2124,418 @@ msgstr "uk� v ktorom s�bore k���ov je vyp�san� k���"
msgid "show expiration dates during signature listings"
msgstr "V s�bore tajn�ch k���ov ch�ba zodpovedaj�ci podpis\n"
-#: g10/gpg.c: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 "POZN�MKA: star� implicitn� s�bor s mo�nos�ami `%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 "POZN�MKA: %s nie je pre norm�lne pou�itie!\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 "nemo�no pou�i� URI servera k���ov - chyba anal�zy 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 "nemo�no 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 m��e vytvori� s�bor core!\n"
-#: g10/gpg.c:2924
+#: g10/gpg.c:2943
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "VAROVANIE: %s prep��e %s\n"
-#: g10/gpg.c:2933
+#: g10/gpg.c:2952
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "Nie je dovolen� pou��va� %s s %s!\n"
-#: g10/gpg.c:2936
+#: g10/gpg.c:2955
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s ned�va 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 m�de --pgp2 m��ete vytv�ra� len oddelen� podpisy alebo podpisy �itate�n� "
"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 m�de --pgp2 nemo�no s��asne �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 m�de --pgp2 mus�te pou�i� s�bor (nie r�ru).\n"
-#: g10/gpg.c:2990
+#: g10/gpg.c:3009
msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n"
msgstr "�ifrovanie spr�v v m�de --pgp2 vy�aduje algoritmus IDEA\n"
-#: g10/gpg.c: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 "polo�ka completes-needed mus� by� v��ia ako 0\n"
-#: g10/gpg.c:3091
+#: g10/gpg.c:3110
msgid "marginals-needed must be greater than 1\n"
msgstr "polo�ka marginals-needed mus� by� v��ia 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 "polo�ka 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� certifik�cie; 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� minim�lna �rove� certifik�cie; 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 "POZN�MKA: jednoduch� m�d S2K (0) je d�razne nedoporu�ovan�\n"
-#: g10/gpg.c:3104
+#: g10/gpg.c:3123
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "neplatn� m�d S2K; mus� by� 0, 1 alebo 3\n"
-#: g10/gpg.c:3111
+#: g10/gpg.c:3130
msgid "invalid default preferences\n"
msgstr "neplatn� defaultn� predvo�by\n"
-#: g10/gpg.c:3120
+#: g10/gpg.c:3139
msgid "invalid personal cipher preferences\n"
msgstr "neplatn� u��vate�sk� predvo�by pre �ifrovanie\n"
-#: g10/gpg.c:3124
+#: g10/gpg.c:3143
msgid "invalid personal digest preferences\n"
msgstr "neplatn� u��vate�sk� predvo�by pre hashovanie\n"
-#: g10/gpg.c:3128
+#: g10/gpg.c:3147
msgid "invalid personal compress preferences\n"
msgstr "neplatn� u��vate�sk� predvo�by pre kompresiu\n"
-#: g10/gpg.c:3161
+#: g10/gpg.c:3180
#, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s e�te 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 "nem��ete pou�i� �ifrovac� algoritmus \"%s\" v m�de %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 "nem��ete pou�i� hashovac� algoritmus \"%s\" v m�de %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 "nem��ete pou�i� kompresn� algoritmus \"%s\" v m�de %s\n"
-#: g10/gpg.c:3310
+#: g10/gpg.c:3329
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "nem��em inicializova� datab�zu d�very: %s\n"
-#: g10/gpg.c:3321
+#: g10/gpg.c:3340
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr ""
"VAROVANIE: dan� adres�t (-r) bez pou�itia �ifrovania s verejn�m k���om\n"
-#: g10/gpg.c:3342
+#: g10/gpg.c:3361
msgid "--store [filename]"
msgstr "--store [meno s�boru]"
-#: g10/gpg.c:3349
+#: g10/gpg.c:3368
msgid "--symmetric [filename]"
msgstr "--symmetric [meno s�boru]"
-#: g10/gpg.c:3351
+#: g10/gpg.c:3370
#, fuzzy, c-format
msgid "symmetric encryption of `%s' failed: %s\n"
msgstr "de�ifrovanie zlyhalo: %s\n"
-#: g10/gpg.c:3361
+#: g10/gpg.c:3380
msgid "--encrypt [filename]"
msgstr "--encrypt [meno s�boru]"
-#: g10/gpg.c:3374
+#: g10/gpg.c:3393
#, fuzzy
msgid "--symmetric --encrypt [filename]"
msgstr "--sign --encrypt [meno s�boru]"
-#: 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 ""
"pou�itie %s nie je v m�de %s dovolen�\n"
"\n"
-#: g10/gpg.c:3397
+#: g10/gpg.c:3416
msgid "--sign [filename]"
msgstr "--sign [meno s�boru]"
-#: g10/gpg.c:3410
+#: g10/gpg.c:3429
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [meno s�boru]"
-#: g10/gpg.c:3425
+#: g10/gpg.c:3444
#, fuzzy
msgid "--symmetric --sign --encrypt [filename]"
msgstr "--sign --encrypt [meno s�boru]"
-#: 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 ""
"pou�itie %s nie je v m�de %s dovolen�\n"
"\n"
-#: g10/gpg.c:3450
+#: g10/gpg.c:3469
msgid "--sign --symmetric [filename]"
msgstr "--sign --symmetric [meno s�boru]"
-#: g10/gpg.c:3459
+#: g10/gpg.c:3478
msgid "--clearsign [filename]"
msgstr "--clearsign [meno s�boru]"
-#: g10/gpg.c:3484
+#: g10/gpg.c:3503
msgid "--decrypt [filename]"
msgstr "--decrypt [meno s�boru]"
-#: g10/gpg.c:3492
+#: g10/gpg.c:3511
msgid "--sign-key user-id"
msgstr "--sign-key id u��vate�a"
-#: g10/gpg.c:3496
+#: g10/gpg.c:3515
msgid "--lsign-key user-id"
msgstr "--lsign-key id u��vate�a"
-#: g10/gpg.c:3517
+#: g10/gpg.c:3536
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id u��vate�a [pr�kazy]"
-#: 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 k���a: %s\n"
-#: g10/gpg.c:3617
+#: g10/gpg.c:3636
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "nepodarilo sa n�js� server: %s\n"
-#: g10/gpg.c:3627
+#: g10/gpg.c:3646
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "aktualiz�cia servera zlyhala: %s\n"
-#: g10/gpg.c:3678
+#: g10/gpg.c:3697
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "dek�dovanie z ASCII form�tu zlyhalo: %s\n"
-#: g10/gpg.c:3686
+#: g10/gpg.c:3705
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "k�dovanie do ASCII form�tu 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 s�boru]"
-#: g10/gpg.c:3897
+#: g10/gpg.c:3916
msgid "Go ahead and type your message ...\n"
msgstr "Za�nite p�sa� svoju spr�vu ...\n"
-#: g10/gpg.c:4209
+#: g10/gpg.c:4228
msgid "the given certification policy URL is invalid\n"
msgstr "zadan� URL pre certifika�n� 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�en�: tajn� k��� je u� v datab�ze\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "presko�en�: tajn� k��� je u� v datab�ze\n"
-#: g10/keydb.c:168
+#: g10/keydb.c:181
#, c-format
msgid "error creating keyring `%s': %s\n"
msgstr "chyba pri vytv�ran� s�boru k���ov (keyring)`%s': %s\n"
-#: g10/keydb.c:174
+#: g10/keydb.c:187
#, c-format
msgid "keyring `%s' created\n"
msgstr "s�bor k���ov (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 vytv�ran� `%s': %s\n"
-#: g10/keydb.c:697
+#: g10/keydb.c:710
#, c-format
msgid "failed to rebuild keyring cache: %s\n"
msgstr "zlyhalo obnovenie vyrovn�vacej pam�ti k���ov: %s\n"
@@ -6121,12 +6121,12 @@ msgstr "chyba pri ��tan�: %s\n"
msgid "trustdb: sync failed: %s\n"
msgstr "datab�za d�very: synchroniz�cia 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 "z�znam v datab�ze d�very %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 "z�znam v datab�ze d�very %lu: z�pis sa nepodaril (n=%d): %s\n"
@@ -6140,112 +6140,112 @@ msgstr "transakcia s datab�zou d�very je pr�li� dlh�\n"
msgid "can't access `%s': %s\n"
msgstr "nem��em zavrie� `%s': %s\n"
-#: g10/tdbio.c:513
+#: g10/tdbio.c:524
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: adres�r 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 "nem��em 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 "nemo�no 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� z�znam verzie: %s"
-#: g10/tdbio.c:555
+#: g10/tdbio.c:566
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: vytvoren� neplatn� datab�za d�very\n"
-#: g10/tdbio.c:558
+#: g10/tdbio.c:569
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: datab�za d�very vytvoren�\n"
-#: g10/tdbio.c:600
+#: g10/tdbio.c:611
msgid "NOTE: trustdb not writable\n"
msgstr "POZN�MKA: do trustdb nemo�no zapisova�\n"
-#: g10/tdbio.c:608
+#: g10/tdbio.c:619
#, c-format
msgid "%s: invalid trustdb\n"
msgstr "%s: neplatn� datab�ze d�very\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 tabu�ku: %s\n"
-#: g10/tdbio.c:648
+#: g10/tdbio.c:659
#, c-format
msgid "%s: error updating version record: %s\n"
msgstr "%s: chyba pri aktualiz�cii z�znamu 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� z�znamu 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 z�pise z�znamu verzie: %s\n"
-#: g10/tdbio.c:1164
+#: g10/tdbio.c:1175
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "datab�ze d�very: proced�ra lseek() zlyhala: %s\n"
-#: g10/tdbio.c:1173
+#: g10/tdbio.c:1184
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "datab�za d�very: proced�ra 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 s�bor datab�zy d�very\n"
-#: g10/tdbio.c:1212
+#: g10/tdbio.c:1223
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: z�znam 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 s�boru %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� vo�n�ho z�znamu: %s\n"
-#: g10/tdbio.c:1410
+#: g10/tdbio.c:1421
#, c-format
msgid "%s: error writing dir record: %s\n"
msgstr "%s: chyba pri z�pise adres�rov�ho z�znamu: %s\n"
-#: g10/tdbio.c:1420
+#: g10/tdbio.c:1431
#, c-format
msgid "%s: failed to zero a record: %s\n"
msgstr "%s: vynulovanie z�znamu 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 z�znamu zlyhalo: %s\n"
-#: g10/tdbio.c:1495
+#: g10/tdbio.c:1506
msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
msgstr "datab�za d�very je po�koden�; pros�m 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 form�te radix64 %02x bol presko�en�\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 "nem��em 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 vytv�ran� hesla: %s\n"
+
+#: sm/certchain.c:567
+#, fuzzy, c-format
+msgid "dirmngr cache-only key lookup failed: %s\n"
+msgstr "zmazanie bloku k���a 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 "nem��em inicializova� datab�zu d�very: %s\n"
-#: sm/certchain.c:742
+#: sm/certchain.c:826
#, fuzzy
msgid "certificate has been revoked"
msgstr "POZN�MKA: k��� bol revokovan�"
-#: sm/certchain.c:752
+#: sm/certchain.c:836
#, fuzzy
msgid "no CRL found for certificate"
msgstr "nespr�vny certifik�t"
-#: 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 dispoz�cii 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 vytvoren�ho 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� k���a vypr�ala!"
-#: sm/certchain.c:830
+#: sm/certchain.c:914
#, fuzzy
msgid "root certificate has expired"
msgstr "Platnos� k���a vypr�ala!"
-#: sm/certchain.c:831
+#: sm/certchain.c:915
#, fuzzy
msgid "intermediate certificate has expired"
msgstr "Platnos� k���a vypr�ala!"
-#: 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� k���a vypr�ala!"
-#: 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 "Revoka�n� certifik�t bol vytvoren�.\n"
-#: sm/certchain.c:930
+#: sm/certchain.c:1014
#, fuzzy
msgid " (certificate valid from "
msgstr "nespr�vny certifik�t"
-#: 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 "vyp�sa� 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� revoka�n� certifik�t"
-#: 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 vytvoren�ho 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 predvo�by %c%lu\n"
-#: sm/certchain.c:1465
+#: sm/certchain.c:1549
#, fuzzy
msgid "intermediate certificate is good\n"
msgstr "Revoka�n� certifik�t bol vytvoren�.\n"
-#: sm/certchain.c:1466
+#: sm/certchain.c:1550
#, fuzzy
msgid "root certificate is good\n"
msgstr "nespr�vny certifik�t"
-#: 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: [email protected]\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 <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\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: [email protected]\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 <[email protected]>\n"
"Language-Team: Turkish <[email protected]>\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: [email protected]\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 <[email protected]>\n"
"Language-Team: Chinese (simplified) <[email protected]>\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: [email protected]\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 <[email protected]>\n"
"Language-Team: Chinese (traditional) <[email protected]>\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 <[email protected]>
+
+ * 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 <[email protected]>
* 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);
+}
+
+
+