mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Fix a bug in the ambigious name detection.
Minor cleanups.
This commit is contained in:
parent
432cd50b97
commit
c2a8254be7
2
NEWS
2
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.
|
||||
|
||||
|
||||
|
1
THANKS
1
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
|
||||
|
@ -1,3 +1,9 @@
|
||||
2008-03-17 Werner Koch <wk@g10code.com>
|
||||
|
||||
* agent.h (agent_inq_pinentry_launched): New prototype.
|
||||
|
||||
* call-pinentry.c: Include sys/types.h and signal.h.
|
||||
|
||||
2008-02-14 Werner Koch <wk@g10code.com>
|
||||
|
||||
* command.c (agent_inq_pinentry_launched): New.
|
||||
|
@ -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);
|
||||
|
@ -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>
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -1,3 +1,9 @@
|
||||
2008-03-17 Werner Koch <wk@g10code.com>
|
||||
|
||||
* iobuf.c (IOBUF_BUFFER_SIZE): Actually use this macro.
|
||||
|
||||
* simple-pwquery.c (agent_send_all_options): Fix last change.
|
||||
|
||||
2008-03-06 Werner Koch <wk@g10code.com>
|
||||
|
||||
* simple-pwquery.c (agent_send_all_options): Add support for
|
||||
|
@ -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",
|
||||
|
@ -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;
|
||||
|
@ -1,3 +1,10 @@
|
||||
2008-03-17 Werner Koch <wk@g10code.com>
|
||||
|
||||
* 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 <wk@g10code.com>
|
||||
|
||||
* argparse.c (strusage): Set copyright year to 2008.
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
60
po/be.po
60
po/be.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.2.2\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <nab@mail.by>\n"
|
||||
"Language-Team: Belarusian <i18n@mova.org>\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 "
|
||||
|
60
po/ca.po
60
po/ca.po
@ -27,7 +27,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <jordi@gnu.org>\n"
|
||||
"Language-Team: Catalan <ca@dodds.net>\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 "
|
||||
|
60
po/cs.po
60
po/cs.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg-1.3.92\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <rp@tns.cz>\n"
|
||||
"Language-Team: Czech <translations.cs@gnupg.cz>\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
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "
|
||||
|
60
po/da.po
60
po/da.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.0.0h\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <birger.langkjer@image.dk>\n"
|
||||
"Language-Team: Danish <dansk@klid.dk>\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
|
||||
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 "
|
||||
|
63
po/de.po
63
po/de.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg-2.0.6\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <koch@u32.de>\n"
|
||||
"Language-Team: German <de@li.org>\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 "
|
||||
|
60
po/el.po
60
po/el.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg-1.1.92\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <madf@hellug.gr>\n"
|
||||
"Language-Team: Greek <nls@tux.hellug.gr>\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 "
|
||||
|
||||
#. 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:
|
||||
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 "
|
||||
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 "
|
||||
|
60
po/eo.po
60
po/eo.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.0.6d\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <edmundo@rano.org>\n"
|
||||
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\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
|
||||
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 "
|
||||
|
60
po/es.po
60
po/es.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.4.1\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <jsuarez@ono.com>\n"
|
||||
"Language-Team: Spanish <es@li.org>\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
|
||||
|
||||
#. 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
|
||||
# ¿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 "
|
||||
|
60
po/et.po
60
po/et.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.2.2\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <Toomas.Soome@microlink.ee>\n"
|
||||
"Language-Team: Estonian <et@li.org>\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
|
||||
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 "
|
||||
|
60
po/fi.po
60
po/fi.po
@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.2.2\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <Tommi.Vainikainen@iki.fi>\n"
|
||||
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\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 "
|
||||
|
60
po/fr.po
60
po/fr.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.4.2rc2\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <gael@lautre.net>\n"
|
||||
"Language-Team: French <traduc@traduc.org>\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
|
||||
|
||||
#. 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
|
||||
#. 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
|
||||
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
|
||||
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 "
|
||||
|
60
po/gl.po
60
po/gl.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.2.4\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <jtarrio@trasno.net>\n"
|
||||
"Language-Team: Galician <gpul-traduccion@ceu.fi.udc.es>\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
|
||||
|
||||
#. 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 "
|
||||
|
60
po/hu.po
60
po/hu.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.2.5\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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ó <nfl@nfllab.com>\n"
|
||||
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\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
|
||||
|
||||
#. 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
|
||||
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 "
|
||||
|
60
po/id.po
60
po/id.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg-id\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <tedi_h@gmx.net>\n"
|
||||
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\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 "
|
||||
|
60
po/it.po
60
po/it.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.1.92\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <md@linux.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\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
|
||||
|
||||
#. 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 "
|
||||
|
60
po/ja.po
60
po/ja.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.3.92\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <iida@gnu.org>\n"
|
||||
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\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 "
|
||||
|
||||
#. 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 "ͭ
|
||||
#. 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:
|
||||
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 "
|
||||
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 "
|
||||
|
60
po/nb.po
60
po/nb.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.4.3\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <Trond.Endrestol@fagskolen.gjovik.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\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
|
||||
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 "
|
||||
|
60
po/pl.po
60
po/pl.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg-2.0.7\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <qboosh@pld-linux.org>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\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
|
||||
#. 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
|
||||
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
|
||||
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 "
|
||||
|
60
po/pt.po
60
po/pt.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <morais@kde.org>\n"
|
||||
"Language-Team: pt <morais@kde.org>\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 "
|
||||
|
60
po/pt_BR.po
60
po/pt_BR.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.0\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 "
|
||||
|
60
po/ro.po
60
po/ro.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.4.2rc1\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <lbuz@rolix.org>\n"
|
||||
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\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
|
||||
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 "
|
||||
|
60
po/ru.po
60
po/ru.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GnuPG 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <maxim.britov@gmail.com>\n"
|
||||
"Language-Team: Russian <gnupg-ru@gnupg.org>\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 "
|
||||
|
60
po/sk.po
60
po/sk.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.2.5\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <mmajer@econ.umb.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\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
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "
|
||||
|
60
po/sv.po
60
po/sv.po
@ -24,7 +24,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg trunk\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <po@danielnylander.se>\n"
|
||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\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 "
|
||||
|
60
po/tr.po
60
po/tr.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.9.94\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <nilgun@belgeler.gen.tr>\n"
|
||||
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\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 "
|
||||
|
60
po/zh_CN.po
60
po/zh_CN.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 1.4.4\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"POT-Creation-Date: 2008-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 <zuxyhere@eastday.com>\n"
|
||||
"Language-Team: Chinese (simplified) <i18n-translation@lists.linux.net.cn>\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 "
|
||||
|
60
po/zh_TW.po
60
po/zh_TW.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg 2.0.8\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\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 <Jedi@Jedi.org>\n"
|
||||
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\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 "
|
||||
|
12
sm/ChangeLog
12
sm/ChangeLog
@ -1,3 +1,15 @@
|
||||
2008-03-20 Werner Koch <wk@g10code.com>
|
||||
|
||||
* 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 <wk@g10code.com>
|
||||
|
||||
* certdump.c (my_funopen_hook_size_t): New.
|
||||
(format_name_writer): Use it.
|
||||
|
||||
2008-03-13 Werner Koch <wk@g10code.com>
|
||||
|
||||
* certdump.c (gpgsm_fpr_and_name_for_status): Fix signed/unsigned
|
||||
|
@ -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*/
|
||||
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -1,3 +1,7 @@
|
||||
2008-03-19 Werner Koch <wk@g10code.com>
|
||||
|
||||
* import.test, bug894-test.asc: New.
|
||||
|
||||
2007-12-14 Werner Koch <wk@g10code.com>
|
||||
|
||||
* Makefile.am (./gpg_dearmor): Reverted last change because the
|
||||
|
@ -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
|
||||
|
||||
|
565
tests/openpgp/bug894-test.asc
Normal file
565
tests/openpgp/bug894-test.asc
Normal file
@ -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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
|
||||
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
|
||||
PGw26t/PlIwfAJkB0oJuahPdiQy2q0w6L7QWck6VQwCgoPJNpzRE5XXyYhsTo7cM
|
||||
JgCfHUmIRgQSEQIABgUCPy5EkAAKCRDByv33yCXnF1F+AJ9Xx/AfSJFAO9iWr46L
|
||||
QdxVFa5NowCfTQPH16eTqS8eHx4bxOl8PFvpgaSIRgQSEQIABgUCPzbsjQAKCRBg
|
||||
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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-----
|
26
tests/openpgp/import.test
Executable file
26
tests/openpgp/import.test
Executable file
@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user