aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2008-03-20 15:31:43 +0000
committerWerner Koch <[email protected]>2008-03-20 15:31:43 +0000
commitc2a8254be71089f707b3100972609db9cf4d02a0 (patch)
tree109ea1f31fdfe85524fca8107edbab7a5888f425
parentFix for v3 keys. (diff)
downloadgnupg-c2a8254be71089f707b3100972609db9cf4d02a0.tar.gz
gnupg-c2a8254be71089f707b3100972609db9cf4d02a0.zip
Fix a bug in the ambigious name detection.
Minor cleanups.
-rw-r--r--NEWS2
-rw-r--r--THANKS1
-rw-r--r--agent/ChangeLog6
-rw-r--r--agent/agent.h1
-rw-r--r--agent/call-pinentry.c4
-rw-r--r--agent/command.c6
-rw-r--r--common/ChangeLog6
-rw-r--r--common/iobuf.c16
-rw-r--r--common/simple-pwquery.c5
-rw-r--r--jnlib/ChangeLog7
-rw-r--r--jnlib/dotlock.c3
-rw-r--r--jnlib/logging.c8
-rw-r--r--po/be.po60
-rw-r--r--po/ca.po60
-rw-r--r--po/cs.po60
-rw-r--r--po/da.po60
-rw-r--r--po/de.po63
-rw-r--r--po/el.po60
-rw-r--r--po/eo.po60
-rw-r--r--po/es.po60
-rw-r--r--po/et.po60
-rw-r--r--po/fi.po60
-rw-r--r--po/fr.po60
-rw-r--r--po/gl.po60
-rw-r--r--po/hu.po60
-rw-r--r--po/id.po60
-rw-r--r--po/it.po60
-rw-r--r--po/ja.po60
-rw-r--r--po/nb.po60
-rw-r--r--po/pl.po60
-rw-r--r--po/pt.po60
-rw-r--r--po/pt_BR.po60
-rw-r--r--po/ro.po60
-rw-r--r--po/ru.po60
-rw-r--r--po/sk.po60
-rw-r--r--po/sv.po60
-rw-r--r--po/tr.po60
-rw-r--r--po/zh_CN.po60
-rw-r--r--po/zh_TW.po60
-rw-r--r--sm/ChangeLog12
-rw-r--r--sm/certdump.c9
-rw-r--r--sm/certlist.c32
-rw-r--r--tests/openpgp/ChangeLog4
-rw-r--r--tests/openpgp/Makefile.am5
-rw-r--r--tests/openpgp/bug894-test.asc565
-rwxr-xr-xtests/openpgp/import.test26
46 files changed, 1496 insertions, 845 deletions
diff --git a/NEWS b/NEWS
index 0a9cb4a26..4be02188a 100644
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,8 @@ Noteworthy changes in version 2.0.9 (unreleased)
* Extended the PKITS framework.
+ * Fixed a bug in the ambigious name detection.
+
* Minor bug fixes.
diff --git a/THANKS b/THANKS
index e0a486dac..5b9afdb24 100644
--- a/THANKS
+++ b/THANKS
@@ -180,6 +180,7 @@ Oskari Jääskeläinen f33003a at cc.hut.fi
Pascal Scheffers Pascal at scheffers.net
Paul D. Smith psmith at baynetworks.com
Per Cederqvist ceder at lysator.liu.se
+Petr Cerny pcerny at suse.cz
Phil Blundell pb at debian.org
Philippe Laliberte arsphl at oeil.qc.ca
Peter Fales psfales at lucent.com
diff --git a/agent/ChangeLog b/agent/ChangeLog
index 6a0006817..d48d13a7e 100644
--- a/agent/ChangeLog
+++ b/agent/ChangeLog
@@ -1,3 +1,9 @@
+2008-03-17 Werner Koch <[email protected]>
+
+ * agent.h (agent_inq_pinentry_launched): New prototype.
+
+ * call-pinentry.c: Include sys/types.h and signal.h.
+
2008-02-14 Werner Koch <[email protected]>
* command.c (agent_inq_pinentry_launched): New.
diff --git a/agent/agent.h b/agent/agent.h
index f824fe615..bf460b485 100644
--- a/agent/agent.h
+++ b/agent/agent.h
@@ -211,6 +211,7 @@ void *get_agent_scd_notify_event (void);
void agent_sighup_action (void);
/*-- command.c --*/
+gpg_error_t agent_inq_pinentry_launched (ctrl_t ctrl, unsigned long pid);
gpg_error_t agent_write_status (ctrl_t ctrl, const char *keyword, ...);
void bump_key_eventcounter (void);
void bump_card_eventcounter (void);
diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c
index 8b9f2afd4..6ae31030d 100644
--- a/agent/call-pinentry.c
+++ b/agent/call-pinentry.c
@@ -27,7 +27,9 @@
#include <unistd.h>
#include <sys/stat.h>
#ifndef HAVE_W32_SYSTEM
-#include <sys/wait.h>
+# include <sys/wait.h>
+# include <sys/types.h>
+# include <signal.h>
#endif
#include <pth.h>
#include <assuan.h>
diff --git a/agent/command.c b/agent/command.c
index 9c2b8b7f9..720272904 100644
--- a/agent/command.c
+++ b/agent/command.c
@@ -320,9 +320,9 @@ 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. */
+/* Helper to notify the client about a launched Pinentry. Because
+ that might disturb some older clients, this is only done if enabled
+ via an option. Returns an gpg error code. */
gpg_error_t
agent_inq_pinentry_launched (ctrl_t ctrl, unsigned long pid)
{
diff --git a/common/ChangeLog b/common/ChangeLog
index 60679a8ae..d37ed3a22 100644
--- a/common/ChangeLog
+++ b/common/ChangeLog
@@ -1,3 +1,9 @@
+2008-03-17 Werner Koch <[email protected]>
+
+ * iobuf.c (IOBUF_BUFFER_SIZE): Actually use this macro.
+
+ * simple-pwquery.c (agent_send_all_options): Fix last change.
+
2008-03-06 Werner Koch <[email protected]>
* simple-pwquery.c (agent_send_all_options): Add support for
diff --git a/common/iobuf.c b/common/iobuf.c
index abab69d01..ae35d301e 100644
--- a/common/iobuf.c
+++ b/common/iobuf.c
@@ -1139,7 +1139,7 @@ iobuf_temp ()
{
iobuf_t a;
- a = iobuf_alloc (3, 8192);
+ a = iobuf_alloc (3, IOBUF_BUFFER_SIZE);
return a;
}
@@ -1220,7 +1220,7 @@ iobuf_open (const char *fname)
return iobuf_fdopen (translate_file_handle (fd, 0), "rb");
else if ((fp = my_fopen_ro (fname, "rb")) == INVALID_FP)
return NULL;
- a = iobuf_alloc (1, 8192);
+ a = iobuf_alloc (1, IOBUF_BUFFER_SIZE);
fcx = xmalloc (sizeof *fcx + strlen (fname));
fcx->fp = fp;
fcx->print_only_name = print_only;
@@ -1256,7 +1256,7 @@ iobuf_fdopen (int fd, const char *mode)
#else
fp = (fp_or_fd_t) fd;
#endif
- a = iobuf_alloc (strchr (mode, 'w') ? 2 : 1, 8192);
+ a = iobuf_alloc (strchr (mode, 'w') ? 2 : 1, IOBUF_BUFFER_SIZE);
fcx = xmalloc (sizeof *fcx + 20);
fcx->fp = fp;
fcx->print_only_name = 1;
@@ -1280,7 +1280,7 @@ iobuf_sockopen (int fd, const char *mode)
sock_filter_ctx_t *scx;
size_t len;
- a = iobuf_alloc (strchr (mode, 'w') ? 2 : 1, 8192);
+ a = iobuf_alloc (strchr (mode, 'w') ? 2 : 1, IOBUF_BUFFER_SIZE);
scx = xmalloc (sizeof *scx + 25);
scx->sock = fd;
scx->print_only_name = 1;
@@ -1324,7 +1324,7 @@ iobuf_create (const char *fname)
return iobuf_fdopen (translate_file_handle (fd, 1), "wb");
else if ((fp = my_fopen (fname, "wb")) == INVALID_FP)
return NULL;
- a = iobuf_alloc (2, 8192);
+ a = iobuf_alloc (2, IOBUF_BUFFER_SIZE);
fcx = xmalloc (sizeof *fcx + strlen (fname));
fcx->fp = fp;
fcx->print_only_name = print_only;
@@ -1359,7 +1359,7 @@ iobuf_append (const char *fname)
return NULL;
else if (!(fp = my_fopen (fname, "ab")))
return NULL;
- a = iobuf_alloc (2, 8192);
+ a = iobuf_alloc (2, IOBUF_BUFFER_SIZE);
fcx = m_alloc (sizeof *fcx + strlen (fname));
fcx->fp = fp;
strcpy (fcx->fname, fname);
@@ -1387,7 +1387,7 @@ iobuf_openrw (const char *fname)
return NULL;
else if ((fp = my_fopen (fname, "r+b")) == INVALID_FP)
return NULL;
- a = iobuf_alloc (2, 8192);
+ a = iobuf_alloc (2, IOBUF_BUFFER_SIZE);
fcx = xmalloc (sizeof *fcx + strlen (fname));
fcx->fp = fp;
strcpy (fcx->fname, fname);
@@ -1777,7 +1777,7 @@ iobuf_flush (iobuf_t a)
if (a->use == 3)
{ /* increase the temp buffer */
unsigned char *newbuf;
- size_t newsize = a->d.size + 8192;
+ size_t newsize = a->d.size + IOBUF_BUFFER_SIZE;
if (DBG_IOBUF)
log_debug ("increasing temp iobuf from %lu to %lu\n",
diff --git a/common/simple-pwquery.c b/common/simple-pwquery.c
index fdaa34f07..3a1f0365f 100644
--- a/common/simple-pwquery.c
+++ b/common/simple-pwquery.c
@@ -293,7 +293,7 @@ agent_send_all_options (int fd)
{
/* We ignore errors here because older gpg-agents don't support
this option. */
- send_one_option (ctx, errsource, "xauthority", dft_xauthority);
+ agent_send_option (fd, "xauthority", dft_xauthority);
}
/* Send the PINENTRY_USER_DATA variable. */
@@ -302,8 +302,7 @@ agent_send_all_options (int fd)
{
/* We ignore errors here because older gpg-agents don't support
this option. */
- send_one_option (ctx, errsource, "pinentry-user-data",
- opt_pinentry_user_data);
+ agent_send_option (fd, "pinentry-user-data", dft_pinentry_user_data);
}
return 0;
diff --git a/jnlib/ChangeLog b/jnlib/ChangeLog
index 9838409c6..40093105f 100644
--- a/jnlib/ChangeLog
+++ b/jnlib/ChangeLog
@@ -1,3 +1,10 @@
+2008-03-17 Werner Koch <[email protected]>
+
+ * logging.c (my_funopen_hook_size_t): New.
+ (fun_writer): Use it to cope with fopencookie/funopen differences.
+ * dotlock.c (read_lockfile): Initialize PID. Reported by Stéphane
+ Corthésy.
+
2008-02-22 Werner Koch <[email protected]>
* argparse.c (strusage): Set copyright year to 2008.
diff --git a/jnlib/dotlock.c b/jnlib/dotlock.c
index 079723ce9..e1964fd26 100644
--- a/jnlib/dotlock.c
+++ b/jnlib/dotlock.c
@@ -454,7 +454,8 @@ read_lockfile (DOTLOCK h, int *same_node )
#else
char buffer_space[10+1+70+1]; /* 70 is just an estimated value; node
name are usually shorter. */
- int fd, pid;
+ int fd;
+ int pid = -1;
char *buffer, *p;
size_t expected_len;
int res, nread;
diff --git a/jnlib/logging.c b/jnlib/logging.c
index 37ae207f3..d4418c915 100644
--- a/jnlib/logging.c
+++ b/jnlib/logging.c
@@ -48,8 +48,10 @@
#ifdef HAVE_FOPENCOOKIE
typedef ssize_t my_funopen_hook_ret_t;
+typedef size_t my_funopen_hook_size_t;
#else
typedef int my_funopen_hook_ret_t;
+typedef int my_funopen_hook_size_t;
#endif
@@ -117,7 +119,7 @@ writen (int fd, const void *buffer, size_t nbytes)
static my_funopen_hook_ret_t
-fun_writer (void *cookie_arg, const char *buffer, size_t size)
+fun_writer (void *cookie_arg, const char *buffer, my_funopen_hook_size_t size)
{
struct fun_cookie_s *cookie = cookie_arg;
@@ -188,7 +190,7 @@ fun_writer (void *cookie_arg, const char *buffer, size_t size)
log_socket = cookie->fd;
if (cookie->fd != -1 && !writen (cookie->fd, buffer, size))
- return size; /* Okay. */
+ return (my_funopen_hook_ret_t)size; /* Okay. */
if (!running_detached && cookie->fd != -1
&& isatty (fileno (stderr)))
@@ -207,7 +209,7 @@ fun_writer (void *cookie_arg, const char *buffer, size_t size)
log_socket = -1;
}
- return size;
+ return (my_funopen_hook_ret_t)size;
}
static int
diff --git a/po/be.po b/po/be.po
index ca1a53ff1..4a0793d37 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "пароль занадта доўгі\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "пароль занадта доўгі\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr ""
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "дрэнны MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "дрэнны пароль"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "дрэнны пароль"
@@ -521,12 +521,12 @@ msgstr ""
msgid "no gpg-agent running in this session\n"
msgstr ""
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr ""
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -747,29 +747,29 @@ msgstr "памылка стварэньня \"%s\": %s\n"
msgid "host not found"
msgstr "нерэчаісны хэш-альгарытм \"%s\"\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr ""
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr ""
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "скасавана карыстальнікам\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr ""
@@ -6199,7 +6199,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "недапушчальныя выбары імпартаваньня\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr ""
@@ -6796,35 +6796,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "no [не]"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "невядомая вэрсыя"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "паказаць ключы й адбіткі пальцаў"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "паказаць ключы й адбіткі пальцаў"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/ca.po b/po/ca.po
index 2988f455b..d56942ac3 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "la línia és massa llarga\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "la contrasenya és massa llarga\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Hi ha un caràcter invàlid en el camp *nom*\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "l'MPI és erroni"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "la contrasenya és errònia"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "la contrasenya és errònia"
@@ -553,12 +553,12 @@ msgstr "\t%lu claus es descarta\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent no està disponible en aquesta sessió\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "la variable d'entorn GPG_AGENT_INFO és malformada\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -783,30 +783,30 @@ msgstr "error en crear «%s»: %s\n"
msgid "host not found"
msgstr "%s: no s'ha trobat l'usuari\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent no està disponible en aquesta sessió\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "no s'ha pogut connectar amb «%s»: %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "hi ha un problema de comunicació amb el gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "hi ha un problema amb l'agent: l'agent ha tornat 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "s'ha cancel·lat per l'usuari\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "hi ha un problema amb l'agent: l'agent ha tornat 0x%lx\n"
@@ -6671,7 +6671,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "opcions d'importació no vàlides\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "heu trobat un bug... (%s:%d)\n"
@@ -7286,30 +7286,30 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "no"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[no establert]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "error: l'empremta digital és invàlida\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "error: l'empremta digital és invàlida\n"
@@ -7325,7 +7325,7 @@ msgstr "error: l'empremta digital és invàlida\n"
# Se't passava l'argument «*». printf(3), hieroglyph(7). ivb
# Ah! Prova-ho, no casque alguna cosa :P ivb
# Ah, ja veig! Moltes gràcies! Aquest msgstr ha quedat curiós :) jm
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/cs.po b/po/cs.po
index 448acc998..e4f44ce16 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "��dek je p��li� dlouh�"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "��dek je p��li� dlouh�"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Neplatn� znak ve jm�n�\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "�patn� MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "�patn� heslo"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "�patn� heslo"
@@ -531,12 +531,12 @@ msgstr "%s: p�esko�eno: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent nen� v tomto sezen� dostupn�\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "�patn� form�t prom�nn� prost�ed� GPG_AGENT_INFO\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -760,29 +760,29 @@ msgstr "chyba p�i vytv��en� `%s': %s\n"
msgid "host not found"
msgstr "[ID u�ivatele nenalezeno]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent nen� v tomto sezen� dostupn�\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "nemohu se p�ipojit k `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "zru�eno u�ivatelem\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "probl�m s agentem - pou��v�n� agenta vypnuto\n"
@@ -6368,7 +6368,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "neplatn� parametr pro v�pis\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "nalezena chyba v programu ... (%s:%d)\n"
@@ -6968,35 +6968,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "ne"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[nen� nastaven]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "Chyba: neplatn� odpov��.\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "Chyba: neplatn� odpov��.\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/da.po b/po/da.po
index 4658dfb70..0ad9cb6f5 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "kunne ikke initialisere TillidsDB: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr ""
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr ""
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Ugyldige bogstaver i navn\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "d�rlig mpi"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "d�rlig kodes�tning"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "d�rlig kodes�tning"
@@ -527,12 +527,12 @@ msgstr "%s: udelod: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr ""
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr ""
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, fuzzy, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -752,28 +752,28 @@ msgstr "fejl ved l�sning af '%s': %s\n"
msgid "host not found"
msgstr "%s: bruger ikke fundet\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr ""
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, fuzzy, c-format
msgid "can't connect to `%s': %s\n"
msgstr "kan ikke �bne '%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr ""
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr ""
@@ -6349,7 +6349,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "ugyldig rustning"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "du fandt en fejl ... (%s:%d)\n"
@@ -6955,35 +6955,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "n"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "ukendt version"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "fejl i trailerlinie\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "fejl i trailerlinie\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/de.po b/po/de.po
index 750a3d6c1..b1d931e8e 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+0100\n"
"PO-Revision-Date: 2008-03-13 01:10+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
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:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
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:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr "SETERROR %s (Versuch %d von %d)"
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr "Die PIN ist zu lang"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr "Das Mantra (Passphrase) ist zu lang"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr "Ungültige Zeichen in der PIN"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr "Die PIN ist zu kurz"
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
msgid "Bad PIN"
msgstr "Falsche PIN"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
msgid "Bad Passphrase"
msgstr "Falsche Passphrase"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
msgid "Passphrase"
msgstr "Passphrase"
@@ -533,12 +533,12 @@ msgstr "%s %s angehalten\n"
msgid "no gpg-agent running in this session\n"
msgstr "Der gpg-agent läuft nicht für diese Session\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "fehlerhaft aufgebaute GPG_AGENT_INFO - Umgebungsvariable\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -772,28 +772,28 @@ msgstr "Fehler beim Erstellen des Sockets: %s\n"
msgid "host not found"
msgstr "Host nicht gefunden"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "GPG-Agent ist in dieser Sitzung nicht vorhanden\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "Verbindung zu '%s' kann nicht aufgebaut werden: %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "Kommunikationsproblem mit GPG-Agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr "Beim setzen der gpg-agent Optionen ist ein problem aufgetreten\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr "Vom Benutzer abgebrochen\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr "Problem mit dem Agenten\n"
@@ -5226,7 +5226,8 @@ msgid ""
"%u-bit %s key, ID %s,\n"
"created %s%s.\n"
msgstr ""
-"Sie benötigen eine Passphrase, um den geheimen OpenPGP Schlüssel zu entsperren.\n"
+"Sie benötigen eine Passphrase, um den geheimen OpenPGP Schlüssel zu "
+"entsperren.\n"
"Benutzer: \"%.*s\"\n"
"%u-bit %s Schlüssel, ID %s, erzeugt %s%s\n"
@@ -6438,7 +6439,7 @@ msgstr "Befehl \"%.50s\" ist mehrdeutig\n"
msgid "invalid option \"%.50s\"\n"
msgstr "Ungültige Option \"%.50s\"\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "Sie haben eine Bug (Programmfehler) gefunden ... (%s:%d)\n"
@@ -7033,31 +7034,31 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr "(Dies ist der MD2 Algorithmus)\n"
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
msgid "none"
msgstr "keine"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
msgid "[none]"
msgstr "[keine]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
msgid "[Error - invalid encoding]"
msgstr "[Fehler - Ungültige Kodierung]"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr "[Fehler - Nicht genügend Speicher]"
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr "[Fehler - Kein Name]"
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
msgid "[Error - invalid DN]"
msgstr "[Fehler - Ungültiger DN]"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/el.po b/po/el.po
index a2fa758ab..4f17d54a0 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "�������� ������������� ��� TrustDB: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "� ������ ����� ���� ������\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "� ����� ������ ����� ���� ������\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "�� ������� ���������� ��� �����\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "���� MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "���� ����� ������"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "���� ����� ������"
@@ -528,12 +528,12 @@ msgstr "%s: ������������: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "� gpg-agent ��� ����� ���������� �� ���� �� ��������\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "��������������� ��������� ������������� GPG_AGENT_INFO\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -757,30 +757,30 @@ msgstr "������ ���� �� ���������� ��� `%s': %s\n"
msgid "host not found"
msgstr "[User id ��� �������]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "� gpg-agent ��� ����� ���������� �� ���� �� ��������\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "�������� �������� ��� `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "�������� ������������ �� �� gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "�������� �� ��� agent: agent ���������� 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "��������� ��� �� ������\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "�������� �� ��� agent: agent ���������� 0x%lx\n"
@@ -6543,7 +6543,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "�� ������� �������� ���������\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "������� ��� bug ... (%s:%d)\n"
@@ -7146,35 +7146,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "���|���"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "�������"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "������: �� ������ ���������\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "������: �� ������ ���������\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/eo.po b/po/eo.po
index 47190db76..97eeda391 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "pasfrazo estas tro longa\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "pasfrazo estas tro longa\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Nevalida signo en nomo\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "malbona MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "malbona pasfrazo"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "malbona pasfrazo"
@@ -528,12 +528,12 @@ msgstr "\t%lu �losiloj ignoritaj\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent ne estas disponata en �i tiu sesio\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "malbona valoro de la media variablo GPG_AGENT_INFO\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -757,30 +757,30 @@ msgstr "eraro dum kreado de '%s': %s\n"
msgid "host not found"
msgstr "%s: uzanto ne trovita\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent ne estas disponata en �i tiu sesio\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "ne povas konekti�i al '%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "komunikproblemo kun gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "problemo kun agento: agento redonas 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "nuligita de uzanto\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "problemo kun agento: agento redonas 0x%lx\n"
@@ -6497,7 +6497,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "nevalida kiraso"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "vi trovis cimon ... (%s:%d)\n"
@@ -7112,35 +7112,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "ne"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "nekonata versio"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "%s: nevalida dosiero-versio %d\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "%s: nevalida dosiero-versio %d\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/es.po b/po/es.po
index 93ac57f9b..05ceb008d 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "l�nea demasiado larga"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "frase contrase�a demasiado larga\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caracter inv�lido en el nombre\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, 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:742
+#: agent/call-pinentry.c:744
#, 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:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "Frase contrase�a incorrecta"
@@ -551,12 +551,12 @@ msgstr "\t%lu claves omitidas\n"
msgid "no gpg-agent running in this session\n"
msgstr "el agente gpg no esta disponible en esta sesi�n\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "variable de entorno GPG_AGENT_INFO malformada\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -789,30 +789,30 @@ msgstr "error creando `%s': %s\n"
msgid "host not found"
msgstr "%s: usuario no encontrado\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "el agente gpg no esta disponible en esta sesi�n\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "no se puede conectar con `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "problema de comunicaci�n con el agente gpg\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "problema con el agente: el agente devuelve 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "cancelado por el usuario\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "problema con el agente: el agente devuelve 0x%lx\n"
@@ -6406,7 +6406,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "lista de opciones inv�lida\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "ha encontrado un error... (%s:%d)\n"
@@ -7019,35 +7019,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "no"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[no establecido]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "Error: respuesta no v�lida.\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "Error: respuesta no v�lida.\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/et.po b/po/et.po
index 67a5e701b..9eaeab3d8 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "TrustDB initsialiseerimine eba�nnestus: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "rida on liiga pikk\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "liiga pikk parool\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Lubamatu s�mbol nimes\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "halb MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "halb parool"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "halb parool"
@@ -527,12 +527,12 @@ msgstr "%s: j�tsin vahele: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "vigane GPG_AGENT_INFO keskkonnamuutuja\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -756,30 +756,30 @@ msgstr "viga `%s' loomisel: %s\n"
msgid "host not found"
msgstr "[Kasutaja id puudub]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "ei �nnestu luua �hendust serveriga `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "probleem gpg-agent programmiga suhtlemisel\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "probleem agendiga: agent tagastas 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "katkestatud kasutaja poolt\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "probleem agendiga: agent tagastas 0x%lx\n"
@@ -6464,7 +6464,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "vigased impordi v�tmed\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "te leidsite vea ... (%s:%d)\n"
@@ -7067,35 +7067,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "ei"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "tundmatu"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "viga: vigane s�rmej�lg\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "viga: vigane s�rmej�lg\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/fi.po b/po/fi.po
index 4e07cef8b..9dd71aa94 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "TrustDB:n alustaminen ei onnistu: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "rivi on liian pitkä\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "salasana on liian pitkä\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Nimessä on epäkelpo merkki\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI ei kelpaa"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "väärä salasana"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "väärä salasana"
@@ -544,12 +544,12 @@ msgstr "%s: ohitettu: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "GPG_AGENT_INFO-ympäristömuuttuja on väärin muotoiltu\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -773,30 +773,30 @@ msgstr "virhe luotaessa \"%s\": %s\n"
msgid "host not found"
msgstr "[Käyttäjätunnusta ei löytynyt]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "yhteys kohteeseen \"%s\" ei onnistu: %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "gpg-agentin kanssa yhteysongelma\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "agentin käytössä on ongelmia: agentti vastaa 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "käyttäjän peruma\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "agentin käytössä on ongelmia: agentti vastaa 0x%lx\n"
@@ -6528,7 +6528,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "virheelliset tuontivalitsimet\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "olet löytänyt ohjelmistovian ... (%s:%d)\n"
@@ -7133,35 +7133,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "ei"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "tuntematon "
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "virhe: sormenjälki on väärä\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "virhe: sormenjälki on väärä\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/fr.po b/po/fr.po
index 62ba840ef..af2b741c3 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "impossible de stocker l'empreinte: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "ligne trop longue"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "ligne trop longue"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caract�re invalide dans le nom\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "mauvais entier en pr�cision multiple (MPI)"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "mauvaise phrase de passe"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "mauvaise phrase de passe"
@@ -545,12 +545,12 @@ msgstr "%s: ignor�: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent n'est pas disponible dans cette session\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "la variable d'environnement GPG_AGENT_INFO est mal d�finie\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -776,29 +776,29 @@ msgstr "erreur pendant la cr�ation de `%s': %s\n"
msgid "host not found"
msgstr "[Nom utilisateur introuvable]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent n'est pas disponible dans cette session\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "impossible de se connecter � `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "annul� par l'utilisateur\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "probl�me avec l'agent - arr�t d'utilisation de l'agent\n"
@@ -6549,7 +6549,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "options de liste invalides\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "vous avez trouv� un bug... (%s:%d)\n"
@@ -7154,35 +7154,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "non"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[non positionn�]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "Erreur: r�ponse invalide.\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "Erreur: r�ponse invalide.\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/gl.po b/po/gl.po
index 589aae727..10fca65ed 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "li�a longa de m�is\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "contrasinal demasiado longo\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caracter non v�lido no nome\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI err�neo"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "contrasinal err�neo"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "contrasinal err�neo"
@@ -532,12 +532,12 @@ msgstr "\t%lu chaves omitidas\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent non est� dispo�ible nesta sesi�n\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "variable de ambiente GPG_AGENT_INFO mal formada\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -761,30 +761,30 @@ msgstr "erro ao crear `%s': %s\n"
msgid "host not found"
msgstr "%s: usuario non atopado\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent non est� dispo�ible nesta sesi�n\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "non se puido conectar a `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "problema de comunicaci�n con gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "problema co axente: o axente voltou coa resposta 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "cancelado polo usuario\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "problema co axente: o axente voltou coa resposta 0x%lx\n"
@@ -6536,7 +6536,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "opci�ns de importaci�n non v�lidas\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "atopou un erro ... (%s:%d)\n"
@@ -7153,35 +7153,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "non|nom"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "desco�ecido"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "erro: pegada dactilar non v�lida\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "erro: pegada dactilar non v�lida\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/hu.po b/po/hu.po
index 5878e7b2b..d5ac630a7 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "A sor t�l hossz�!\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "A jelsz� t�l hossz�!\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "�rv�nytelen karakter a n�vben!\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "hib�s MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "rossz jelsz�"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "rossz jelsz�"
@@ -527,12 +527,12 @@ msgstr "%s: kihagyva: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "GPG �gyn�k nem el�rhet� ebben a munkafolyamatban.\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "Nem megfelel� form�j� GPG_AGENT_INFO k�rnyezeti v�ltoz�!\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -756,30 +756,30 @@ msgstr "Hiba \"%s\" l�trehoz�sakor: %s\n"
msgid "host not found"
msgstr "[ismeretlen kulcs]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "GPG �gyn�k nem el�rhet� ebben a munkafolyamatban.\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "Nem tudok kapcsol�dni \"%s\" objektumhoz: %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "Kommunik�ci�s probl�ma a gpg �gyn�kkel!\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "Probl�ma az �gyn�kkel: �gyn�k v�lasza: 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "A felhaszn�l� megszak�totta a m�veletet.\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "Probl�ma az �gyn�kkel: �gyn�k v�lasza: 0x%lx\n"
@@ -6496,7 +6496,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "�rv�nytelen import opci�k!\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "Tal�lt egy programhib�t... (%s:%d)\n"
@@ -7099,35 +7099,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "nem"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "Ismeretlen m�d�"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "Hiba: �rv�nytelen ujjlenyomat.\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "Hiba: �rv�nytelen ujjlenyomat.\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/id.po b/po/id.po
index 099c802e4..0866ba693 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "gagal inisialisasi TrustDB: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "baris terlalu panjang\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "passphrase terlalu panjang\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Karakter tidak valid dalam nama\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI yang buruk"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "passphrase yang buruk"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "passphrase yang buruk"
@@ -529,12 +529,12 @@ msgstr "%s: dilewati: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent tidak tersedia untuk sesi ini\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "variabel lingkungan GPG_AGENT_INFO salah bentuk\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -758,30 +758,30 @@ msgstr "kesalahan penciptaan : `%s': %s\n"
msgid "host not found"
msgstr "[User id tidak ditemukan]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent tidak tersedia untuk sesi ini\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "tidak dapat terkoneksi ke `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "masalah komunikasi dengan gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "masalah dengan agen: agen mengembalikan 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "dibatalkan oleh user\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "masalah dengan agen: agen mengembalikan 0x%lx\n"
@@ -6490,7 +6490,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "opsi impor tidak valid\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "anda menemukan kesalahan ...(%s:%d)\n"
@@ -7093,35 +7093,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "n|t|tidak"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "tidak dikenal"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "kesalahan: fingerprint tidak valid\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "kesalahan: fingerprint tidak valid\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/it.po b/po/it.po
index 4f615b7b3..64614fa53 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "inizializzazione del trustdb fallita: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "riga troppo lunga\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "passphrase troppo lunga\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Carattere non valido nel nome\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI danneggiato"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "passphrase errata"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "passphrase errata"
@@ -527,12 +527,12 @@ msgstr "%s: saltata: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent non � disponibile in questa sessione\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "variabile di ambiente GPG_AGENT_INFO malformata\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -756,30 +756,30 @@ msgstr "errore creando `%s': %s\n"
msgid "host not found"
msgstr "[User ID non trovato]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent non � disponibile in questa sessione\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "impossibile connettersi a `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "problema di comunicazione con gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "problema con l'agent: ha restituito 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "interrotto dall'utente\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "problema con l'agent: ha restituito 0x%lx\n"
@@ -6534,7 +6534,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "opzioni di importazione non valide\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "hai trovato un bug... (%s:%d)\n"
@@ -7137,35 +7137,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "no"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "sconosciuto"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "errore: impronta digitale non valida\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "errore: impronta digitale non valida\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/ja.po b/po/ja.po
index 6e4383898..75c5426c6 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "������ݴɤ˼��Ԥ��ޤ���: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "�Ԥ�Ĺ�����ޤ�"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "�ѥ��ե졼����Ĺ�����ޤ�\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "̾����̵����ʸ��������ޤ�\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "������MPI�Ǥ�"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "�ѥ��ե졼���������Ǥ�"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "�ѥ��ե졼���������Ǥ�"
@@ -531,12 +531,12 @@ msgstr "%s: �����å�: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "���Υ��å�����gpg-agent��̵���Ǥ�\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "GPG_AGENT_INFO�Ķ��ѿ��ν񼰤�����������ޤ���\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -760,30 +760,30 @@ msgstr "��%s�פκ������顼: %s\n"
msgid "host not found"
msgstr "[�桼����ID�����Ĥ���ޤ���]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "���Υ��å�����gpg-agent��̵���Ǥ�\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "��%s�פ���³�Ǥ��ޤ���: %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "gpg-agent�Ȥ��̿��㳲\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "����������Ȥ˾㳲: ����������Ȥ�0x%lx���ֵ�\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "�桼�����ˤ���ä�\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "����������Ȥ˾㳲: ����������Ȥ�0x%lx���ֵ�\n"
@@ -6313,7 +6313,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "̵���ʰ������ץ����Ǥ�\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "�Х���ȯ�� ... (%s:%d)\n"
@@ -6912,35 +6912,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "no"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[̤����]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "���顼: ̵���ʱ�����\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "���顼: ̵���ʱ�����\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/nb.po b/po/nb.po
index e43aae422..2d3646d65 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "klarte ikke � lagre fingeravtrykket: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "for lang linje"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "for lang linje"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Ugyldig tegn i navn\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "ugyldig MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "ugyldig passfrase"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "ugyldig passfrase"
@@ -529,12 +529,12 @@ msgstr "%s: hoppet over: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr ""
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr ""
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -755,28 +755,28 @@ msgstr "feil ved lesing av n�kkelblokk: %s\n"
msgid "host not found"
msgstr "[Brukerid ikke funnet]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr ""
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr ""
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr ""
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr ""
@@ -6251,7 +6251,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "ugyldige listevalg\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "du fant en feil ... (%s:%d)\n"
@@ -6844,35 +6844,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "nei"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[ikke satt]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "Feil: ugyldig respons.\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "Feil: ugyldig respons.\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/pl.po b/po/pl.po
index 06d3f9822..a928ac28f 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
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:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr "SETERROR %s (pr�ba %d z %d)"
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr "PIN zbyt d�ugi"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr "Has�o zbyt d�ugie"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr "Niew�a�ciwy znak w PIN-ie"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr "PIN zbyt kr�tki"
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
msgid "Bad PIN"
msgstr "Niepoprawny PIN"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
msgid "Bad Passphrase"
msgstr "Niepoprawne has�o"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
msgid "Passphrase"
msgstr "Has�o"
@@ -530,12 +530,12 @@ msgstr "%s %s zatrzymany\n"
msgid "no gpg-agent running in this session\n"
msgstr "brak dzia�aj�cego gpg-agenta w tej sesji\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "z�y format zmiennej �rodowiskowej GPG_AGENT_INFO\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -762,28 +762,28 @@ msgstr "b��d tworzenia gniazda: %s\n"
msgid "host not found"
msgstr "nie znaleziono hosta"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent nie jest dost�pny w tej sesji\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "nie mo�na si� po��czy� z ,,%s'': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "problem z komunikacj� z gpg-agentem\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr "problem z ustawieniem opcji gpg-agenta\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr "anulowano przez u�ytkownika\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr "problem z agentem\n"
@@ -6386,7 +6386,7 @@ msgstr "polecenie ,,%.50s'' jest niejednoznaczne\n"
msgid "invalid option \"%.50s\"\n"
msgstr "b��dna opcja ,,%.50s''\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "znalaz�e�(a�) b��d w programie ... (%s:%d)\n"
@@ -6963,31 +6963,31 @@ msgstr "skr�t %u-bitowy nie jest poprawny dla %u-bitowego klucza %s\n"
msgid "(this is the MD2 algorithm)\n"
msgstr "(to jest algorytm MD2)\n"
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
msgid "none"
msgstr "brak"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
msgid "[none]"
msgstr "[brak]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
msgid "[Error - invalid encoding]"
msgstr "[B��d - niew�a�ciwe kodowanie]"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr "[B��d - brak pami�ci]"
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr "[B��d - Brak nazwy]"
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
msgid "[Error - invalid DN]"
msgstr "[B��d - niew�a�ciwe DN]"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/pt.po b/po/pt.po
index 9cc227a4f..91e0d6d0d 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "frase secreta demasiado longa\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "frase secreta demasiado longa\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caracter inv�lido no nome\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI incorreto"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "frase secreta incorrecta"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "frase secreta incorrecta"
@@ -531,12 +531,12 @@ msgstr "%s: ignorado: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "o gpg-agent n�o est� dispon�vel nesta sess�o\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "vari�vel de ambiente GPG_AGENT_INFO inv�lida\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -760,30 +760,30 @@ msgstr "erro ao criar `%s': %s\n"
msgid "host not found"
msgstr "[Utilizador n�o encontrado]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "o gpg-agent n�o est� dispon�vel nesta sess�o\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "imposs�vel ligar a `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "problemas na comunica��o com o gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "problema com o agente: o agente returnou 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "cancelado pelo utilizador\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "problema com o agente: o agente returnou 0x%lx\n"
@@ -6504,7 +6504,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "op��es de importa��o inv�lidas\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "voc� encontrou um bug ... (%s:%d)\n"
@@ -7107,35 +7107,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "n�o"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "vers�o desconhecida"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "%s: vers�o de ficheiro inv�lida %d\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "%s: vers�o de ficheiro inv�lida %d\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 3dd8c47e3..590fc52c1 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "linha muito longa\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "linha muito longa\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caractere inv�lido no nome\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI incorreto"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "frase secreta incorreta"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "frase secreta incorreta"
@@ -533,12 +533,12 @@ msgstr "\t%lu chaves ignoradas\n"
msgid "no gpg-agent running in this session\n"
msgstr ""
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr ""
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, fuzzy, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -761,28 +761,28 @@ msgstr "erro na leitura de `%s': %s\n"
msgid "host not found"
msgstr "%s: usu�rio n�o encontrado\n"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr ""
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, fuzzy, c-format
msgid "can't connect to `%s': %s\n"
msgstr "imposs�vel abrir `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr ""
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr ""
@@ -6511,7 +6511,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "armadura inv�lida"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "voc� encontrou um bug ... (%s:%d)\n"
@@ -7125,35 +7125,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "n�o"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "vers�o desconhecida"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "erro: impress�o digital inv�lida\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "erro: impress�o digital inv�lida\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/ro.po b/po/ro.po
index d9c8bcb0a..7f2688687 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "linie prea lung�"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "fraz�-parol� prea lung�\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Caracter invalid �n nume\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "MPI incorect"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "fraz�-parol� incorect�"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "fraz�-parol� incorect�"
@@ -534,12 +534,12 @@ msgstr "%s: s�rit�: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent nu este disponibil �n aceast� sesiune\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "variabila de mediu GPG_AGENT_INFO anormal�\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -766,30 +766,30 @@ msgstr "eroare la creearea `%s': %s\n"
msgid "host not found"
msgstr "[ID utilizator nu a fost g�sit]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent nu este disponibil �n aceast� sesiune\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "nu m� pot conecta la `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "probleme de comunicare cu gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "problem� cu agentul: agentul returneaz� 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "anulat� de utilizator\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "problem� cu agentul: agentul returneaz� 0x%lx\n"
@@ -6395,7 +6395,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "op�iuni enumerare invalide\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "a�i g�sit un bug ... (%s:%d)\n"
@@ -6995,35 +6995,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "nu"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[nesetat(�)]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "Eroare: r�spuns invalid.\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "Eroare: r�spuns invalid.\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/ru.po b/po/ru.po
index 76699d5c8..c432def9b 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr ""
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr "Введите PIN-код для получения доступа к закрытому ключу"
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr "PIN слишком длинен"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr "фраза-пароль слишком длинная"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr "Недопустимый символ в PIN-коде"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr "PIN-код слишком короткий"
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
msgid "Bad PIN"
msgstr "плохой PIN"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
msgid "Bad Passphrase"
msgstr "Неверная фраза-пароль"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
msgid "Passphrase"
msgstr "Фраза-пароль"
@@ -511,12 +511,12 @@ msgstr "%s %s: остановлен\n"
msgid "no gpg-agent running in this session\n"
msgstr "нет gpg-agent доступого для данной сессии\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "неправильная переменная окружения GPG_AGENT_INFO\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -743,28 +743,28 @@ msgstr ""
msgid "host not found"
msgstr "хост не найден"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent недоступен в данной сессии\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "не могу подключиться к `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "проблема связи с gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr "проблема задания параметров gpg-agent\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr "прервано пользователем\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr "проблема с агентом\n"
@@ -6295,7 +6295,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "недопустимый список параметров\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "Вы нашли ошибку ... (%s:%d)\n"
@@ -6885,31 +6885,31 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr "(это MD2 алгоритм)\n"
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
msgid "none"
msgstr "нет"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
msgid "[none]"
msgstr "[нет]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
msgid "[Error - invalid encoding]"
msgstr "[Ошибка - недопустимая кодировка]"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr "[Ошибка - Нет имени]"
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
msgid "[Error - invalid DN]"
msgstr "[Ошибка - недопустимый DN]"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/sk.po b/po/sk.po
index eddb45444..380cb2977 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "riadok je pr�li� dlh�\n"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "heslo je pr�li� dlh�\n"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "Neplatn� znak ve mene\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "nespr�vne MPI"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "nespr�vne heslo"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "nespr�vne heslo"
@@ -528,12 +528,12 @@ msgstr "%s: presko�en�: %s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent nie je v tomto seden� dostupn�\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "zl� form�t premennej prostredia GPG_AGENT_INFO\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -757,30 +757,30 @@ msgstr "chyba pri vytv�ran� `%s': %s\n"
msgid "host not found"
msgstr "[User id not found]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent nie je v tomto seden� dostupn�\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "nem��em sa pripoji� k `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "probl�m v komunik�cii s gpg-agentom\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
#, fuzzy
msgid "problem setting the gpg-agent options\n"
msgstr "probl�m s agentom: agent vracia 0x%lx\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "zru�en� u��vate�om\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "probl�m s agentom: agent vracia 0x%lx\n"
@@ -6510,7 +6510,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "neplatn� parameter pre import\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "n�jden� chyba v programe ... (%s:%d)\n"
@@ -7115,35 +7115,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "nie"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "nezn�me"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "chyba: neplatn� odtla�ok\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "chyba: neplatn� odtla�ok\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/sv.po b/po/sv.po
index ddce88381..1a97ac5fc 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, 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:592
+#: agent/call-pinentry.c:594
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:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr "SETERROR %s (försök %d av %d)"
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr "PIN-koden är för lång"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr "Lösenfrasen är för lång"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr "Ogiltiga tecken i PIN-kod"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr "PIN-kod för kort"
# MPI står för Multiple Precision Integer (tror jag)
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
msgid "Bad PIN"
msgstr "Felaktig PIN-kod"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
msgid "Bad Passphrase"
msgstr "Felaktig lösenfras"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
msgid "Passphrase"
msgstr "Lösenfras"
@@ -546,12 +546,12 @@ msgstr "%s %s stoppad\n"
msgid "no gpg-agent running in this session\n"
msgstr "ingen gpg-agent kör i den här sessionen\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "miljövariabeln GPG_AGENT_INFO är felformaterad\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -783,28 +783,28 @@ msgstr "fel när uttag skapades: %s\n"
msgid "host not found"
msgstr "värden hittades inte"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "kunde inte få tillgång till GPG-Agent i denna session\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "kan inte ansluta till \"%s\": %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "kommunikationsproblem med gpg-agent\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr "inställningsproblem för gpg-agent\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr "avbruten av användaren\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr "problem med agenten\n"
@@ -6468,7 +6468,7 @@ msgstr "kommandot \"%.50s\" är tvetydigt\n"
msgid "invalid option \"%.50s\"\n"
msgstr "ogiltig flagga \"%.50s\"\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "du har hittat ett fel i programmet ... (%s:%d)\n"
@@ -7047,31 +7047,31 @@ msgstr "en %u-bitars hash är inte giltig för en %u-bitars %s-nyckel\n"
msgid "(this is the MD2 algorithm)\n"
msgstr "(det här är MD2-algoritmen)\n"
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
msgid "none"
msgstr "ingen"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
msgid "[none]"
msgstr "[ingen]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
msgid "[Error - invalid encoding]"
msgstr "[Fel - ogiltig kodning]"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr "[Fel - slut på kärna]"
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr "[Fel - Inget namn]"
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
msgid "[Error - invalid DN]"
msgstr "[Fel - ogiltigt DN]"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/tr.po b/po/tr.po
index 1540f541f..6ea3f252d 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "PIN giriş kilidi edinilemedi: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
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:595
+#: agent/call-pinentry.c:597
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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr "PIN çok uzun"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr "Anahtar Parolası çok uzun"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr "PIN içinde geçersiz karakterler var"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr "PIN çok kısa"
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
msgid "Bad PIN"
msgstr "PIN hatalı"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
msgid "Bad Passphrase"
msgstr "Anahtar Parolası hatalı"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
msgid "Passphrase"
msgstr "Anahtar Parolası"
@@ -514,12 +514,12 @@ msgstr "%s %s durdu\n"
msgid "no gpg-agent running in this session\n"
msgstr "bu oturumda çalışan gpg-agent yok\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "GPG_AGENT_INFO çevre değişkeni hatalı\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -748,28 +748,28 @@ msgstr "soket oluşturulurken hata: %s\n"
msgid "host not found"
msgstr "konak yok"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent bu oturumda kullanılamaz\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "\"%s\" sunucusuna bağlanılamadı: %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "gpg-agent ile haberleşme problemi\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr "gpg-agent seçenekleri ayarlanırken sorun çıktı\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr "kullanıcı tarafından iptal edildi\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr "aracı ile sorun var\n"
@@ -6386,7 +6386,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "liste seçenekleri geçersiz\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "bir yazılım hatası buldunuz ... (%s:%d)\n"
@@ -6978,31 +6978,31 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr "(bu, MD2 algoritmasıdır)\n"
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
msgid "none"
msgstr "yok"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
msgid "[none]"
msgstr "[yok]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
msgid "[Error - invalid encoding]"
msgstr "[Hata - kodlama geçersiz]"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr "[Hata - nüve dışında]"
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr "[Hata - Adsız]"
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
msgid "[Error - invalid DN]"
msgstr "[Hata - DN geçersiz]"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 14933ce8a..bcc17669a 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-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+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:223
+#: agent/call-pinentry.c:225
#, fuzzy, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "无法存储指纹:%s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr ""
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
#, 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:630
+#: agent/call-pinentry.c:632
#, 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr ""
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
#, fuzzy
msgid "PIN too long"
msgstr "列太长"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
#, fuzzy
msgid "Passphrase too long"
msgstr "列太长"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
#, fuzzy
msgid "Invalid characters in PIN"
msgstr "姓名含有无效的字符\n"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr ""
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
#, fuzzy
msgid "Bad PIN"
msgstr "损坏的多精度整数(MPI)"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
#, fuzzy
msgid "Bad Passphrase"
msgstr "错误的密码"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
#, fuzzy
msgid "Passphrase"
msgstr "错误的密码"
@@ -535,12 +535,12 @@ msgstr "%s:已跳过:%s\n"
msgid "no gpg-agent running in this session\n"
msgstr "gpg-agent 在此次舍话中无法使用\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "GPG_AGENT_INFO 环境变量格式错误\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -764,29 +764,29 @@ msgstr "建立‘%s’时发生错误:%s\n"
msgid "host not found"
msgstr "[找不到用户标识]"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent 在此次舍话中无法使用\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "无法连接至‘%s’:%s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr ""
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr ""
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
#, fuzzy
msgid "canceled by user\n"
msgstr "用户取消\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
#, fuzzy
msgid "problem with the agent\n"
msgstr "代理程序有问题――正在停用代理程序\n"
@@ -6234,7 +6234,7 @@ msgstr ""
msgid "invalid option \"%.50s\"\n"
msgstr "无效的列表选项\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "您找到一个程序缺陷了……(%s:%d)\n"
@@ -6831,35 +6831,35 @@ msgstr ""
msgid "(this is the MD2 algorithm)\n"
msgstr ""
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
#, fuzzy
msgid "none"
msgstr "no"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
#, fuzzy
msgid "[none]"
msgstr "[未设定]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
#, fuzzy
msgid "[Error - invalid encoding]"
msgstr "错误:无效的响应。\n"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr ""
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr ""
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
#, fuzzy
msgid "[Error - invalid DN]"
msgstr "错误:无效的响应。\n"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/po/zh_TW.po b/po/zh_TW.po
index efc9dad99..040520453 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gnupg 2.0.8\n"
"Report-Msgid-Bugs-To: [email protected]\n"
-"POT-Creation-Date: 2008-03-13 01:05+0100\n"
+"POT-Creation-Date: 2008-03-17 10:57+0100\n"
"PO-Revision-Date: 2008-01-31 23:09+0800\n"
"Last-Translator: Jedi Lin <[email protected]>\n"
"Language-Team: Chinese (traditional) <[email protected]>\n"
@@ -21,18 +21,18 @@ msgstr ""
"X-Poedit-Country: TAIWAN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: agent/call-pinentry.c:223
+#: agent/call-pinentry.c:225
#, c-format
msgid "failed to acquire the pinentry lock: %s\n"
msgstr "個人識別碼項目鎖定獲取失敗: %s\n"
-#: agent/call-pinentry.c:592
+#: agent/call-pinentry.c:594
msgid ""
"Please enter your PIN, so that the secret key can be unlocked for this "
"session"
msgstr "請輸入你的 PIN 以便在此階段作業中解開密鑰"
-#: agent/call-pinentry.c:595
+#: agent/call-pinentry.c:597
msgid ""
"Please enter your passphrase, so that the secret key can be unlocked for "
"this session"
@@ -40,7 +40,7 @@ msgstr "請輸入你的密語以便在此階段作業中解開私鑰"
#. TRANSLATORS: This string is displayed by pinentry as the
#. label for the quality bar.
-#: agent/call-pinentry.c:630
+#: agent/call-pinentry.c:632
msgid "Quality:"
msgstr "品質: %s"
@@ -50,42 +50,42 @@ 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:653
+#: agent/call-pinentry.c:655
msgid "pinentry.qualitybar.tooltip"
msgstr ""
"輸入在上面的文字的品質.\n"
"關於此規範的細節, 請洽你的系統管理者."
-#: agent/call-pinentry.c:695
+#: agent/call-pinentry.c:697
#, c-format
msgid "SETERROR %s (try %d of %d)"
msgstr "設定錯誤 %s (第 %d 次嘗試, 最多 %d 次)"
-#: agent/call-pinentry.c:715 agent/call-pinentry.c:727
+#: agent/call-pinentry.c:717 agent/call-pinentry.c:729
msgid "PIN too long"
msgstr "PIN 太長"
-#: agent/call-pinentry.c:716
+#: agent/call-pinentry.c:718
msgid "Passphrase too long"
msgstr "密語太長"
-#: agent/call-pinentry.c:724
+#: agent/call-pinentry.c:726
msgid "Invalid characters in PIN"
msgstr "PIN 含有無效的字符"
-#: agent/call-pinentry.c:729
+#: agent/call-pinentry.c:731
msgid "PIN too short"
msgstr "PIN 太短"
-#: agent/call-pinentry.c:741
+#: agent/call-pinentry.c:743
msgid "Bad PIN"
msgstr "不良的 PIN"
-#: agent/call-pinentry.c:742
+#: agent/call-pinentry.c:744
msgid "Bad Passphrase"
msgstr "不良的密語"
-#: agent/call-pinentry.c:778
+#: agent/call-pinentry.c:780
msgid "Passphrase"
msgstr "密語"
@@ -514,12 +514,12 @@ msgstr "%s %s 已停止\n"
msgid "no gpg-agent running in this session\n"
msgstr "在此階段中沒有執行中的 gpg-agent\n"
-#: agent/gpg-agent.c:1918 common/simple-pwquery.c:350 common/asshelp.c:324
+#: agent/gpg-agent.c:1918 common/simple-pwquery.c:349 common/asshelp.c:324
#: tools/gpg-connect-agent.c:2021
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "被變造的 GPG_AGENT_INFO 環境變數\n"
-#: agent/gpg-agent.c:1931 common/simple-pwquery.c:362 common/asshelp.c:336
+#: agent/gpg-agent.c:1931 common/simple-pwquery.c:361 common/asshelp.c:336
#: tools/gpg-connect-agent.c:2032
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
@@ -739,28 +739,28 @@ msgstr "建立 socket 時出錯: %s\n"
msgid "host not found"
msgstr "找不到主機"
-#: common/simple-pwquery.c:336
+#: common/simple-pwquery.c:335
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent 在此階段無法使用\n"
-#: common/simple-pwquery.c:394
+#: common/simple-pwquery.c:393
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "無法連接至 `%s': %s\n"
-#: common/simple-pwquery.c:405
+#: common/simple-pwquery.c:404
msgid "communication problem with gpg-agent\n"
msgstr "與 gpg-agent 的溝通問題\n"
-#: common/simple-pwquery.c:415
+#: common/simple-pwquery.c:414
msgid "problem setting the gpg-agent options\n"
msgstr "設定 gpg-agent 選項時發生問題\n"
-#: common/simple-pwquery.c:578 common/simple-pwquery.c:674
+#: common/simple-pwquery.c:577 common/simple-pwquery.c:673
msgid "canceled by user\n"
msgstr "由使用者取消\n"
-#: common/simple-pwquery.c:593 common/simple-pwquery.c:680
+#: common/simple-pwquery.c:592 common/simple-pwquery.c:679
msgid "problem with the agent\n"
msgstr "代理程式的問題\n"
@@ -6187,7 +6187,7 @@ msgstr "\"%.50s\" 指令不明確\n"
msgid "invalid option \"%.50s\"\n"
msgstr "無效的選項 \"%.50s\"\n"
-#: jnlib/logging.c:624
+#: jnlib/logging.c:626
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "你找到一個瑕疵了 ... (%s:%d)\n"
@@ -6762,31 +6762,31 @@ msgstr "%u 位元的雜湊對 %u 位元的 %s 金鑰來說是無效的\n"
msgid "(this is the MD2 algorithm)\n"
msgstr "(這是 MD2 演算法)\n"
-#: sm/certdump.c:66 sm/certdump.c:149
+#: sm/certdump.c:68 sm/certdump.c:151
msgid "none"
msgstr "無"
-#: sm/certdump.c:160
+#: sm/certdump.c:162
msgid "[none]"
msgstr "[ 無 ]"
-#: sm/certdump.c:583 sm/certdump.c:628 sm/certdump.c:693 sm/certdump.c:746
+#: sm/certdump.c:585 sm/certdump.c:630 sm/certdump.c:695 sm/certdump.c:748
msgid "[Error - invalid encoding]"
msgstr "[錯誤 - 無效的編碼]"
-#: sm/certdump.c:591 sm/certdump.c:636
+#: sm/certdump.c:593 sm/certdump.c:638
msgid "[Error - out of core]"
msgstr "[錯誤 - 超出核心]"
-#: sm/certdump.c:673 sm/certdump.c:729
+#: sm/certdump.c:675 sm/certdump.c:731
msgid "[Error - No name]"
msgstr "[錯誤 - 沒有名稱]"
-#: sm/certdump.c:698 sm/certdump.c:752
+#: sm/certdump.c:700 sm/certdump.c:754
msgid "[Error - invalid DN]"
msgstr "[錯誤 - 無效的 DN]"
-#: sm/certdump.c:952
+#: sm/certdump.c:955
#, fuzzy, c-format
msgid ""
"Please enter the passphrase to unlock the secret key for the X.509 "
diff --git a/sm/ChangeLog b/sm/ChangeLog
index 603193ec7..44d304526 100644
--- a/sm/ChangeLog
+++ b/sm/ChangeLog
@@ -1,3 +1,15 @@
+2008-03-20 Werner Koch <[email protected]>
+
+ * certlist.c (gpgsm_add_to_certlist): Always save the first
+ subject and issuer. Initialize issuer with issuer and not with
+ subject.
+ (same_subject_issuer): Set issuer2 to issuer and not to subject.
+
+2008-03-17 Werner Koch <[email protected]>
+
+ * certdump.c (my_funopen_hook_size_t): New.
+ (format_name_writer): Use it.
+
2008-03-13 Werner Koch <[email protected]>
* certdump.c (gpgsm_fpr_and_name_for_status): Fix signed/unsigned
diff --git a/sm/certdump.c b/sm/certdump.c
index 60df2bdc0..91539017f 100644
--- a/sm/certdump.c
+++ b/sm/certdump.c
@@ -41,8 +41,10 @@
#ifdef HAVE_FOPENCOOKIE
typedef ssize_t my_funopen_hook_ret_t;
+typedef size_t my_funopen_hook_size_t;
#else
typedef int my_funopen_hook_ret_t;
+typedef int my_funopen_hook_size_t;
#endif
@@ -778,7 +780,8 @@ struct format_name_cookie
/* The writer function for the memory stream. */
static my_funopen_hook_ret_t
-format_name_writer (void *cookie, const char *buffer, size_t size)
+format_name_writer (void *cookie, const char *buffer,
+ my_funopen_hook_size_t size)
{
struct format_name_cookie *c = cookie;
char *p;
@@ -792,14 +795,14 @@ format_name_writer (void *cookie, const char *buffer, size_t size)
c->error = errno;
xfree (c->buffer);
errno = c->error;
- return -1;
+ return (my_funopen_hook_ret_t)(-1);
}
c->buffer = p;
memcpy (p + c->len, buffer, size);
c->len += size;
p[c->len] = 0; /* Terminate string. */
- return size;
+ return (my_funopen_hook_ret_t)size;
}
#endif /*HAVE_FOPENCOOKIE || HAVE_FUNOPEN*/
diff --git a/sm/certlist.c b/sm/certlist.c
index 9574b8bdc..2b717ef8b 100644
--- a/sm/certlist.c
+++ b/sm/certlist.c
@@ -1,5 +1,6 @@
/* certlist.c - build list of certificates
- * Copyright (C) 2001, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
+ * Copyright (C) 2001, 2003, 2004, 2005, 2007,
+ * 2008 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@@ -213,7 +214,7 @@ static int
same_subject_issuer (const char *subject, const char *issuer, ksba_cert_t cert)
{
char *subject2 = ksba_cert_get_subject (cert, 0);
- char *issuer2 = ksba_cert_get_subject (cert, 0);
+ char *issuer2 = ksba_cert_get_issuer (cert, 0);
int tmp;
tmp = (subject && subject2
@@ -307,8 +308,8 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
else
{
int wrong_usage = 0;
- char *subject = NULL;
- char *issuer = NULL;
+ char *first_subject = NULL;
+ char *first_issuer = NULL;
get_next:
rc = keydb_search (kh, &desc, 1);
@@ -316,6 +317,13 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
rc = keydb_get_cert (kh, &cert);
if (!rc)
{
+ if (!first_subject)
+ {
+ /* Save the the subject and the issuer for key usage
+ and ambiguous name tests. */
+ first_subject = ksba_cert_get_subject (cert, 0);
+ first_issuer = ksba_cert_get_issuer (cert, 0);
+ }
rc = secret? gpgsm_cert_use_sign_p (cert)
: gpgsm_cert_use_encrypt_p (cert);
if (gpg_err_code (rc) == GPG_ERR_WRONG_KEY_USAGE)
@@ -325,13 +333,12 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
if (!wrong_usage)
{ /* save the first match */
wrong_usage = rc;
- subject = ksba_cert_get_subject (cert, 0);
- issuer = ksba_cert_get_subject (cert, 0);
ksba_cert_release (cert);
cert = NULL;
goto get_next;
}
- else if (same_subject_issuer (subject, issuer, cert))
+ else if (same_subject_issuer (first_subject, first_issuer,
+ cert))
{
wrong_usage = rc;
ksba_cert_release (cert);
@@ -375,7 +382,9 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
keybox). */
if (!keydb_get_cert (kh, &cert2))
{
- int tmp = (same_subject_issuer (subject, issuer, cert2)
+ int tmp = (same_subject_issuer (first_subject,
+ first_issuer,
+ cert2)
&& ((gpg_err_code (
secret? gpgsm_cert_use_sign_p (cert2)
: gpgsm_cert_use_encrypt_p (cert2)
@@ -398,8 +407,10 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
}
gpgsm_release_certlist (dup_certs);
}
- xfree (subject);
- xfree (issuer);
+ xfree (first_subject);
+ xfree (first_issuer);
+ first_subject = NULL;
+ first_issuer = NULL;
if (!rc && !is_cert_in_certlist (cert, *listaddr))
{
@@ -441,6 +452,7 @@ gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
return rc == -1? gpg_error (GPG_ERR_NO_PUBKEY): rc;
}
+
void
gpgsm_release_certlist (certlist_t list)
{
diff --git a/tests/openpgp/ChangeLog b/tests/openpgp/ChangeLog
index ca64d3e18..4ce7b9fc0 100644
--- a/tests/openpgp/ChangeLog
+++ b/tests/openpgp/ChangeLog
@@ -1,3 +1,7 @@
+2008-03-19 Werner Koch <[email protected]>
+
+ * import.test, bug894-test.asc: New.
+
2007-12-14 Werner Koch <[email protected]>
* Makefile.am (./gpg_dearmor): Reverted last change because the
diff --git a/tests/openpgp/Makefile.am b/tests/openpgp/Makefile.am
index cf32bb9b0..d59e29868 100644
--- a/tests/openpgp/Makefile.am
+++ b/tests/openpgp/Makefile.am
@@ -29,13 +29,14 @@ TESTS = version.test mds.test \
armsignencrypt.test armdetach.test \
armdetachm.test detachm.test genkey1024.test \
conventional.test conventional-mdc.test \
- multisig.test verify.test armor.test
+ multisig.test verify.test armor.test \
+ import.test
TEST_FILES = pubring.asc secring.asc plain-1o.asc plain-2o.asc plain-3o.asc \
plain-1.asc plain-2.asc plain-3.asc plain-1-pgp.asc \
pubring.pkr.asc secring.skr.asc secdemo.asc pubdemo.asc \
- gpg.conf.tmpl bug537-test.data.asc
+ gpg.conf.tmpl bug537-test.data.asc bug894-test.asc
DATA_FILES = data-500 data-9000 data-32000 data-80000 plain-large
diff --git a/tests/openpgp/bug894-test.asc b/tests/openpgp/bug894-test.asc
new file mode 100644
index 000000000..11223eab4
--- /dev/null
+++ b/tests/openpgp/bug894-test.asc
@@ -0,0 +1,565 @@
+Test key for bug 894. segv when importing certain keys with duplicated
+user id.
+
+
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: PGP Key Server 0.9.6
+
+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
+pjU7TI+1eWg0mAtdAWGWaWFi6/uwUWCQD/G246LSBfQHdZDXFjT61YBvFvEnpb0e
+Xx4E6RQJ9icBF8ckjWfEu8ghvwHTAqt1qAuWsAFqKgAfYlnOkZZTwG3v//xIALih
+2KfiuRD0qPfJF8ScBHvhl21h/jfy96zJEsFadwaVDZ+pV6hsR0Ii02r2S+UGcLYF
+7Nhxv9dGm5sjMzo41QF2RjG8RV5ekogAH8f3ysE3BgyqKmeMhKizKR35GvVL9vjj
+Ia4UhGiUWbCbutpFVMxV1saQ8uG62LVituoTEgruz1CFdnQcEP52X5WTya7Xh0uo
+ciMF5Sx+9t86j9Aic34MeRaoe42zlfx0p5Hl1KuLkCqBYc3nf3+JAhwEEgECAAYF
+AkB2VUgACgkQHh0RbLTmcZQkjA//RtBpVxskkKz5uC0hZKQ1pmlYixXItbBL7qwn
+V9VkY/c1te1IQh5FT0aJKuSA95bFhs1UP0wCuHDLmsGCeYb/Ij/EinEU/4+Qn1Nu
+LG6PZ1zj+yT6mRJJek2R3cM1XSv/rAYeCP25u19yw/nBI+bSU/r1uZaOJFuy0DVs
+urMa73k5Mxr3cRceikzTRR+M3CAh264E4HA1AUDr6CAhYxBjjERfH7hwsJL6JMSc
+nbxgbYFq9S6lJWjFd+Asj/c35K1tON43b+dhd0C6kn+8v09bMTJjrqrjy0v/////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+//////+IRgQSEQIABgUCPhkNSwAKCRAXOrFG37Nm8m+5AJ971mhmPMA/x/OKCp84
+55CgtGndhwCeKztNwbBEIjsZ7oqdqmHchoz4a3SIRgQSEQIABgUCPrZbygAKCRAd
+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
+AKCV+pcs+/Vww9F1+M5vQ19tfd8t3g==
+=HtIh
+-----END PGP PUBLIC KEY BLOCK-----
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: PGP Key Server 0.9.6
+
+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
+IM4K+97xXMM=
+=STHU
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/tests/openpgp/import.test b/tests/openpgp/import.test
new file mode 100755
index 000000000..f03b98a77
--- /dev/null
+++ b/tests/openpgp/import.test
@@ -0,0 +1,26 @@
+#!/bin/sh
+# Copyright 2008 Free Software Foundation, Inc.
+# This file is free software; as a special exception the author gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved. This file is
+# distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY, to the extent permitted by law; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+. $srcdir/defs.inc || exit 3
+
+#i=$srcdir/bug894-test.asc
+#info "Checking bug 894: segv importing certain keys."
+#if $GPG --import $i; then
+# :
+#else
+# error "$i: import failed (bug 894)"
+#fi
+
+
+
+
+
+
+
+