mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Merge branch 'master' into STABLE-BRANCH-2-2
This commit is contained in:
commit
be1e4560d5
@ -42,12 +42,6 @@
|
||||
#include "sexp-parse.h"
|
||||
|
||||
|
||||
#if GCRYPT_VERSION_NUMBER < 0x010700
|
||||
# define OCB_MODE_SUPPORTED 0
|
||||
#else
|
||||
# define OCB_MODE_SUPPORTED 1
|
||||
#endif
|
||||
|
||||
/* To use the openpgp-s2k3-ocb-aes scheme by default set the value of
|
||||
* this macro to 1. Note that the caller of agent_protect may
|
||||
* override this default. */
|
||||
@ -353,16 +347,11 @@ do_encryption (const unsigned char *hashbegin, size_t hashlen,
|
||||
*resultlen = 0;
|
||||
*result = NULL;
|
||||
|
||||
if (use_ocb && !OCB_MODE_SUPPORTED)
|
||||
return gpg_error (GPG_ERR_UNSUPPORTED_PROTECTION);
|
||||
|
||||
modestr = (use_ocb? "openpgp-s2k3-ocb-aes"
|
||||
/* */: "openpgp-s2k3-sha1-" PROT_CIPHER_STRING "-cbc");
|
||||
|
||||
rc = gcry_cipher_open (&hd, PROT_CIPHER,
|
||||
#if OCB_MODE_SUPPORTED
|
||||
use_ocb? GCRY_CIPHER_MODE_OCB :
|
||||
#endif
|
||||
GCRY_CIPHER_MODE_CBC,
|
||||
GCRY_CIPHER_SECURE);
|
||||
if (rc)
|
||||
@ -500,7 +489,6 @@ do_encryption (const unsigned char *hashbegin, size_t hashlen,
|
||||
p += blklen;
|
||||
}
|
||||
assert ( p - outbuf == outlen);
|
||||
#if OCB_MODE_SUPPORTED
|
||||
if (use_ocb)
|
||||
{
|
||||
gcry_cipher_final (hd);
|
||||
@ -512,7 +500,6 @@ do_encryption (const unsigned char *hashbegin, size_t hashlen,
|
||||
}
|
||||
}
|
||||
else
|
||||
#endif /*OCB_MODE_SUPPORTED*/
|
||||
{
|
||||
rc = gcry_cipher_encrypt (hd, outbuf, enclen, NULL, 0);
|
||||
}
|
||||
@ -755,9 +742,6 @@ do_decryption (const unsigned char *aad_begin, size_t aad_len,
|
||||
unsigned char *outbuf;
|
||||
size_t reallen;
|
||||
|
||||
if (is_ocb && !OCB_MODE_SUPPORTED)
|
||||
return gpg_error (GPG_ERR_UNSUPPORTED_PROTECTION);
|
||||
|
||||
blklen = gcry_cipher_get_algo_blklen (prot_cipher);
|
||||
if (is_ocb)
|
||||
{
|
||||
@ -774,9 +758,7 @@ do_decryption (const unsigned char *aad_begin, size_t aad_len,
|
||||
}
|
||||
|
||||
rc = gcry_cipher_open (&hd, prot_cipher,
|
||||
#if OCB_MODE_SUPPORTED
|
||||
is_ocb? GCRY_CIPHER_MODE_OCB :
|
||||
#endif
|
||||
GCRY_CIPHER_MODE_CBC,
|
||||
GCRY_CIPHER_SECURE);
|
||||
if (rc)
|
||||
@ -813,7 +795,6 @@ do_decryption (const unsigned char *aad_begin, size_t aad_len,
|
||||
/* Decrypt. */
|
||||
if (!rc)
|
||||
{
|
||||
#if OCB_MODE_SUPPORTED
|
||||
if (is_ocb)
|
||||
{
|
||||
rc = gcry_cipher_authenticate (hd, aad_begin,
|
||||
@ -833,7 +814,6 @@ do_decryption (const unsigned char *aad_begin, size_t aad_len,
|
||||
rc = gcry_cipher_checktag (hd, protected + protectedlen - 16, 16);
|
||||
}
|
||||
else
|
||||
#endif /*OCB_MODE_SUPPORTED*/
|
||||
{
|
||||
rc = gcry_cipher_decrypt (hd, outbuf, protectedlen,
|
||||
protected, protectedlen);
|
||||
@ -1177,8 +1157,7 @@ agent_unprotect (ctrl_t ctrl,
|
||||
is_ocb = algotable[i].is_ocb;
|
||||
break;
|
||||
}
|
||||
if (i == DIM (algotable)
|
||||
|| (is_ocb && !OCB_MODE_SUPPORTED))
|
||||
if (i == DIM (algotable))
|
||||
return gpg_error (GPG_ERR_UNSUPPORTED_PROTECTION);
|
||||
|
||||
if (!prot_cipher) /* This is "openpgp-native". */
|
||||
|
22
build-aux/config.guess
vendored
22
build-aux/config.guess
vendored
@ -2,7 +2,7 @@
|
||||
# Attempt to guess a canonical system name.
|
||||
# Copyright 1992-2016 Free Software Foundation, Inc.
|
||||
|
||||
timestamp='2016-04-02'
|
||||
timestamp='2016-05-15'
|
||||
|
||||
# This file is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
@ -186,9 +186,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
||||
*) machine=${UNAME_MACHINE_ARCH}-unknown ;;
|
||||
esac
|
||||
# The Operating System including object format, if it has switched
|
||||
# to ELF recently, or will in the future.
|
||||
# to ELF recently (or will in the future) and ABI.
|
||||
case "${UNAME_MACHINE_ARCH}" in
|
||||
arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax)
|
||||
earm*)
|
||||
os=netbsdelf
|
||||
;;
|
||||
arm*|i386|m68k|ns32k|sh3*|sparc|vax)
|
||||
eval $set_cc_for_build
|
||||
if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
|
||||
| grep -q __ELF__
|
||||
@ -1408,18 +1411,17 @@ esac
|
||||
cat >&2 <<EOF
|
||||
$0: unable to guess system type
|
||||
|
||||
This script, last modified $timestamp, has failed to recognize
|
||||
the operating system you are using. It is advised that you
|
||||
download the most up to date version of the config scripts from
|
||||
This script (version $timestamp), has failed to recognize the
|
||||
operating system you are using. If your script is old, overwrite
|
||||
config.guess and config.sub with the latest versions from:
|
||||
|
||||
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
|
||||
and
|
||||
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
|
||||
|
||||
If the version you run ($0) is already up to date, please
|
||||
send the following data and any information you think might be
|
||||
pertinent to <config-patches@gnu.org> in order to provide the needed
|
||||
information to handle your system.
|
||||
If $0 has already been updated, send the following data and any
|
||||
information you think might be pertinent to config-patches@gnu.org to
|
||||
provide the necessary information to handle your system.
|
||||
|
||||
config.guess timestamp = $timestamp
|
||||
|
||||
|
14
build-aux/config.sub
vendored
14
build-aux/config.sub
vendored
@ -2,7 +2,7 @@
|
||||
# Configuration validation subroutine script.
|
||||
# Copyright 1992-2016 Free Software Foundation, Inc.
|
||||
|
||||
timestamp='2016-03-30'
|
||||
timestamp='2016-06-20'
|
||||
|
||||
# This file is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
@ -643,6 +643,14 @@ case $basic_machine in
|
||||
basic_machine=m68k-bull
|
||||
os=-sysv3
|
||||
;;
|
||||
e500v[12])
|
||||
basic_machine=powerpc-unknown
|
||||
os=$os"spe"
|
||||
;;
|
||||
e500v[12]-*)
|
||||
basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
|
||||
os=$os"spe"
|
||||
;;
|
||||
ebmon29k)
|
||||
basic_machine=a29k-amd
|
||||
os=-ebmon
|
||||
@ -1389,7 +1397,7 @@ case $os in
|
||||
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
||||
| -chorusos* | -chorusrdb* | -cegcc* \
|
||||
| -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
||||
| -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
|
||||
| -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
|
||||
| -linux-newlib* | -linux-musl* | -linux-uclibc* \
|
||||
| -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
|
||||
| -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
|
||||
@ -1399,7 +1407,7 @@ case $os in
|
||||
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
||||
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
||||
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
|
||||
| -onefs* | -tirtos*)
|
||||
| -onefs* | -tirtos* | -phoenix*)
|
||||
# Remember, each alternative MUST END IN *, to match a version number.
|
||||
;;
|
||||
-qnx*)
|
||||
|
@ -36,11 +36,10 @@
|
||||
#include <gpg-error.h> /* We need gpg_error_t and estream. */
|
||||
|
||||
/* These error codes are used but not defined in the required
|
||||
libgpg-error version. Define them here. */
|
||||
/* Example: (#if GPG_ERROR_VERSION_NUMBER < 0x011500 // 1.21) */
|
||||
#if GPG_ERROR_VERSION_NUMBER < 0x011600 /* 1.22 */
|
||||
# define GPG_ERR_DB_CORRUPTED 218
|
||||
#endif /* gpg_error < 1.22 */
|
||||
* libgpg-error version. Define them here.
|
||||
* Example: (#if GPG_ERROR_VERSION_NUMBER < 0x011500 // 1.21)
|
||||
*/
|
||||
|
||||
|
||||
/* Hash function used with libksba. */
|
||||
#define HASH_FNC ((void (*)(void *, const void*,size_t))gcry_md_write)
|
||||
|
11
configure.ac
11
configure.ac
@ -49,23 +49,22 @@ m4_define([mym4_revision_dec], m4_argn(8, mym4_verslist))
|
||||
m4_esyscmd([echo ]mym4_version[>VERSION])
|
||||
AC_INIT([mym4_package],[mym4_version], [https://bugs.gnupg.org])
|
||||
|
||||
# Note that for Windows we require version 1.22
|
||||
NEED_GPG_ERROR_VERSION=1.21
|
||||
NEED_GPG_ERROR_VERSION=1.24
|
||||
|
||||
NEED_LIBGCRYPT_API=1
|
||||
NEED_LIBGCRYPT_VERSION=1.6.0
|
||||
NEED_LIBGCRYPT_VERSION=1.7.0
|
||||
|
||||
NEED_LIBASSUAN_API=2
|
||||
NEED_LIBASSUAN_VERSION=2.4.1
|
||||
NEED_LIBASSUAN_VERSION=2.4.3
|
||||
|
||||
NEED_KSBA_API=1
|
||||
NEED_KSBA_VERSION=1.2.0
|
||||
NEED_KSBA_VERSION=1.3.4
|
||||
|
||||
NEED_NTBTLS_API=1
|
||||
NEED_NTBTLS_VERSION=0.1.0
|
||||
|
||||
NEED_NPTH_API=1
|
||||
NEED_NPTH_VERSION=0.91
|
||||
NEED_NPTH_VERSION=1.2
|
||||
|
||||
|
||||
NEED_GNUTLS_VERSION=3.0
|
||||
|
@ -1207,12 +1207,16 @@ ks_hkp_search (ctrl_t ctrl, parsed_uri_t uri, const char *pattern,
|
||||
pattern = fprbuf;
|
||||
break;
|
||||
case KEYDB_SEARCH_MODE_FPR16:
|
||||
bin2hex (desc.u.fpr, 16, fprbuf);
|
||||
fprbuf[0] = '0';
|
||||
fprbuf[1] = 'x';
|
||||
bin2hex (desc.u.fpr, 16, fprbuf+2);
|
||||
pattern = fprbuf;
|
||||
break;
|
||||
case KEYDB_SEARCH_MODE_FPR20:
|
||||
case KEYDB_SEARCH_MODE_FPR:
|
||||
bin2hex (desc.u.fpr, 20, fprbuf);
|
||||
fprbuf[0] = '0';
|
||||
fprbuf[1] = 'x';
|
||||
bin2hex (desc.u.fpr, 20, fprbuf+2);
|
||||
pattern = fprbuf;
|
||||
break;
|
||||
default:
|
||||
|
@ -73,6 +73,7 @@ ks_http_fetch (ctrl_t ctrl, const char *url, estream_t *r_fp)
|
||||
estream_t fp = NULL;
|
||||
char *request_buffer = NULL;
|
||||
|
||||
once_more:
|
||||
/* Note that we only use the system provided certificates with the
|
||||
* fetch command. */
|
||||
err = http_session_new (&session, NULL, NULL, HTTP_FLAG_TRUST_SYS);
|
||||
@ -81,7 +82,6 @@ ks_http_fetch (ctrl_t ctrl, const char *url, estream_t *r_fp)
|
||||
http_session_set_log_cb (session, cert_log_cb);
|
||||
|
||||
*r_fp = NULL;
|
||||
once_more:
|
||||
err = http_open (&http,
|
||||
HTTP_REQ_GET,
|
||||
url,
|
||||
@ -146,6 +146,7 @@ ks_http_fetch (ctrl_t ctrl, const char *url, estream_t *r_fp)
|
||||
url = request_buffer;
|
||||
http_close (http, 0);
|
||||
http = NULL;
|
||||
http_session_release (session);
|
||||
goto once_more;
|
||||
}
|
||||
err = gpg_error_from_syserror ();
|
||||
|
@ -274,14 +274,12 @@ strcpy_escaped_plus (char *d, const unsigned char *s)
|
||||
}
|
||||
|
||||
|
||||
/* This fucntion returns true if a Tor server is running. The sattus
|
||||
/* This function returns true if a Tor server is running. The sattus
|
||||
is cached for the current conenction. */
|
||||
static int
|
||||
is_tor_running (ctrl_t ctrl)
|
||||
{
|
||||
#if ASSUAN_VERSION_NUMBER >= 0x020402
|
||||
/* Check whether we can connect to the proxy. We use a
|
||||
special feature introduced with libassuan 2.4.2. */
|
||||
/* Check whether we can connect to the proxy. */
|
||||
|
||||
if (!ctrl || !ctrl->server_local)
|
||||
return 0; /* Ooops. */
|
||||
@ -300,9 +298,6 @@ is_tor_running (ctrl_t ctrl)
|
||||
}
|
||||
}
|
||||
return (ctrl->server_local->tor_state > 0);
|
||||
#else /* Libassuan < 2.4.2 */
|
||||
return 0; /* We don't know. */
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
14
doc/gpg.texi
14
doc/gpg.texi
@ -2345,20 +2345,6 @@ as it is easily machine parsed. The details of this format are
|
||||
documented in the file @file{doc/DETAILS}, which is included in the GnuPG
|
||||
source distribution.
|
||||
|
||||
|
||||
@item --print-pka-records
|
||||
@opindex print-pka-records
|
||||
Modify the output of the list commands to print PKA records suitable
|
||||
to put into DNS zone files. An ORIGIN line is printed before each
|
||||
record to allow diverting the records to the corresponding zone file.
|
||||
|
||||
@item --print-dane-records
|
||||
@opindex print-dane-records
|
||||
Modify the output of the list commands to print OpenPGP DANE records
|
||||
suitable to put into DNS zone files. An ORIGIN line is printed before
|
||||
each record to allow diverting the records to the corresponding zone
|
||||
file.
|
||||
|
||||
@item --fixed-list-mode
|
||||
@opindex fixed-list-mode
|
||||
Do not merge primary user ID and primary key in @option{--with-colon}
|
||||
|
42
g10/getkey.c
42
g10/getkey.c
@ -3555,6 +3555,7 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
{
|
||||
gpg_error_t err = 0;
|
||||
const char *name;
|
||||
kbnode_t keyblock;
|
||||
struct
|
||||
{
|
||||
int eof;
|
||||
@ -3562,6 +3563,7 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
strlist_t sl;
|
||||
kbnode_t keyblock;
|
||||
kbnode_t node;
|
||||
getkey_ctx_t ctx;
|
||||
} *c = *context;
|
||||
|
||||
if (!c)
|
||||
@ -3577,6 +3579,7 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
{
|
||||
/* Free the context. */
|
||||
release_kbnode (c->keyblock);
|
||||
getkey_end (c->ctx);
|
||||
xfree (c);
|
||||
*context = NULL;
|
||||
return 0;
|
||||
@ -3594,6 +3597,7 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
do
|
||||
{
|
||||
name = NULL;
|
||||
keyblock = NULL;
|
||||
switch (c->state)
|
||||
{
|
||||
case 0: /* First try to use the --default-key. */
|
||||
@ -3616,13 +3620,48 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
c->state++;
|
||||
break;
|
||||
|
||||
case 3: /* Init search context to try all keys. */
|
||||
if (opt.try_all_secrets)
|
||||
{
|
||||
err = getkey_bynames (&c->ctx, NULL, NULL, 1, &keyblock);
|
||||
if (err)
|
||||
{
|
||||
release_kbnode (keyblock);
|
||||
keyblock = NULL;
|
||||
getkey_end (c->ctx);
|
||||
c->ctx = NULL;
|
||||
}
|
||||
}
|
||||
c->state++;
|
||||
break;
|
||||
|
||||
case 4: /* Get next item from the context. */
|
||||
if (c->ctx)
|
||||
{
|
||||
err = getkey_next (c->ctx, NULL, &keyblock);
|
||||
if (err)
|
||||
{
|
||||
release_kbnode (keyblock);
|
||||
keyblock = NULL;
|
||||
getkey_end (c->ctx);
|
||||
c->ctx = NULL;
|
||||
}
|
||||
}
|
||||
else
|
||||
c->state++;
|
||||
break;
|
||||
|
||||
default: /* No more names to check - stop. */
|
||||
c->eof = 1;
|
||||
return gpg_error (GPG_ERR_EOF);
|
||||
}
|
||||
}
|
||||
while (!name || !*name);
|
||||
while ((!name || !*name) && !keyblock);
|
||||
|
||||
if (keyblock)
|
||||
c->node = c->keyblock = keyblock;
|
||||
else
|
||||
{
|
||||
err = getkey_byname (ctrl, NULL, NULL, name, 1, &c->keyblock);
|
||||
if (err)
|
||||
{
|
||||
@ -3635,6 +3674,7 @@ enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *sk)
|
||||
else
|
||||
c->node = c->keyblock;
|
||||
}
|
||||
}
|
||||
|
||||
/* Get the next key from the current keyblock. */
|
||||
for (; c->node; c->node = c->node->next)
|
||||
|
26
g10/gpg.c
26
g10/gpg.c
@ -534,7 +534,7 @@ static ARGPARSE_OPTS opts[] = {
|
||||
ARGPARSE_s_n (oBZ2DecompressLowmem, "bzip2-decompress-lowmem", "@"),
|
||||
|
||||
ARGPARSE_s_n (oMimemode, "mimemode", "@"),
|
||||
ARGPARSE_s_n (oTextmode, "textmode", N_("use canonical text mode")),
|
||||
ARGPARSE_s_n (oTextmodeShort, NULL, "@"),
|
||||
ARGPARSE_s_n (oTextmode, "textmode", N_("use canonical text mode")),
|
||||
ARGPARSE_s_n (oNoTextmode, "no-textmode", "@"),
|
||||
|
||||
@ -2173,15 +2173,19 @@ main (int argc, char **argv)
|
||||
int pwfd = -1;
|
||||
int fpr_maybe_cmd = 0; /* --fingerprint maybe a command. */
|
||||
int any_explicit_recipient = 0;
|
||||
int require_secmem=0,got_secmem=0;
|
||||
int require_secmem = 0;
|
||||
int got_secmem = 0;
|
||||
struct assuan_malloc_hooks malloc_hooks;
|
||||
ctrl_t ctrl;
|
||||
|
||||
static int print_dane_records;
|
||||
static int print_pka_records;
|
||||
|
||||
|
||||
#ifdef __riscos__
|
||||
opt.lock_once = 1;
|
||||
#endif /* __riscos__ */
|
||||
|
||||
|
||||
/* Please note that we may running SUID(ROOT), so be very CAREFUL
|
||||
when adding any stuff between here and the call to
|
||||
secmem_init() somewhere after the option parsing. */
|
||||
@ -3186,8 +3190,8 @@ main (int argc, char **argv)
|
||||
case oFastListMode: opt.fast_list_mode = 1; break;
|
||||
case oFixedListMode: /* Dummy */ break;
|
||||
case oLegacyListMode: opt.legacy_list_mode = 1; break;
|
||||
case oPrintPKARecords: opt.print_pka_records = 1; break;
|
||||
case oPrintDANERecords: opt.print_dane_records = 1; break;
|
||||
case oPrintPKARecords: print_pka_records = 1; break;
|
||||
case oPrintDANERecords: print_dane_records = 1; break;
|
||||
case oListOnly: opt.list_only=1; break;
|
||||
case oIgnoreTimeConflict: opt.ignore_time_conflict = 1; break;
|
||||
case oIgnoreValidFrom: opt.ignore_valid_from = 1; break;
|
||||
@ -3410,6 +3414,18 @@ main (int argc, char **argv)
|
||||
xfree (save_configname);
|
||||
xfree (default_configname);
|
||||
|
||||
if (print_dane_records)
|
||||
log_error ("invalid option \"%s\"; use \"%s\" instead\n",
|
||||
"--print-dane-records",
|
||||
"--export-options export-dane");
|
||||
if (print_pka_records)
|
||||
log_error ("invalid option \"%s\"; use \"%s\" instead\n",
|
||||
"--print-pks-records",
|
||||
"--export-options export-pka");
|
||||
if (log_get_errorcount (0))
|
||||
g10_exit(2);
|
||||
|
||||
|
||||
if( nogreeting )
|
||||
greeting = 0;
|
||||
|
||||
|
12
g10/keyid.c
12
g10/keyid.c
@ -347,11 +347,7 @@ format_keyid (u32 *keyid, int format, char *buffer, int len)
|
||||
break;
|
||||
|
||||
case KF_LONG:
|
||||
if (keyid[0])
|
||||
snprintf (buffer, len, "%08lX%08lX",
|
||||
(ulong)keyid[0], (ulong)keyid[1]);
|
||||
else
|
||||
snprintf (buffer, len, "%08lX", (ulong)keyid[1]);
|
||||
snprintf (buffer, len, "%08lX%08lX", (ulong)keyid[0], (ulong)keyid[1]);
|
||||
break;
|
||||
|
||||
case KF_0xSHORT:
|
||||
@ -359,11 +355,7 @@ format_keyid (u32 *keyid, int format, char *buffer, int len)
|
||||
break;
|
||||
|
||||
case KF_0xLONG:
|
||||
if(keyid[0])
|
||||
snprintf (buffer, len, "0x%08lX%08lX",
|
||||
(ulong)keyid[0],(ulong)keyid[1]);
|
||||
else
|
||||
snprintf (buffer, len, "0x%08lX", (ulong)keyid[1]);
|
||||
snprintf (buffer, len, "0x%08lX%08lX", (ulong)keyid[0],(ulong)keyid[1]);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
156
g10/keylist.c
156
g10/keylist.c
@ -864,156 +864,6 @@ dump_attribs (const PKT_user_id *uid, PKT_public_key *pk)
|
||||
}
|
||||
|
||||
|
||||
/* Print IPGP cert records instead of a standard key listing. */
|
||||
static void
|
||||
list_keyblock_pka (ctrl_t ctrl, kbnode_t keyblock)
|
||||
{
|
||||
kbnode_t kbctx;
|
||||
kbnode_t node;
|
||||
PKT_public_key *pk;
|
||||
char pkstrbuf[PUBKEY_STRING_SIZE];
|
||||
char *hexfpr;
|
||||
char *hexkeyblock = NULL;
|
||||
unsigned int hexkeyblocklen = 0; /* Init to avoid -Wmaybe-uninitialized. */
|
||||
const char *s;
|
||||
|
||||
/* Get the keyid from the keyblock. */
|
||||
node = find_kbnode (keyblock, PKT_PUBLIC_KEY);
|
||||
if (!node)
|
||||
{
|
||||
log_error ("Oops; key lost!\n");
|
||||
dump_kbnode (keyblock);
|
||||
return;
|
||||
}
|
||||
|
||||
pk = node->pkt->pkt.public_key;
|
||||
|
||||
/* First print an overview of the key with all userids. */
|
||||
es_fprintf (es_stdout, ";; pub %s/%s %s\n;;",
|
||||
pubkey_string (pk, pkstrbuf, sizeof pkstrbuf),
|
||||
keystr_from_pk (pk), datestr_from_pk (pk));
|
||||
print_fingerprint (NULL, pk, 10);
|
||||
for (kbctx = NULL; (node = walk_kbnode (keyblock, &kbctx, 0));)
|
||||
{
|
||||
if (node->pkt->pkttype == PKT_USER_ID)
|
||||
{
|
||||
PKT_user_id *uid = node->pkt->pkt.user_id;
|
||||
|
||||
if (pk && (uid->is_expired || uid->is_revoked)
|
||||
&& !(opt.list_options & LIST_SHOW_UNUSABLE_UIDS))
|
||||
continue;
|
||||
|
||||
es_fputs (";; uid ", es_stdout);
|
||||
print_utf8_buffer (es_stdout, uid->name, uid->len);
|
||||
es_putc ('\n', es_stdout);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
hexfpr = hexfingerprint (pk, NULL, 0);
|
||||
if (opt.print_dane_records)
|
||||
{
|
||||
kbnode_t dummy_keyblock;
|
||||
void *data;
|
||||
size_t datalen;
|
||||
gpg_error_t err;
|
||||
|
||||
/* We do not have an export function which allows to pass a
|
||||
keyblock, thus we need to search the key again. */
|
||||
err = export_pubkey_buffer (ctrl, hexfpr,
|
||||
(EXPORT_MINIMAL | EXPORT_CLEAN), NULL,
|
||||
&dummy_keyblock, &data, &datalen);
|
||||
release_kbnode (dummy_keyblock);
|
||||
if (!err)
|
||||
{
|
||||
hexkeyblocklen = datalen;
|
||||
hexkeyblock = bin2hex (data, datalen, NULL);
|
||||
if (!hexkeyblock)
|
||||
err = gpg_error_from_syserror ();
|
||||
xfree (data);
|
||||
ascii_strlwr (hexkeyblock);
|
||||
}
|
||||
if (err)
|
||||
log_error (_("skipped \"%s\": %s\n"), hexfpr, gpg_strerror (err));
|
||||
|
||||
}
|
||||
|
||||
for (kbctx = NULL; (node = walk_kbnode (keyblock, &kbctx, 0));)
|
||||
{
|
||||
if (node->pkt->pkttype == PKT_USER_ID)
|
||||
{
|
||||
PKT_user_id *uid = node->pkt->pkt.user_id;
|
||||
char *mbox;
|
||||
char *p;
|
||||
|
||||
if (pk && (uid->is_expired || uid->is_revoked)
|
||||
&& !(opt.list_options & LIST_SHOW_UNUSABLE_UIDS))
|
||||
continue;
|
||||
|
||||
mbox = mailbox_from_userid (uid->name);
|
||||
if (mbox && (p = strchr (mbox, '@')))
|
||||
{
|
||||
char hashbuf[32];
|
||||
char *hash;
|
||||
unsigned int len;
|
||||
|
||||
*p++ = 0;
|
||||
if (opt.print_pka_records)
|
||||
{
|
||||
es_fprintf (es_stdout, "$ORIGIN _pka.%s.\n; %s\n; ",
|
||||
p, hexfpr);
|
||||
print_utf8_buffer (es_stdout, uid->name, uid->len);
|
||||
es_putc ('\n', es_stdout);
|
||||
gcry_md_hash_buffer (GCRY_MD_SHA1, hashbuf,
|
||||
mbox, strlen (mbox));
|
||||
hash = zb32_encode (hashbuf, 8*20);
|
||||
if (hash)
|
||||
{
|
||||
len = strlen (hexfpr)/2;
|
||||
es_fprintf (es_stdout,
|
||||
"%s TYPE37 \\# %u 0006 0000 00 %02X %s\n",
|
||||
hash, 6 + len, len, hexfpr);
|
||||
xfree (hash);
|
||||
}
|
||||
}
|
||||
if (opt.print_dane_records && hexkeyblock)
|
||||
{
|
||||
es_fprintf (es_stdout, "$ORIGIN _openpgpkey.%s.\n; %s\n; ",
|
||||
p, hexfpr);
|
||||
print_utf8_buffer (es_stdout, uid->name, uid->len);
|
||||
es_putc ('\n', es_stdout);
|
||||
gcry_md_hash_buffer (GCRY_MD_SHA256, hashbuf,
|
||||
mbox, strlen (mbox));
|
||||
hash = bin2hex (hashbuf, 28, NULL);
|
||||
if (hash)
|
||||
{
|
||||
ascii_strlwr (hash);
|
||||
es_fprintf (es_stdout, "%s TYPE61 \\# %u (\n",
|
||||
hash, hexkeyblocklen);
|
||||
xfree (hash);
|
||||
s = hexkeyblock;
|
||||
for (;;)
|
||||
{
|
||||
es_fprintf (es_stdout, "\t%.64s\n", s);
|
||||
if (strlen (s) < 64)
|
||||
break;
|
||||
s += 64;
|
||||
}
|
||||
es_fputs ("\t)\n", es_stdout);
|
||||
}
|
||||
}
|
||||
}
|
||||
xfree (mbox);
|
||||
}
|
||||
|
||||
}
|
||||
es_putc ('\n', es_stdout);
|
||||
|
||||
xfree (hexkeyblock);
|
||||
xfree (hexfpr);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
list_keyblock_print (ctrl_t ctrl, kbnode_t keyblock, int secret, int fpr,
|
||||
struct keylist_context *listctx)
|
||||
@ -1747,12 +1597,12 @@ list_keyblock (ctrl_t ctrl,
|
||||
struct keylist_context *listctx)
|
||||
{
|
||||
reorder_keyblock (keyblock);
|
||||
if (opt.print_pka_records || opt.print_dane_records)
|
||||
list_keyblock_pka (ctrl, keyblock);
|
||||
else if (opt.with_colons)
|
||||
|
||||
if (opt.with_colons)
|
||||
list_keyblock_colon (ctrl, keyblock, secret, has_secret, fpr);
|
||||
else
|
||||
list_keyblock_print (ctrl, keyblock, secret, fpr, listctx);
|
||||
|
||||
if (secret)
|
||||
es_fflush (es_stdout);
|
||||
}
|
||||
|
@ -78,8 +78,6 @@ struct
|
||||
int with_wkd_hash; /* Option --with-wkd-hash. */
|
||||
int fingerprint; /* list fingerprints */
|
||||
int list_sigs; /* list signatures */
|
||||
int print_pka_records;
|
||||
int print_dane_records;
|
||||
int no_armor;
|
||||
int list_packets; /* Option --list-packets active. */
|
||||
int def_cipher_algo;
|
||||
|
55
po/ca.po
55
po/ca.po
@ -1859,6 +1859,17 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: es descarta: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "s'està escrivint en «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr ""
|
||||
"clau %08lX: la signatura de la subclau és en el lloc equivocat - es "
|
||||
"descarta\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "s'està escrivint la clau secreta a «%s»\n"
|
||||
@ -1867,12 +1878,6 @@ msgstr "s'està escrivint la clau secreta a «%s»\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "clau %08lX: clau d'estil PGP 2.x - es descarta\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr ""
|
||||
"clau %08lX: la signatura de la subclau és en el lloc equivocat - es "
|
||||
"descarta\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "AVÍS: no s'ha exportat res\n"
|
||||
|
||||
@ -1995,6 +2000,11 @@ msgstr "genera un nou parell de claus"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "genera un nou parell de claus"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "genera un nou parell de claus"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2343,6 +2353,10 @@ msgstr "%s:%d: opcions d'importanció no vàlides\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opcions d'importació no vàlides\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "opcions d'importació no vàlides\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d opcions d'exportació no vàlides\n"
|
||||
@ -2685,6 +2699,10 @@ msgstr "actualitza la base de dades de confiança"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "actualitza la base de dades de confiança"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "mostra empremta"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2695,6 +2713,9 @@ msgstr "la clau secreta és inusable"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "es descarta un bloc de tipus %d\n"
|
||||
@ -2834,11 +2855,6 @@ msgstr "clau %08lX: clau nova - es descarta \n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "no s'ha trobat cap anell escrivible: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "s'està escrivint en «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3652,6 +3668,11 @@ msgstr "ha fallat l'actualització: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "La clau no ha canviat, per tant no cal actualització.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "La generació de claus ha fallat: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "error: l'empremta digital és invàlida\n"
|
||||
@ -3991,6 +4012,10 @@ msgstr "Realment voleu crear els certificats de revocació? (s/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "ho hi ha clau secreta\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "l'ID d'usuari «%s» ja està revocat\n"
|
||||
@ -4526,10 +4551,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Anell"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "es descarta «%s»: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Empremtes digital de la clau primària:"
|
||||
|
||||
@ -4652,6 +4673,10 @@ msgstr "s'està sol·licitant la clau %08lX de %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "error de servidor de claus"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "es descarta «%s»: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "s'està sol·licitant la clau %08lX de %s\n"
|
||||
|
53
po/cs.po
53
po/cs.po
@ -1709,6 +1709,15 @@ msgstr "odstranit při exportu z klíče vše, co lze"
|
||||
msgid " - skipped"
|
||||
msgstr " – přeskočeno"
|
||||
|
||||
# g10/import.c:766 g10/openfile.c:261#, c-format
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "zapisuje se do „%s“\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "klíč %s: tělo klíče je na kartě – přeskočeno\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "exportování tajného klíče není povoleno\n"
|
||||
|
||||
@ -1716,10 +1725,6 @@ msgstr "exportování tajného klíče není povoleno\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "klíč %s: PGP 2.x klíč – přeskočeno\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "klíč %s: tělo klíče je na kartě – přeskočeno\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "VAROVÁNÍ: nebylo nic vyexportováno\n"
|
||||
|
||||
@ -1836,6 +1841,11 @@ msgstr "rychle vytvořit nový pár klíčů"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "rychle přidat novou identitu uživatele"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "quickly add a new user-id"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "rychle přidat novou identitu uživatele"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "komplexní vytvoření páru klíčů"
|
||||
|
||||
@ -2164,6 +2174,11 @@ msgstr "%s:%d: neplatný parametr pro import\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "neplatný parametr pro import\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "neplatný parametr pro výpis\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: neplatný parametr pro export\n"
|
||||
@ -2485,6 +2500,11 @@ msgstr "nemazat údaje o důvěře během importu"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "neaktualizovat databázi důvěry po importu"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "vypsat otisk klíče"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "přijímat aktualizace pouze u existujících klíčů"
|
||||
|
||||
@ -2494,6 +2514,9 @@ msgstr "odstranit z klíče po importu nepoužitelné části"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "odstranit po importu z klíče vše, co lze"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "blok typu %d byl přeskočen\n"
|
||||
@ -2636,11 +2659,6 @@ msgstr "klíč %s: nový klíč - přeskočen\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "nenalezen zapisovatelný soubor klíčů (keyring): %s\n"
|
||||
|
||||
# g10/import.c:766 g10/openfile.c:261#, c-format
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "zapisuje se do „%s“\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "chyba při zápisu souboru klíčů (keyring) „%s“: %s\n"
|
||||
@ -3376,6 +3394,11 @@ msgstr "aktualizace selhala: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Klíč nebyl změněn, takže není potřeba jej aktualizovat.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Vytvoření klíče se nepodařilo: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "„%s“ není otisk\n"
|
||||
@ -3683,6 +3706,10 @@ msgstr "Opravdu vytvořit revokační certifikáty? (a/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "neexistuje tajný klíč\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "uživatelské ID „%s“ je již revokováno\n"
|
||||
@ -4194,10 +4221,6 @@ msgstr[2] "Pozor: %lu klíč(ů) přeskočen(o) kvůli jejich přílišné velik
|
||||
msgid "Keyring"
|
||||
msgstr "Soubor klíčů (keyring)"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "přeskočen „%s“: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Otisk primárního klíče:"
|
||||
|
||||
@ -4320,6 +4343,10 @@ msgstr "požaduji klíč %s z %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "žádná operace se serverem klíčů!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "přeskočen „%s“: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "posílám klíč %s na %s\n"
|
||||
|
53
po/da.po
53
po/da.po
@ -1819,6 +1819,15 @@ msgstr "fjern så meget som muligt fra nøglen under eksport"
|
||||
msgid " - skipped"
|
||||
msgstr "%s: udelod: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "skriver til »%s«\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "nøgle %s: nøglemateriale på kort - udeladt\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "eksport af hemmelige nøgler er ikke tilladt\n"
|
||||
|
||||
@ -1826,10 +1835,6 @@ msgstr "eksport af hemmelige nøgler er ikke tilladt\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "nøgle %s: nøgle i PGP 2.x-stil - udeladt\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "nøgle %s: nøglemateriale på kort - udeladt\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "ADVARSEL: intet blev eksporteret\n"
|
||||
|
||||
@ -1948,6 +1953,11 @@ msgstr "opret et nyt nøglepar"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "opret et nyt nøglepar"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "opret et nyt nøglepar"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2300,6 +2310,11 @@ msgstr "%s:%d: ugyldige importindstillinger\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "ugyldige importindstillinger\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "ugyldige listeindstillinger\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: ugyldige eksportindstillinger\n"
|
||||
@ -2628,6 +2643,11 @@ msgstr "opdater ikke trustdb efter import"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "opdater ikke trustdb efter import"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "vis nøglefingeraftryk"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "accepter kun opdateringer til eksisterende nøgler"
|
||||
|
||||
@ -2637,6 +2657,9 @@ msgstr "fjern ubrugelige dele fra nøgle efter import"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "fjern så meget som muligt fra nøgle efter import"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr " udelader bloktype %d\n"
|
||||
@ -2781,11 +2804,6 @@ msgstr "nøgle %s: ny nøgle - udeladt\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "ingen skrivbar nøglering fundet: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "skriver til »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3560,6 +3578,11 @@ msgstr "opdatering mislykkedes: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Nøgle ikke ændret så ingen opdatering krævet.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Nøgleoprettelse mislykkedes: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3885,6 +3908,10 @@ msgstr "Opret tilbagekaldscertifikaterne? (j/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "ingen hemmelig nøgle\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "bruger-id »%s« er allerede tilbagekaldt\n"
|
||||
@ -4416,10 +4443,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Nøglering"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "udelod »%s«: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Primær nøglefingeraftryk:"
|
||||
|
||||
@ -4538,6 +4561,10 @@ msgstr "anmoder om nøgle %s fra %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "ingen nøgleserverhandling!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "udelod »%s«: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "sender nøgle %s til %s\n"
|
||||
|
47
po/de.po
47
po/de.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnupg-2.1.0\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"PO-Revision-Date: 2016-06-16 17:04+0200\n"
|
||||
"PO-Revision-Date: 2016-07-14 15:55+0200\n"
|
||||
"Last-Translator: Werner Koch <wk@gnupg.org>\n"
|
||||
"Language-Team: German <de@li.org>\n"
|
||||
"Language: de\n"
|
||||
@ -1707,6 +1707,14 @@ msgstr "Während des Exports soviel wie möglich vom Schlüssel entfernen"
|
||||
msgid " - skipped"
|
||||
msgstr " - übersprungen"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "Schreiben nach '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "Schlüssel %s: Schlüsselmaterial ist auf einer Karte - übersprungen\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "Exportieren geheimer Schlüssel ist nicht erlaubt\n"
|
||||
|
||||
@ -1714,10 +1722,6 @@ msgstr "Exportieren geheimer Schlüssel ist nicht erlaubt\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "Schlüssel %s: PGP 2.x-artiger Schlüssel - übersprungen\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "Schlüssel %s: Schlüsselmaterial ist auf einer Karte - übersprungen\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "WARNUNG: Nichts exportiert\n"
|
||||
|
||||
@ -1828,6 +1832,9 @@ msgstr "Schnell ein neues Schlüsselpaar erzeugen"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "Schnell eine neue User-ID anfügen"
|
||||
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "Schnell eine User-ID widerrufen"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "Ein neues Schlüsselpaar erzeugen (alle Optionen)"
|
||||
|
||||
@ -2151,6 +2158,10 @@ msgstr "%s:%d: ungültige Import-Option\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "Ungültige Import-Option\n"
|
||||
|
||||
#, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "Ungültige Filter-Option: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: ungültige Export-Option.\n"
|
||||
@ -2478,6 +2489,9 @@ msgstr "die \"Ownertrust\" Werte beim Import nicht löschen"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "ändern Sie die \"Trust\"-Datenbank nach dem Import nicht"
|
||||
|
||||
msgid "show key during import"
|
||||
msgstr "Schlüssel beim Import anzeigen"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "Nur Änderungen bereits existierender Schlüssel vornehmen"
|
||||
|
||||
@ -2487,6 +2501,9 @@ msgstr "entferne nach dem Import unbrauchbare Teile des Schlüssels"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "nach dem Import soviel wie möglich aus dem Schlüssel entfernen"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr "Import-Filter anwenden und Schlüssel direkt exportieren"
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "überspringe den Block vom Typ %d\n"
|
||||
@ -2631,10 +2648,6 @@ msgstr "Schlüssel %s: neuer Schlüssel - übersprungen\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "kein schreibbarer Schlüsselbund gefunden: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "Schreiben nach '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "Fehler beim Schreiben des Schlüsselbundes `%s': %s\n"
|
||||
@ -3386,6 +3399,10 @@ msgstr "Änderung fehlgeschlagen: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Schlüssel ist nicht geändert worden, also ist kein Speichern nötig.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Widerufen der User-ID fehlgeschlagen: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "\"%s\" ist kein Fingerabdruck\n"
|
||||
@ -3700,6 +3717,10 @@ msgstr "Wirklich ein Signatur-Widerrufszertifikat erzeugen? (j/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "Kein geheimer Schlüssel\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr "Versuch eine nicht-User-ID zu widerrufen: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "User-ID \"%s\" ist bereits widerrufen\n"
|
||||
@ -4202,10 +4223,6 @@ msgstr[1] "WARNUNG: %lu Schlüssel übersprungen, da sie zu groß sind\n"
|
||||
msgid "Keyring"
|
||||
msgstr "Schlüsselbund"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "übersprungen \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Haupt-Fingerabdruck ="
|
||||
|
||||
@ -4319,6 +4336,10 @@ msgstr "fordere Schlüssel %s von %s an\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "Kein Schlüsselserver bekannt\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "übersprungen \"%s\": %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "sende Schlüssel %s auf %s\n"
|
||||
|
53
po/el.po
53
po/el.po
@ -1792,6 +1792,16 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: ðáñáëåßöèçêå: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "åããñáöÞ óôï `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr ""
|
||||
"êëåéäß %08lX: ç õðïãñáöÞ ôïõ õðïêëåéäéïý óå ëÜèïò óçìåßï - ðáñáëåßöèçêå\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "åããñáöÞ ôïõ ìõóôéêïý êëåéäéïý óôï `%s'\n"
|
||||
@ -1800,11 +1810,6 @@ msgstr "
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "êëåéäß %08lX: êëåéäß ôýðïõ PGP 2.x - ðáñáëåßöèçêå\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr ""
|
||||
"êëåéäß %08lX: ç õðïãñáöÞ ôïõ õðïêëåéäéïý óå ëÜèïò óçìåßï - ðáñáëåßöèçêå\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "ÐÑÏÅÉÄÏÐÏÉÇÓÇ: äåí Ýãéíå êáììßá åîáãùãÞ\n"
|
||||
|
||||
@ -1925,6 +1930,11 @@ msgstr "
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "äçìéïõñãßá åíüò íÝïõ æåýãïõò êëåéäéþí"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "äçìéïõñãßá åíüò íÝïõ æåýãïõò êëåéäéþí"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2264,6 +2274,10 @@ msgstr "%s:%d:
|
||||
msgid "invalid import options\n"
|
||||
msgstr "ìç Ýãêõñåò åðéëïãÝò åéãáãùãÞò\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "ìç Ýãêõñåò åðéëïãÝò åéãáãùãÞò\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: ìç Ýãêõñåò åðéëïãÝò åîáãùãÞò\n"
|
||||
@ -2606,6 +2620,10 @@ msgstr "
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "áíáíÝùóç ôçò âÜóçò äåäïìÝíùí åìðéóôïóýíçò"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "áðåéêüíéóç ôïõ fingerprint"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2616,6 +2634,9 @@ msgstr "
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "ðáñÜëåéøç ôìÞìáôïò ôïõ ôýðïõ %d\n"
|
||||
@ -2755,11 +2776,6 @@ msgstr "
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "äåí âñåèçêå åããñÜøéìç êëåéäïèÞêç: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "åããñáöÞ óôï `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3558,6 +3574,11 @@ msgstr "
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Ôï êëåéäß äåí Üëëáîå ïðüôå äåí ÷ñåéÜæåôáé åíçìÝñùóç.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Ç äçìéïõñãßá êëåéäéïý áðÝôõ÷å: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "óöÜëìá: ìç Ýãêõñï áðïôýðùìá\n"
|
||||
@ -3893,6 +3914,10 @@ msgstr "
|
||||
msgid "no secret key\n"
|
||||
msgstr "êáíÝíá ìõóôéêü êëåéäß\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "ôï user ID \"%s\" Ý÷åé Þäç áíáêëçèåß\n"
|
||||
@ -4423,10 +4448,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "ÊëåéäïèÞêç"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ðáñáëåßöèçêå `%s': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Áðïôýðùìá ðñùôåýùí êëåéäéïý:"
|
||||
|
||||
@ -4545,6 +4566,10 @@ msgstr "
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "ìç Ýãêõñåò åðéëïãÝò åîáãùãÞò\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ðáñáëåßöèçêå `%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/eo.po
51
po/eo.po
@ -1780,6 +1780,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: ignorita: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "skribas al '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "þlosilo %08lX: revokatestilo en maløusta loko - ignorita\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "skribas sekretan þlosilon al '%s'\n"
|
||||
@ -1788,10 +1797,6 @@ msgstr "skribas sekretan
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "þlosilo %08lX: PGP-2.x-stila þlosilo - ignorita\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "þlosilo %08lX: revokatestilo en maløusta loko - ignorita\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "AVERTO: nenio estis eksportita\n"
|
||||
|
||||
@ -1911,6 +1916,11 @@ msgstr "krei novan
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "krei novan þlosilparon"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "krei novan þlosilparon"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2248,6 +2258,10 @@ msgstr "AVERTO: '%s' estas malplena dosiero\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "nevalida kiraso"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "nevalida kiraso"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "AVERTO: '%s' estas malplena dosiero\n"
|
||||
@ -2590,6 +2604,10 @@ msgstr "aktualigi la fido-datenaron"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "aktualigi la fido-datenaron"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "montri fingrospuron"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2600,6 +2618,9 @@ msgstr "neuzebla sekreta
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "ignoras blokon de speco %d\n"
|
||||
@ -2739,11 +2760,6 @@ msgstr "
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "neniu skribebla þlosilaro trovita: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "skribas al '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3545,6 +3561,11 @@ msgstr "aktualigo malsukcesis: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Þlosilo ne þanøita, do aktualigo ne necesas.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Kreado de þlosiloj malsukcesis: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "%s: nevalida dosiero-versio %d\n"
|
||||
@ -3869,6 +3890,10 @@ msgstr "
|
||||
msgid "no secret key\n"
|
||||
msgstr "mankas sekreta þlosilo\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "Uzantidentigilo \"%s\" estas revokita.\n"
|
||||
@ -4396,10 +4421,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Þlosilaro"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ignoris '%s': %s\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "listigi þlosilojn kaj fingroþpurojn"
|
||||
@ -4523,6 +4544,10 @@ msgstr "petas la
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "nevalida þlosilaro"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ignoris '%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
57
po/es.po
57
po/es.po
@ -1838,6 +1838,15 @@ msgstr "borrar tanto como sea posible de la clave al exportar"
|
||||
msgid " - skipped"
|
||||
msgstr "%s: omitido: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "escribiendo en `%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "clave %s: material de la clave en la tarjeta - omitida\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "no se permite exportar claves secretas\n"
|
||||
|
||||
@ -1845,10 +1854,6 @@ msgstr "no se permite exportar claves secretas\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "clave %s: clave estilo PGP 2.x - omitida\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "clave %s: material de la clave en la tarjeta - omitida\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "ATENCIÓN: no se ha exportado nada\n"
|
||||
|
||||
@ -1967,6 +1972,11 @@ msgstr "genera un nuevo par de claves"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "genera un nuevo par de claves"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "genera un nuevo par de claves"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2326,6 +2336,11 @@ msgstr "%s:%d: opciones de importaci
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opciones de importación inválidas\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "lista de opciones inválida\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: opciones de exportación inválidas\n"
|
||||
@ -2657,6 +2672,11 @@ msgstr "no actualiza la base de datos de confianza despu
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "no actualiza la base de datos de confianza después de importar"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "muestra huella dactilar de la clave"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "sólo aceptar actualizaciones de claves ya existentes"
|
||||
|
||||
@ -2666,6 +2686,9 @@ msgstr "borrar partes in
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "borrar tanto como sea posible de la clave tras importar"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "omitiendo bloque de tipo %d\n"
|
||||
@ -2811,11 +2834,6 @@ msgstr "clave %s: clave nueva - omitida\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "anillo de claves no escribible encontrado: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "escribiendo en `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3572,6 +3590,11 @@ msgstr "actualizaci
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Clave sin cambios, no se necesita actualización.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Creación de la clave fallida: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3890,6 +3913,11 @@ msgstr "
|
||||
msgid "no secret key\n"
|
||||
msgstr "no hay clave secreta\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "revoke a user ID"
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr "revocar un identificador de usuario"
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "ID de usuario \"%s\" ya ha sido revocado\n"
|
||||
@ -4415,10 +4443,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Anillo de claves"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "omitido \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Huellas dactilares de la clave primaria:"
|
||||
|
||||
@ -4538,6 +4562,10 @@ msgstr "solicitando clave %s de %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "¡no se solicita ninguna acción al servidor de claves!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "omitido \"%s\": %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "enviando clave %s a %s\n"
|
||||
@ -10624,9 +10652,6 @@ msgstr ""
|
||||
#~ msgid "revuid"
|
||||
#~ msgstr "revidu"
|
||||
|
||||
#~ msgid "revoke a user ID"
|
||||
#~ msgstr "revocar un identificador de usuario"
|
||||
|
||||
#~ msgid "revkey"
|
||||
#~ msgstr "revcla"
|
||||
|
||||
|
51
po/et.po
51
po/et.po
@ -1785,6 +1785,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: jätsin vahele: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "kirjutan faili `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "võti %08lX: alamvõtme allkiri on vales kohas - jätan vahele\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "kirjutan salajase võtme faili `%s'\n"
|
||||
@ -1793,10 +1802,6 @@ msgstr "kirjutan salajase v
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "võti %08lX: PGP 2.x stiilis võti - jätsin vahele\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "võti %08lX: alamvõtme allkiri on vales kohas - jätan vahele\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "HOIATUS: midagi ei eksporditud\n"
|
||||
|
||||
@ -1918,6 +1923,11 @@ msgstr "genereeri uus v
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "genereeri uus võtmepaar"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "genereeri uus võtmepaar"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2254,6 +2264,10 @@ msgstr "%s:%d: vigased impordi v
|
||||
msgid "invalid import options\n"
|
||||
msgstr "vigased impordi võtmed\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "vigased impordi võtmed\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: vigased ekspordi võtmed\n"
|
||||
@ -2591,6 +2605,10 @@ msgstr "uuenda usalduse andmebaasi"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "uuenda usalduse andmebaasi"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "näita sõrmejälge"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2601,6 +2619,9 @@ msgstr "mittekasutatav salajane v
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "jätan bloki tüübiga %d vahele\n"
|
||||
@ -2741,11 +2762,6 @@ msgstr "v
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "ei leia kirjutatavat võtmehoidlat: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "kirjutan faili `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3531,6 +3547,11 @@ msgstr "uuendamine eba
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Võtit ei muudetud, seega pole uuendamist vaja.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Võtme genereerimine ebaõnnestus: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "viga: vigane sõrmejälg\n"
|
||||
@ -3855,6 +3876,10 @@ msgstr "Kas t
|
||||
msgid "no secret key\n"
|
||||
msgstr "salajast võtit pole\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "kasutaja ID \"%s\" on juba tühistatud\n"
|
||||
@ -4376,10 +4401,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Võtmehoidla"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "`%s' jätsin vahele: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Primaarse võtme sõrmejälg:"
|
||||
|
||||
@ -4498,6 +4519,10 @@ msgstr "k
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "vigased ekspordi võtmed\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "`%s' jätsin vahele: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/fi.po
51
po/fi.po
@ -1800,6 +1800,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: ohitettu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "kirjoitetaan kohteeseen \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "avain %08lX: aliavaimen allekirjoitus väärässä paikassa - ohitetaan\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n"
|
||||
@ -1808,10 +1817,6 @@ msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "avain %08lX: PGP 2.x -muodon avain - ohitetaan\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "avain %08lX: aliavaimen allekirjoitus väärässä paikassa - ohitetaan\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "VAROITUS: mitään ei viety\n"
|
||||
|
||||
@ -1933,6 +1938,11 @@ msgstr "luo uusi avainpari"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "luo uusi avainpari"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "luo uusi avainpari"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2269,6 +2279,10 @@ msgstr "%s:%d: virheelliset tuontivalitsimet\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "virheelliset tuontivalitsimet\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "virheelliset tuontivalitsimet\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: virheelliset vientivalitsimet\n"
|
||||
@ -2607,6 +2621,10 @@ msgstr "päivitä luottamustietokanta"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "päivitä luottamustietokanta"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "näytä sormenjälki"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2617,6 +2635,9 @@ msgstr "salaista avainta ei voi käyttää"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "ohitetaan tyypin %d lohko\n"
|
||||
@ -2758,11 +2779,6 @@ msgstr "avain %08lX: uusi avain - ohitetaan\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "kirjoitettavissa olevaa avainrengasta ei löydy: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "kirjoitetaan kohteeseen \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3552,6 +3568,11 @@ msgstr "päivitys epäonnistui: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Päivitystä ei tarvita, koska avain ei ole muuttunut.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Avaimen luonti epäonnistui: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "virhe: sormenjälki on väärä\n"
|
||||
@ -3877,6 +3898,10 @@ msgstr "Varmastiko luo mitätöintivarmenteet? (k/E) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "salainen avain ei ole saatavilla\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "käyttäjätunnus \"%s\" on jo mitätöity\n"
|
||||
@ -4407,10 +4432,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Avainrengas"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ohitetaan \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Ensisijaisen avaimen sormenjälki:"
|
||||
|
||||
@ -4529,6 +4550,10 @@ msgstr "pyydetään avainta %08lX kohteesta %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "virheelliset vientivalitsimet\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ohitetaan \"%s\": %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/fr.po
51
po/fr.po
@ -1737,6 +1737,14 @@ msgstr "supprimer autant que possible de la clef pendant l'exportation"
|
||||
msgid " - skipped"
|
||||
msgstr " — ignoré"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "écriture de « %s »\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "clef %s : matériel de clef sur la carte — ignorée\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "il est interdit d'exporter les clefs secrètes\n"
|
||||
|
||||
@ -1744,10 +1752,6 @@ msgstr "il est interdit d'exporter les clefs secrètes\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "clef %s : clef de type PGP 2.x — ignorée\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "clef %s : matériel de clef sur la carte — ignorée\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "Attention : rien n'a été exporté\n"
|
||||
|
||||
@ -1865,6 +1869,11 @@ msgstr "générer rapidement une nouvelle paire de clefs"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "générer rapidement une nouvelle paire de clefs"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "quickly generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "générer rapidement une nouvelle paire de clefs"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "générer une paire de clefs complètes"
|
||||
|
||||
@ -2206,6 +2215,11 @@ msgstr "%s : %d : options d'importation incorrectes\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "options d'importation incorrectes\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "options de liste incorrectes\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s : %d : options d'exportation incorrectes\n"
|
||||
@ -2530,6 +2544,11 @@ msgstr "ne pas mettre à jour la base de confiance après l'importation"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "ne pas mettre à jour la base de confiance après l'importation"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "afficher l'empreinte de la clef"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "n'accepter que les mises à jour des clefs existantes"
|
||||
|
||||
@ -2539,6 +2558,9 @@ msgstr "nettoyer les parties inutilisables de la clef après l'importation"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "supprimer autant que possible de la clef après l'importation"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "un bloc de type %d a été ignoré\n"
|
||||
@ -2682,10 +2704,6 @@ msgstr "clef %s : nouvelle clef — ignorée\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "aucun porte-clefs accessible en écriture n'a été trouvé : %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "écriture de « %s »\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "erreur d'écriture du porte-clefs « %s » : %s\n"
|
||||
@ -3434,6 +3452,11 @@ msgstr "échec de la mise à jour : %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "La clef n'a pas été modifiée donc la mise à jour est inutile.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Échec de génération de la clef : %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "« %s » n’est pas une empreinte\n"
|
||||
@ -3754,6 +3777,10 @@ msgstr "Faut-il vraiment créer les certificats de révocation ? (o/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "pas de clef secrète\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "l'identité « %s »\" est déjà révoquée.\n"
|
||||
@ -4276,10 +4303,6 @@ msgstr[1] "Attention : %lu clefs ignorées en raison de leur grande taille\n"
|
||||
msgid "Keyring"
|
||||
msgstr "Porte-clefs"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "« %s » a été ignorée : %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Empreinte de clef principale :"
|
||||
|
||||
@ -4402,6 +4425,10 @@ msgstr "requête de la clef %s sur %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "pas d'action pour le serveur de clefs.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "« %s » a été ignorée : %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "envoi de la clef %s à %s\n"
|
||||
|
51
po/gl.po
51
po/gl.po
@ -1794,6 +1794,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: omitido: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "escribindo a `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "chave %08lX: sinatura da sub-chave nun lugar incorrecto - omitida\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "gravando a chave secreta en `%s'\n"
|
||||
@ -1802,10 +1811,6 @@ msgstr "gravando a chave secreta en `%s'\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "chave %08lX: chave estilo PGP 2.x - omitida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "chave %08lX: sinatura da sub-chave nun lugar incorrecto - omitida\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "AVISO: non se exportou nada\n"
|
||||
|
||||
@ -1926,6 +1931,11 @@ msgstr "xerar un novo par de chaves"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "xerar un novo par de chaves"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "xerar un novo par de chaves"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2262,6 +2272,10 @@ msgstr "%s:%d: opci
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opcións de importación non válidas\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "opcións de importación non válidas\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: opcións de exportación non válidas\n"
|
||||
@ -2601,6 +2615,10 @@ msgstr "actualiza-la base de datos de confianza"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "actualiza-la base de datos de confianza"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "amosar fingerprint"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2611,6 +2629,9 @@ msgstr "chave secreta non utilizable"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "pasando por alto un bloque de tipo %d\n"
|
||||
@ -2750,11 +2771,6 @@ msgstr "chave %08lX: nova chave - omitida\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "non se atopou un chaveiro no que se poida escribir: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "escribindo a `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3557,6 +3573,11 @@ msgstr "a actualizaci
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "A chave non cambiou, polo que non fai falla actualizar.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "A xeración da chave fallou: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "erro: pegada dactilar non válida\n"
|
||||
@ -3890,6 +3911,10 @@ msgstr "
|
||||
msgid "no secret key\n"
|
||||
msgstr "non hai chave secreta\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "o ID de usuario \"%s\" xa está revocado\n"
|
||||
@ -4421,10 +4446,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Chaveiro"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "omítese `%s': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Pegada dactilar da chave primaria:"
|
||||
|
||||
@ -4545,6 +4566,10 @@ msgstr "solicitando a chave %08lX de %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "opcións de exportación non válidas\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "omítese `%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/hu.po
51
po/hu.po
@ -1781,6 +1781,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: kihagyva: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "Írok a \"%s\" állományba.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "%08lX kulcs: Alkulcsaláírás rossz helyen - kihagytam.\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "Írom a titkos kulcsot a %s állományba.\n"
|
||||
@ -1789,10 +1798,6 @@ msgstr "
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "%08lX kulcs: PGP 2.x stílusú kulcs - kihagytam.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "%08lX kulcs: Alkulcsaláírás rossz helyen - kihagytam.\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "FIGYELEM: Semmit sem exportáltam.\n"
|
||||
|
||||
@ -1914,6 +1919,11 @@ msgstr "
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "új kulcspár létrehozása"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "új kulcspár létrehozása"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2250,6 +2260,10 @@ msgstr "%s:%d:
|
||||
msgid "invalid import options\n"
|
||||
msgstr "Érvénytelen import opciók!\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "Érvénytelen import opciók!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: Érvénytelen export opciók!\n"
|
||||
@ -2589,6 +2603,10 @@ msgstr "bizalmi adatb
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "bizalmi adatbázis frissítése"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "megmutatja az ujjlenyomatot"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2599,6 +2617,9 @@ msgstr "haszn
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "%d típusú blokkot kihagyom.\n"
|
||||
@ -2738,11 +2759,6 @@ msgstr "%08lX kulcs:
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "Nem írható kulcskarikát találtam: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "Írok a \"%s\" állományba.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3530,6 +3546,11 @@ msgstr "Friss
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "A kulcs nem változott, nincs szükség frissítésre.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Kulcsgenerálás sikertelen: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "Hiba: Érvénytelen ujjlenyomat.\n"
|
||||
@ -3856,6 +3877,10 @@ msgstr "Val
|
||||
msgid "no secret key\n"
|
||||
msgstr "Nincs titkos kulcs.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "\"%s\" felhasználói azonosítót már visszavonták.\n"
|
||||
@ -4386,10 +4411,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Kulcskarika"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "Kihagytam \"%s\"-t: %s.\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Elsõdlegeskulcs-ujjlenyomat:"
|
||||
|
||||
@ -4509,6 +4530,10 @@ msgstr "Lek
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "Érvénytelen export opciók!\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "Kihagytam \"%s\"-t: %s.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/id.po
51
po/id.po
@ -1786,6 +1786,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: dilewati: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "menulis ke `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "kunci %08lX: signature subkey di tempat yang salah - dilewati\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "menulis kunci rahasia ke `%s'\n"
|
||||
@ -1794,10 +1803,6 @@ msgstr "menulis kunci rahasia ke `%s'\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "kunci %08lX: kunci gaya PGP 2.x - dilewati\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "kunci %08lX: signature subkey di tempat yang salah - dilewati\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "PERINGATAN: tidak ada yang diekspor\n"
|
||||
|
||||
@ -1917,6 +1922,11 @@ msgstr "buat sepasang kunci baru"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "buat sepasang kunci baru"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "buat sepasang kunci baru"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2253,6 +2263,10 @@ msgstr "%s:%d: opsi impor tidak valid\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opsi impor tidak valid\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "opsi impor tidak valid\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: opsi ekspor tidak valid\n"
|
||||
@ -2594,6 +2608,10 @@ msgstr "perbarui database trust"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "perbarui database trust"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "tampilkan fingerprint"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2604,6 +2622,9 @@ msgstr "kunci rahasia tidak dapat dipakai"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "melewati blok tipe %d\n"
|
||||
@ -2743,11 +2764,6 @@ msgstr "kunci %08lX: kunci baru - dilewati\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "tidak ditemukan keyring yang dapat ditulisi: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "menulis ke `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3535,6 +3551,11 @@ msgstr "gagal memperbarui: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Kunci tidak berubah sehingga tidak perlu pembaharuan.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Pembuatan kunci gagal: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "kesalahan: fingerprint tidak valid\n"
|
||||
@ -3866,6 +3887,10 @@ msgstr "Ingin membuat sertifikat pembatalan? (y/T)"
|
||||
msgid "no secret key\n"
|
||||
msgstr "tidak ada kunci rahasia\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "User ID \"%s\" telah dibatalkan\n"
|
||||
@ -4390,10 +4415,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Keyring"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "melewati `%s': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Fingerprint kunci primer:"
|
||||
|
||||
@ -4512,6 +4533,10 @@ msgstr "meminta kunci %08lX dari %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "opsi ekspor tidak valid\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "melewati `%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/it.po
51
po/it.po
@ -1793,6 +1793,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: saltata: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "scrittura in `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "chiave %08lX: firma della subchiave nel posto sbagliato - saltata\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "scrittura della chiave segreta in `%s'\n"
|
||||
@ -1801,10 +1810,6 @@ msgstr "scrittura della chiave segreta in `%s'\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "chiave %08lX: chiave in stile PGP 2.x - saltata\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "chiave %08lX: firma della subchiave nel posto sbagliato - saltata\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "ATTENZIONE: non è stato esportato nulla\n"
|
||||
|
||||
@ -1924,6 +1929,11 @@ msgstr "genera una nuova coppia di chiavi"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "genera una nuova coppia di chiavi"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "genera una nuova coppia di chiavi"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2261,6 +2271,10 @@ msgstr "%s:%d: opzioni di importazione non valide\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opzioni di importazione non valide\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "opzioni di importazione non valide\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: opzioni di esportazione non valide\n"
|
||||
@ -2600,6 +2614,10 @@ msgstr "aggiorna il database della fiducia"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "aggiorna il database della fiducia"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "mostra le impronte digitali"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2610,6 +2628,9 @@ msgstr "chiave segreta inutilizzabile"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "salto un blocco di tipo %d\n"
|
||||
@ -2749,11 +2770,6 @@ msgstr "chiave %08lX: nuova chiave - saltata\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "non è stato trovato un portachiavi scrivibile: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "scrittura in `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3542,6 +3558,11 @@ msgstr "aggiornamento fallito: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "La chiave non è cambiata quindi non sono necessari aggiornamenti.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Generazione della chiave fallita: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "errore: impronta digitale non valida\n"
|
||||
@ -3879,6 +3900,10 @@ msgstr "Creare davvero i certificati di revoca? (s/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "manca la chiave segreta\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "l'user ID \"%s\" è già stato revocato\n"
|
||||
@ -4407,10 +4432,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Portachiavi"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "saltata `%s': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Impronta digitale della chiave primaria:"
|
||||
|
||||
@ -4529,6 +4550,10 @@ msgstr "richiedo la chiave %08lX a %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "opzioni di esportazione non valide\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "saltata `%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
51
po/ja.po
51
po/ja.po
@ -1652,6 +1652,14 @@ msgstr "エクスポートの際、できるだけ除去する"
|
||||
msgid " - skipped"
|
||||
msgstr " - スキップされました"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "'%s'への書き込み\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "鍵%s: 鍵はカード上にあります - スキップします\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "秘密鍵のエクスポートは認められません\n"
|
||||
|
||||
@ -1659,10 +1667,6 @@ msgstr "秘密鍵のエクスポートは認められません\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "鍵%s: PGP 2.x形式の鍵です - スキップします\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "鍵%s: 鍵はカード上にあります - スキップします\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "*警告*: 何もエクスポートされていません\n"
|
||||
|
||||
@ -1769,6 +1773,11 @@ msgstr "すばやく新しい鍵ペアを生成"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "すばやく新しいユーザIDを追加"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "quickly add a new user-id"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "すばやく新しいユーザIDを追加"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "全機能の鍵ペアを生成"
|
||||
|
||||
@ -2080,6 +2089,11 @@ msgstr "%s:%d: 無効なインポート・オプションです\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "無効なインポート・オプションです\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "無効な一覧オプションです\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: 無効なエクスポート・オプションです\n"
|
||||
@ -2395,6 +2409,11 @@ msgstr "インポートの際、所有者信用の値をクリアしない"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "インポート後、信用データベースを更新しない"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "鍵のフィンガープリントを表示"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "既存の鍵に対する更新のみ認めます"
|
||||
|
||||
@ -2404,6 +2423,9 @@ msgstr "インポート後、利用できない部分を鍵から除去します
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "インポート後、できるだけ除去します"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "型%dのブロックをスキップします\n"
|
||||
@ -2544,10 +2566,6 @@ msgstr "鍵%s: 新しい鍵です - スキップします\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "書き込み可能な鍵リングが見つかりません: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "'%s'への書き込み\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "鍵リング'%s'の書き込みエラー: %s\n"
|
||||
@ -3258,6 +3276,11 @@ msgstr "更新に失敗しました: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "鍵は無変更なので更新は不要です。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "鍵の生成に失敗しました: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "\"%s\"はフィンガープリントではありません\n"
|
||||
@ -3558,6 +3581,10 @@ msgstr "失効証明書を本当に作成しますか? (y/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "秘密鍵がありません\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "ユーザID\"%s\"は、もう失効されています\n"
|
||||
@ -4051,10 +4078,6 @@ msgstr[0] "*警告*: %lu個の鍵がその大きさのためスキップされ
|
||||
msgid "Keyring"
|
||||
msgstr "鍵リング"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "\"%s\"をスキップしました: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr " 主鍵フィンガープリント:"
|
||||
|
||||
@ -4163,6 +4186,10 @@ msgstr "鍵%sを%sに要求\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "鍵サーバがわかりません\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "\"%s\"をスキップしました: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "鍵%sを%sへ送信\n"
|
||||
|
53
po/pl.po
53
po/pl.po
@ -1803,6 +1803,15 @@ msgstr "usuni
|
||||
msgid " - skipped"
|
||||
msgstr "%s: pominiêty: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "zapis do ,,%s''\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "klucz %s: zawarto¶æ klucza na karcie - pominiêto\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "eksport kluczy tajnych nie jest dozwolony\n"
|
||||
|
||||
@ -1810,10 +1819,6 @@ msgstr "eksport kluczy tajnych nie jest dozwolony\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "klucz %s: klucz PGP 2.x - pominiêty\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "klucz %s: zawarto¶æ klucza na karcie - pominiêto\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "OSTRZE¯ENIE: nic nie zosta³o wyeksportowane!\n"
|
||||
|
||||
@ -1933,6 +1938,11 @@ msgstr "generacja nowej pary kluczy"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "generacja nowej pary kluczy"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "generacja nowej pary kluczy"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2304,6 +2314,11 @@ msgstr "%s:%d: niepoprawne opcje wczytania kluczy\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "niepoprawne opcje wczytania kluczy\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "niepoprawne opcje wypisywania\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d niepoprawne opcje eksportu kluczy\n"
|
||||
@ -2636,6 +2651,11 @@ msgstr "nie uaktualnianie bazy zaufania po imporcie"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "nie uaktualnianie bazy zaufania po imporcie"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "okazanie odcisku klucza"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "przyjmowanie tylko uaktualnieñ istniej±cych kluczy"
|
||||
|
||||
@ -2645,6 +2665,9 @@ msgstr "usuwanie bezu
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "usuwanie jak najwiêkszej czê¶ci kluczy po imporcie"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "blok typu %d zostaje pominiêty\n"
|
||||
@ -2788,11 +2811,6 @@ msgstr "klucz %s: nowy klucz - pomini
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "brak zapisywalnego zbioru kluczy: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "zapis do ,,%s''\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3576,6 +3594,11 @@ msgstr "zapis zmian nie powi
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Klucz nie zosta³ zmieniony wiêc zapis zmian nie jest konieczny.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Generacja klucza nie powiod³a siê: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3897,6 +3920,10 @@ msgstr "Na pewno utworzy
|
||||
msgid "no secret key\n"
|
||||
msgstr "brak klucza tajnego\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "identyfikator u¿ytkownika ,,%s'' zosta³ ju¿ uniewa¿niony\n"
|
||||
@ -4441,10 +4468,6 @@ msgstr[2] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Zbiór kluczy"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "pominiêty ,,%s'': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Odcisk klucza g³ównego:"
|
||||
|
||||
@ -4567,6 +4590,10 @@ msgstr "zapytanie o klucz %s z %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "brak akcji serwera kluczy!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "pominiêty ,,%s'': %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "wysy³anie klucza %s na %s\n"
|
||||
|
51
po/pt.po
51
po/pt.po
@ -1785,6 +1785,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: ignorado: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "a escrever para `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "chave %08lX: assintura da subchave no local errado - ignorado\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "a escrever chave privada para `%s'\n"
|
||||
@ -1793,10 +1802,6 @@ msgstr "a escrever chave privada para `%s'\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "chave %08lX: tipo PGP 2.x - ignorada\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "chave %08lX: assintura da subchave no local errado - ignorado\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "AVISO: nada exportado\n"
|
||||
|
||||
@ -1916,6 +1921,11 @@ msgstr "gerar um novo par de chaves"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "gerar um novo par de chaves"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "gerar um novo par de chaves"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2256,6 +2266,10 @@ msgstr "%s:%d: op
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opções de importação inválidas\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "opções de importação inválidas\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: opções de exportação inválidas\n"
|
||||
@ -2595,6 +2609,10 @@ msgstr "actualizar a base de dados de confian
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "actualizar a base de dados de confiança"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "mostra impressão digital"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2605,6 +2623,9 @@ msgstr "chave secreta n
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "ignorando bloco do tipo %d\n"
|
||||
@ -2744,11 +2765,6 @@ msgstr "chave %08lX: chave nova - ignorada\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "não foi encontrada nenhum porta-chaves onde escrever: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "a escrever para `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3543,6 +3559,11 @@ msgstr "actualiza
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Chave não alterada, nenhuma actualização é necessária.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "A geração de chaves falhou: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "%s: versão de ficheiro inválida %d\n"
|
||||
@ -3865,6 +3886,10 @@ msgstr "Realmente criar os certificados de revoga
|
||||
msgid "no secret key\n"
|
||||
msgstr "nenhuma chave secreta\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "o utilizador com o id \"%s\" já está revocado\n"
|
||||
@ -4397,10 +4422,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Porta-chaves"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ignorado `%s': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Impressão da chave primária:"
|
||||
|
||||
@ -4519,6 +4540,10 @@ msgstr "a pedir a chave %08lX de %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "opções de exportação inválidas\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "ignorado `%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
57
po/ro.po
57
po/ro.po
@ -1788,6 +1788,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: sãritã: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "scriu în `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "cheia %s: semnãturã subcheie într-un loc greºit - sãritã\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "exportul cheilor secrete nu este permis\n"
|
||||
|
||||
@ -1795,10 +1804,6 @@ msgstr "exportul cheilor secrete nu este permis\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "cheia %s: cheie stil PGP 2.x - sãritã\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "cheia %s: semnãturã subcheie într-un loc greºit - sãritã\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "AVERTISMENT: nimic exportat\n"
|
||||
|
||||
@ -1916,6 +1921,11 @@ msgstr "genereaz
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "genereazã o nouã perechi de chei"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "genereazã o nouã perechi de chei"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2287,6 +2297,11 @@ msgstr "%s:%d: op
|
||||
msgid "invalid import options\n"
|
||||
msgstr "opþiuni import invalide\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "opþiuni enumerare invalide\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: opþiuni export invalide\n"
|
||||
@ -2622,6 +2637,11 @@ msgstr "actualizeaz
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "actualizeazã baza de date de încredere"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "afiºeazã amprenta cheii"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2632,6 +2652,9 @@ msgstr "cheie secret
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "bloc de tip %d sãrit\n"
|
||||
@ -2775,11 +2798,6 @@ msgstr "cheia %s: cheie nou
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "n-am gãsit nici un inel de chei ce poate fi scris: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "scriu în `%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3541,6 +3559,11 @@ msgstr "actualizarea a e
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Cheia nu a fost schimbatã aºa cã nici o actualizare a fost necesarã.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Generarea cheii a eºuat: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3868,6 +3891,11 @@ msgstr "Dori
|
||||
msgid "no secret key\n"
|
||||
msgstr "nici o cheie secretã\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "revoke a user ID"
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr "revocã un ID utilizator"
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "ID-ul utilizator \"%s\" este deja revocat\n"
|
||||
@ -4393,10 +4421,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Inel de chei"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "sãritã \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Amprentã cheie primarã:"
|
||||
|
||||
@ -4516,6 +4540,10 @@ msgstr "cer cheia %s de la %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "nici o acþiune pentru serverul de chei!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "sãritã \"%s\": %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "trimit cheia %s lui %s\n"
|
||||
@ -10306,9 +10334,6 @@ msgstr ""
|
||||
#~ msgid "revuid"
|
||||
#~ msgstr "revuid"
|
||||
|
||||
#~ msgid "revoke a user ID"
|
||||
#~ msgstr "revocã un ID utilizator"
|
||||
|
||||
#~ msgid "revkey"
|
||||
#~ msgstr "revkey"
|
||||
|
||||
|
59
po/ru.po
59
po/ru.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GnuPG 2.1.0\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"PO-Revision-Date: 2016-01-27 17:17+0000\n"
|
||||
"PO-Revision-Date: 2016-06-20 17:17+0000\n"
|
||||
"Last-Translator: Ineiev <ineiev@gnu.org>\n"
|
||||
"Language-Team: Russian <gnupg-ru@gnupg.org>\n"
|
||||
"Language: ru\n"
|
||||
@ -1666,6 +1666,14 @@ msgstr "при экспорте удалить из ключа как можно
|
||||
msgid " - skipped"
|
||||
msgstr " - пропущено"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "сохраняю в '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "ключ %s: материал ключа на карте - пропущен\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "экспорт секретных ключей не разрешен\n"
|
||||
|
||||
@ -1673,10 +1681,6 @@ msgstr "экспорт секретных ключей не разрешен\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "ключ %s: ключ типа PGP 2.x - пропущен\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "ключ %s: материал ключа на карте - пропущен\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "Внимание: нечего экспортировать\n"
|
||||
|
||||
@ -1788,6 +1792,11 @@ msgstr "быстро создать новую пару ключей"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "быстро добавить новый ID пользователя"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "quickly add a new user-id"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "быстро добавить новый ID пользователя"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "создание полноценной пары ключей"
|
||||
|
||||
@ -2107,6 +2116,11 @@ msgstr "%s:%d: недопустимые параметры импорта\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "недопустимые параметры импорта\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "недопустимые параметры списка\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: недопустимые параметры экспорта\n"
|
||||
@ -2395,7 +2409,7 @@ msgid "|FD|write status info to this FD"
|
||||
msgstr "|FD|выводить информацию в файл с дескриптором FD"
|
||||
|
||||
msgid "|ALGO|reject signatures made with ALGO"
|
||||
msgstr ""
|
||||
msgstr "|ALGO|отвергать подписи, сделанные по данному алгоритму"
|
||||
|
||||
msgid "Usage: gpgv [options] [files] (-h for help)"
|
||||
msgstr "Вызов: gpgv [параметры] [файлы] (-h для подсказки)"
|
||||
@ -2426,6 +2440,11 @@ msgstr "не сбрасывать уровни доверия владельца
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "не обновлять таблицу доверия после импорта"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "показать отпечаток ключа"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "обновлять только существующие ключи"
|
||||
|
||||
@ -2435,6 +2454,9 @@ msgstr "удалить после импорта непригодные част
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "удалить после импорта из ключа как можно больше"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "пропущен блок типа %d\n"
|
||||
@ -2577,10 +2599,6 @@ msgstr "ключ %s: новый ключ - пропущен\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "нет доступной для записи таблицы ключей: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "сохраняю в '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "ошибка записи таблицы ключей '%s': %s\n"
|
||||
@ -3310,6 +3328,11 @@ msgstr "сбой при обновлении: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Ключ не изменялся - обновление не нужно.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Сбой при создании ключа: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "\"%s\" - не отпечаток\n"
|
||||
@ -3619,6 +3642,10 @@ msgstr "Действительно создать сертификат отзы
|
||||
msgid "no secret key\n"
|
||||
msgstr "нет секретного ключа\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "ID пользователя \"%s\" уже отозван\n"
|
||||
@ -4126,10 +4153,6 @@ msgstr[2] "Внимание: %lu ключей пропущено из-за бо
|
||||
msgid "Keyring"
|
||||
msgstr "Таблица ключей"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "пропущено \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Отпечаток первичного ключа:"
|
||||
|
||||
@ -4246,6 +4269,10 @@ msgstr "получение ключа %s с %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "ни один сервер ключей не известен\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "пропущено \"%s\": %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "отправка ключа %s на %s\n"
|
||||
@ -5812,10 +5839,8 @@ msgstr "[ неизвестно ]"
|
||||
msgid "[ undef ]"
|
||||
msgstr "[неопределено]"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "never"
|
||||
msgid "[ never ]"
|
||||
msgstr "никогда"
|
||||
msgstr "[ никогда ]"
|
||||
|
||||
msgid "[marginal]"
|
||||
msgstr "[ ограничено ]"
|
||||
|
51
po/sk.po
51
po/sk.po
@ -1789,6 +1789,15 @@ msgstr ""
|
||||
msgid " - skipped"
|
||||
msgstr "%s: preskoèené: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "zapisujem do '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "kµúè %08lX: podpis subkµúèa na zlom mieste - preskoèené \n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "zapisujem tajný kµúè do `%s'\n"
|
||||
@ -1797,10 +1806,6 @@ msgstr "zapisujem tajn
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "kµúè %08lX: PGP 2.x kµúè - preskoèené\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "kµúè %08lX: podpis subkµúèa na zlom mieste - preskoèené \n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "VAROVANIE: niè nebolo vyexportované\n"
|
||||
|
||||
@ -1922,6 +1927,11 @@ msgstr "vytvori
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "vytvori» nový pár kµúèov"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "vytvori» nový pár kµúèov"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2266,6 +2276,10 @@ msgstr "%s:%d: neplatn
|
||||
msgid "invalid import options\n"
|
||||
msgstr "neplatný parameter pre import\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "neplatný parameter pre import\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: neplatný parameter pre export\n"
|
||||
@ -2607,6 +2621,10 @@ msgstr "aktualizova
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "aktualizova» databázu dôvery"
|
||||
|
||||
#, fuzzy
|
||||
msgid "show key during import"
|
||||
msgstr "vypísa» fingerprint"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr ""
|
||||
|
||||
@ -2617,6 +2635,9 @@ msgstr "nepou
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr ""
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "blok typu %d bol preskoèený\n"
|
||||
@ -2758,11 +2779,6 @@ msgstr "k
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "nenájdený zapisovateµný súbor kµúèov (keyring): %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "zapisujem do '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3554,6 +3570,11 @@ msgstr "aktualiz
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "kµúè nebol zmenený, tak¾e nie je potrebné ho aktualizova».\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Vytvorenie kµúèa sa nepodarilo: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "chyba: neplatný odtlaèok\n"
|
||||
@ -3876,6 +3897,10 @@ msgstr "Skuto
|
||||
msgid "no secret key\n"
|
||||
msgstr "neexistuje tajný kµúè\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "u¾ívateµské ID \"%s\" je u¾ revokované\n"
|
||||
@ -4402,10 +4427,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "súbor kµúèov (keyring)"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "preskoèený `%s': %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Primárny fingerprint kµúèa:"
|
||||
|
||||
@ -4524,6 +4545,10 @@ msgstr "po
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "neplatný parameter pre export\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "preskoèený `%s': %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr ""
|
||||
|
53
po/sv.po
53
po/sv.po
@ -1851,6 +1851,15 @@ msgstr "ta bort så mycket som möjligt från nyckeln under exportering"
|
||||
msgid " - skipped"
|
||||
msgstr "%s: hoppade över: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "skriver till \"%s\"\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "nyckeln %s: nyckelmaterial på kortet - hoppade över\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "export av hemliga nycklar tillåts inte\n"
|
||||
|
||||
@ -1858,10 +1867,6 @@ msgstr "export av hemliga nycklar tillåts inte\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "nyckeln %s: nyckel av PGP 2.x-typ - hoppade över\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "nyckeln %s: nyckelmaterial på kortet - hoppade över\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "VARNING: ingenting exporterat\n"
|
||||
|
||||
@ -1982,6 +1987,11 @@ msgstr "generera ett nytt nyckelpar"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "generera ett nytt nyckelpar"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "generera ett nytt nyckelpar"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2344,6 +2354,11 @@ msgstr "%s:%d: ogiltiga importeringsflaggor\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "ogiltiga importflaggor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "ogiltiga listflaggor\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: ogiltiga exportflaggor\n"
|
||||
@ -2687,6 +2702,11 @@ msgstr "uppdatera inte tillitsdatabasen efter importering"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "uppdatera inte tillitsdatabasen efter importering"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "visa nyckelns fingeravtryck"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "acceptera endast uppdateringar till befintliga nycklar"
|
||||
|
||||
@ -2696,6 +2716,9 @@ msgstr "ta bort oanvändbara delar från nyckeln efter importering"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "ta bort så mycket som möjligt från nyckeln efter importering"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "hoppar över block av typen %d\n"
|
||||
@ -2843,11 +2866,6 @@ msgstr "nyckel %s: ny nyckel - hoppade över\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "hittade ingen nyckelring som gick att skriva till: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "skriver till \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3619,6 +3637,11 @@ msgstr "uppdateringen misslyckades: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Nyckeln är oförändrad så det behövs ingen uppdatering.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Nyckelgenereringen misslyckades: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3947,6 +3970,10 @@ msgstr "Vill du verkligen skapa spärrcertifikatet? (j/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "ingen hemlig nyckel\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "användaridentiteten \"%s\" är redan spärrad\n"
|
||||
@ -4488,10 +4515,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Nyckelring"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "hoppade över \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Primära nyckelns fingeravtryck:"
|
||||
|
||||
@ -4610,6 +4633,10 @@ msgstr "begär nyckeln %s från %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "ingen nyckelserveråtgärd!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "hoppade över \"%s\": %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "skickar nyckeln %s till %s\n"
|
||||
|
53
po/tr.po
53
po/tr.po
@ -1797,6 +1797,15 @@ msgstr "ihraç sırasında anahtardan mümkün olduğunca çok şey kaldırılı
|
||||
msgid " - skipped"
|
||||
msgstr "%s: atlandı: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "\"%s\"e yazıyor\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "anahtar %s: anahtar malzemesi kartta - atlandı\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "gizli anahtarların ihracına izin verilmez\n"
|
||||
|
||||
@ -1804,10 +1813,6 @@ msgstr "gizli anahtarların ihracına izin verilmez\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "anahtar %s: PGP 2.x tarzı bir anahtar - atlandı\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "anahtar %s: anahtar malzemesi kartta - atlandı\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "UYARI: hiçbir şey dışarı aktarılmadı\n"
|
||||
|
||||
@ -1927,6 +1932,11 @@ msgstr "yeni bir anahtar çifti üretir"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "yeni bir anahtar çifti üretir"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "yeni bir anahtar çifti üretir"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2282,6 +2292,11 @@ msgstr "%s:%d: geçersiz içselleştirme seçenekleri\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "içselleştirme seçenekleri geçersiz\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "liste seçenekleri geçersiz\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d geçersiz dışsallaştırma seçenekleri\n"
|
||||
@ -2616,6 +2631,11 @@ msgstr "ithalat sonrası güvence veritabanını güncellemez"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "ithalat sonrası güvence veritabanını güncellemez"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "parmakizini gösterir"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "güncellemeleri sadece mevcut anahtarlar için kabul eder"
|
||||
|
||||
@ -2625,6 +2645,9 @@ msgstr "ithalat sonrası anahtardan kullanışsız parçaları kaldırır"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "ithalat sonrası anahtardan mümkün olduğunca çok şey kaldırır"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "%d türündeki blok atlanıyor\n"
|
||||
@ -2772,11 +2795,6 @@ msgstr "anahtar %s: yeni anahtar - atlandı\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "yazılabilir bir anahtar zinciri yok: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "\"%s\"e yazıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3565,6 +3583,11 @@ msgstr "güncelleme başarısız: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Güncelleme gereği olmadığından anahtar değişmedi.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Anahtar üretimi başarısızlığa uğradı: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3904,6 +3927,10 @@ msgstr ""
|
||||
msgid "no secret key\n"
|
||||
msgstr "gizli anahtar yok\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "kullanıcı kimliği \"%s\" zaten iptal edilmişti\n"
|
||||
@ -4438,10 +4465,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Anahtar zinciri"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "\"%s\" atlandı: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Birincil anahtar parmak izi:"
|
||||
|
||||
@ -4561,6 +4584,10 @@ msgstr "%s anahtarı %s adresinden isteniyor\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "bir anahtar sunucusu eylemi yok!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "\"%s\" atlandı: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "%s anahtarı %s adresine gönderiliyor\n"
|
||||
|
77
po/uk.po
77
po/uk.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU gnupg 2.1.0\n"
|
||||
"Report-Msgid-Bugs-To: translations@gnupg.org\n"
|
||||
"PO-Revision-Date: 2016-05-10 18:21+0300\n"
|
||||
"PO-Revision-Date: 2016-07-10 15:11+0300\n"
|
||||
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
|
||||
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n"
|
||||
"Language: uk\n"
|
||||
@ -322,7 +322,7 @@ msgid "csh-style command output"
|
||||
msgstr "виведення команд у форматі csh"
|
||||
|
||||
msgid "|FILE|read options from FILE"
|
||||
msgstr "прочитати параметри з вказаного файла"
|
||||
msgstr "|FILE|прочитати параметри з вказаного файла"
|
||||
|
||||
msgid "do not detach from the console"
|
||||
msgstr "не від’єднувати від консолі"
|
||||
@ -334,16 +334,16 @@ msgid "use a log file for the server"
|
||||
msgstr "використовувати файл журналу для сервера"
|
||||
|
||||
msgid "|PGM|use PGM as the PIN-Entry program"
|
||||
msgstr "використовувати вказану програму пінзаписів"
|
||||
msgstr "|PGM|використовувати вказану програму пінзаписів"
|
||||
|
||||
msgid "|PGM|use PGM as the SCdaemon program"
|
||||
msgstr "використовувати вказану програму SCdaemon"
|
||||
msgstr "|PGM|використовувати вказану програму SCdaemon"
|
||||
|
||||
msgid "do not use the SCdaemon"
|
||||
msgstr "не використовувати SCdaemon"
|
||||
|
||||
msgid "|NAME|accept some commands via NAME"
|
||||
msgstr "приймати певні команди через NAME"
|
||||
msgstr "|NAME|приймати певні команди через NAME"
|
||||
|
||||
msgid "ignore requests to change the TTY"
|
||||
msgstr "ігнорувати запити щодо зміни TTY"
|
||||
@ -352,7 +352,7 @@ msgid "ignore requests to change the X display"
|
||||
msgstr "ігнорувати запити щодо зміни графічного дисплея"
|
||||
|
||||
msgid "|N|expire cached PINs after N seconds"
|
||||
msgstr "вважати кешовані пінкоди за вказану кількість секунд"
|
||||
msgstr "|N|вважати кешовані пінкоди за вказану кількість секунд"
|
||||
|
||||
msgid "do not use the PIN cache when signing"
|
||||
msgstr "не використовувати кеш пін-кодів для підписування"
|
||||
@ -1683,6 +1683,14 @@ msgstr "вилучити максимум частин з ключа під ча
|
||||
msgid " - skipped"
|
||||
msgstr " - пропущено"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "записуємо до «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "ключ %s: матеріал ключа на карті — пропущено\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "експортування закритих ключів заборонено\n"
|
||||
|
||||
@ -1690,10 +1698,6 @@ msgstr "експортування закритих ключів заборон
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "ключ %s: ключ у стилі PGP 2.x — пропущено\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "ключ %s: матеріал ключа на карті — пропущено\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "УВАГА: нічого не експортовано\n"
|
||||
|
||||
@ -1803,6 +1807,9 @@ msgstr "швидке створення пари ключів"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "швидке додавання нового ідентифікатора користувача"
|
||||
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "швидке відкликання ідентифікатора користувача"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "повноцінне створення пари ключів"
|
||||
|
||||
@ -2132,6 +2139,10 @@ msgstr "%s:%d: некоректні параметри імпортування\
|
||||
msgid "invalid import options\n"
|
||||
msgstr "некоректні параметри імпортування\n"
|
||||
|
||||
#, c-format
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "некоректний параметр фільтрування: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: некоректні параметри експортування\n"
|
||||
@ -2426,16 +2437,16 @@ msgid "the given preferred keyserver URL is invalid\n"
|
||||
msgstr "вказана адреса основного сервера ключів є некоректною\n"
|
||||
|
||||
msgid "|FILE|take the keys from the keyring FILE"
|
||||
msgstr "визначити ключі з файла сховища ключів ФАЙЛ"
|
||||
msgstr "|FILE|визначити ключі з файла сховища ключів ФАЙЛ"
|
||||
|
||||
msgid "make timestamp conflicts only a warning"
|
||||
msgstr "супроводжувати конфлікти часових позначок лише попередженнями"
|
||||
|
||||
msgid "|FD|write status info to this FD"
|
||||
msgstr "записувати до дескриптора файла дані щодо стану"
|
||||
msgstr "|FD|записувати до дескриптора файла дані щодо стану"
|
||||
|
||||
msgid "|ALGO|reject signatures made with ALGO"
|
||||
msgstr ""
|
||||
msgstr "|ALGO|відкидати підписи, створені за допомогою алгоритму ALGO"
|
||||
|
||||
msgid "Usage: gpgv [options] [files] (-h for help)"
|
||||
msgstr "Використання: gpgv [параметри] [файли] (-h — довідка)"
|
||||
@ -2466,6 +2477,9 @@ msgstr "не вилучати значень власної довіри під
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "не оновлювати базу даних довіри після імпортування"
|
||||
|
||||
msgid "show key during import"
|
||||
msgstr "показувати ключ під час імпортування"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "приймати оновлення лише вже створених ключів"
|
||||
|
||||
@ -2475,6 +2489,9 @@ msgstr "вилучити невикористані частини ключа п
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "вилучити максимум частин з ключа після імпортування"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr "запустити фільтри імпортування та експортувати ключ негайно"
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "пропускаємо блок типу %d\n"
|
||||
@ -2618,10 +2635,6 @@ msgstr "ключ %s: новий ключ — пропущено\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "не виявлено придатного до запису сховища ключів: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "записуємо до «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "помилка під час спроби запису сховища ключів «%s»: %s\n"
|
||||
@ -3367,6 +3380,10 @@ msgstr "помилка оновлення: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "Ключ не змінено, отже оновлення непотрібне.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "Спроба відкликання ідентифікатор користувача зазнала невдачі: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "«%s» не є відбитком\n"
|
||||
@ -3681,6 +3698,10 @@ msgstr "Справді створити сертифікати відклика
|
||||
msgid "no secret key\n"
|
||||
msgstr "немає закритого ключа\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr "спроба відкликати ідентифікатор, який не належить користувачеві: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "ідентифікатор користувача «%s» вже відкликано\n"
|
||||
@ -4197,10 +4218,6 @@ msgstr[2] ""
|
||||
msgid "Keyring"
|
||||
msgstr "Сховище ключів"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "пропущено «%s»: %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "Основний відбиток ключа:"
|
||||
|
||||
@ -4319,6 +4336,10 @@ msgstr "надсилаємо запит щодо ключа %s з %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "немає відомих серверів ключів\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "пропущено «%s»: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "надсилаємо ключ %s на %s\n"
|
||||
@ -5914,10 +5935,8 @@ msgstr "[невідома]"
|
||||
msgid "[ undef ]"
|
||||
msgstr "[не визн.]"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "never"
|
||||
msgid "[ never ]"
|
||||
msgstr "ніколи"
|
||||
msgstr "[ ніколи ]"
|
||||
|
||||
msgid "[marginal]"
|
||||
msgstr "[неповна ]"
|
||||
@ -6766,7 +6785,7 @@ msgid "|N|number of certificates to include"
|
||||
msgstr "кількість сертифікатів, які слід включити"
|
||||
|
||||
msgid "|FILE|take policy information from FILE"
|
||||
msgstr "взяти дані щодо правил з вказаного файла"
|
||||
msgstr "|FILE|взяти дані щодо правил з вказаного файла"
|
||||
|
||||
msgid "do not check certificate policies"
|
||||
msgstr "не перевіряти правила сертифікатів"
|
||||
@ -6778,10 +6797,10 @@ msgid "don't use the terminal at all"
|
||||
msgstr "взагалі не використовувати термінал"
|
||||
|
||||
msgid "|FILE|write a server mode log to FILE"
|
||||
msgstr "записувати журнал режиму сервера до файла"
|
||||
msgstr "|FILE|записувати журнал режиму сервера до файла"
|
||||
|
||||
msgid "|FILE|write an audit log to FILE"
|
||||
msgstr "записувати журнал перевірки до файла"
|
||||
msgstr "|FILE|записувати журнал перевірки до файла"
|
||||
|
||||
msgid "batch mode: never ask"
|
||||
msgstr "пакетний режим: нічого не запитувати"
|
||||
@ -6793,7 +6812,7 @@ msgid "assume no on most questions"
|
||||
msgstr "вважати відповіддю на більшість питань «ні»"
|
||||
|
||||
msgid "|FILE|add keyring to the list of keyrings"
|
||||
msgstr "додати сховище ключів до списку сховищ ключів"
|
||||
msgstr "|FILE|додати сховище ключів до списку сховищ ключів"
|
||||
|
||||
msgid "|USER-ID|use USER-ID as default secret key"
|
||||
msgstr ""
|
||||
@ -7680,7 +7699,7 @@ msgid "|N|do not return more than N items in one query"
|
||||
msgstr "|N|повертати не більше за вказану кількість записів на запит"
|
||||
|
||||
msgid "|FILE|use the CA certificates in FILE for HKP over TLS"
|
||||
msgstr "|ФАЙЛ|використовувати сертифікати CA з файла ФАЙЛ для HKP крізь TLS"
|
||||
msgstr "|FILE|використовувати сертифікати CA з файла для HKP крізь TLS"
|
||||
|
||||
msgid "route all network traffic via Tor"
|
||||
msgstr "маршрутизувати увесь обмін даними з мережею через Tor"
|
||||
|
53
po/zh_CN.po
53
po/zh_CN.po
@ -1757,6 +1757,15 @@ msgstr "导出时尽可能清除密钥中的可选部分"
|
||||
msgid " - skipped"
|
||||
msgstr "%s:已跳过:%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "正在写入‘%s’\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "密钥 %s:密钥在卡上——已跳过\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "不允许导出私钥\n"
|
||||
|
||||
@ -1764,10 +1773,6 @@ msgstr "不允许导出私钥\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "密钥 %s:PGP 2.x 样式的密钥――已跳过\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "密钥 %s:密钥在卡上——已跳过\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "警告:没有导出任何东西\n"
|
||||
|
||||
@ -1886,6 +1891,11 @@ msgstr "生成一副新的密钥对"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "生成一副新的密钥对"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "生成一副新的密钥对"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr ""
|
||||
|
||||
@ -2237,6 +2247,11 @@ msgstr "%s:%d:无效的导入选项\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "无效的导入选项\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "无效的列表选项\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d:无效的导出选项\n"
|
||||
@ -2567,6 +2582,11 @@ msgstr "导入后不更新信任度数据库"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "导入后不更新信任度数据库"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "显示密钥指纹"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "只接受对已有密钥的更新"
|
||||
|
||||
@ -2576,6 +2596,9 @@ msgstr "导入后清除密钥中无用的部分"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "导入后尽可能清除密钥中的可选部分"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "跳过 %d 样式的区块\n"
|
||||
@ -2716,11 +2739,6 @@ msgstr "密钥 %s:新密钥――已跳过\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "找不到可写的钥匙环:%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "writing to `%s'\n"
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "正在写入‘%s’\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "error writing keyring `%s': %s\n"
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
@ -3458,6 +3476,11 @@ msgstr "更新失败:%s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "密钥没有变动所以不需要更新。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "生成密钥失败:%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid fingerprint"
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
@ -3774,6 +3797,10 @@ msgstr "真的要生成吊销证书吗?(y/N)"
|
||||
msgid "no secret key\n"
|
||||
msgstr "没有私钥\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "用户标识“%s”已经被吊销。\n"
|
||||
@ -4289,10 +4316,6 @@ msgstr[1] ""
|
||||
msgid "Keyring"
|
||||
msgstr "钥匙环"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "“%s”已跳过:%s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr "主钥指纹:"
|
||||
|
||||
@ -4412,6 +4435,10 @@ msgstr "下载密钥 %s,从 %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "公钥服务器无动作!\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "“%s”已跳过:%s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "将密钥‘%s’上传到 %s\n"
|
||||
|
51
po/zh_TW.po
51
po/zh_TW.po
@ -1666,6 +1666,14 @@ msgstr "匯出時盡可能地從金鑰中移除"
|
||||
msgid " - skipped"
|
||||
msgstr " - 已跳過"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "正在寫入 '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "金鑰 %s: 金鑰資料在卡片上 - 已跳過\n"
|
||||
|
||||
msgid "exporting secret keys not allowed\n"
|
||||
msgstr "不允許匯出私鑰\n"
|
||||
|
||||
@ -1673,10 +1681,6 @@ msgstr "不允許匯出私鑰\n"
|
||||
msgid "key %s: PGP 2.x style key - skipped\n"
|
||||
msgstr "金鑰 %s: PGP 2.x 型態的金鑰 - 已跳過\n"
|
||||
|
||||
#, c-format
|
||||
msgid "key %s: key material on-card - skipped\n"
|
||||
msgstr "金鑰 %s: 金鑰資料在卡片上 - 已跳過\n"
|
||||
|
||||
msgid "WARNING: nothing exported\n"
|
||||
msgstr "警告: 沒有匯出任何東西\n"
|
||||
|
||||
@ -1790,6 +1794,11 @@ msgstr "快速產生新的金鑰對"
|
||||
msgid "quickly add a new user-id"
|
||||
msgstr "快速產生新的金鑰對"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "quickly generate a new key pair"
|
||||
msgid "quickly revoke a user-id"
|
||||
msgstr "快速產生新的金鑰對"
|
||||
|
||||
msgid "full featured key pair generation"
|
||||
msgstr "全能金鑰對生成"
|
||||
|
||||
@ -2103,6 +2112,11 @@ msgstr "%s:%d: 無效的匯入選項\n"
|
||||
msgid "invalid import options\n"
|
||||
msgstr "無效的匯入選項\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "invalid list options\n"
|
||||
msgid "invalid filter option: %s\n"
|
||||
msgstr "無效的清單選項\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s:%d: invalid export options\n"
|
||||
msgstr "%s:%d: 無效的匯出選項\n"
|
||||
@ -2422,6 +2436,11 @@ msgstr "匯入後不要更新信任資料庫"
|
||||
msgid "do not update the trustdb after import"
|
||||
msgstr "匯入後不要更新信任資料庫"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "show key fingerprint"
|
||||
msgid "show key during import"
|
||||
msgstr "顯示金鑰指紋"
|
||||
|
||||
msgid "only accept updates to existing keys"
|
||||
msgstr "祇接受既有金鑰的更新"
|
||||
|
||||
@ -2431,6 +2450,9 @@ msgstr "匯入後從金鑰中移除無法使用的部分"
|
||||
msgid "remove as much as possible from key after import"
|
||||
msgstr "匯入後盡可能地從金鑰中移除"
|
||||
|
||||
msgid "run import filters and export key immediately"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "skipping block of type %d\n"
|
||||
msgstr "正在跳過 %d 型態的區塊\n"
|
||||
@ -2570,10 +2592,6 @@ msgstr "金鑰 %s: 新的金鑰 - 已跳過\n"
|
||||
msgid "no writable keyring found: %s\n"
|
||||
msgstr "找不到可寫入的鑰匙圈: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "writing to '%s'\n"
|
||||
msgstr "正在寫入 '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "error writing keyring '%s': %s\n"
|
||||
msgstr "寫入鑰匙圈 '%s' 時出錯: %s\n"
|
||||
@ -3296,6 +3314,11 @@ msgstr "更新失敗: %s\n"
|
||||
msgid "Key not changed so no update needed.\n"
|
||||
msgstr "金鑰沒有變更所以不需要更新.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "Key generation failed: %s\n"
|
||||
msgid "User ID revocation failed: %s\n"
|
||||
msgstr "產生金鑰失敗: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "\"%s\" is not a fingerprint\n"
|
||||
msgstr "\"%s\" 不是指紋\n"
|
||||
@ -3606,6 +3629,10 @@ msgstr "真的要建立撤銷憑證嗎? (y/N) "
|
||||
msgid "no secret key\n"
|
||||
msgstr "沒有私鑰\n"
|
||||
|
||||
#, c-format
|
||||
msgid "tried to revoke a non-user ID: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "user ID \"%s\" is already revoked\n"
|
||||
msgstr "使用者 ID \"%s\" 已撤銷\n"
|
||||
@ -4099,10 +4126,6 @@ msgstr[0] "警告: %lu 把金鑰因尺寸太大已跳過\n"
|
||||
msgid "Keyring"
|
||||
msgstr "鑰匙圈"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "已跳過 \"%s\": %s\n"
|
||||
|
||||
msgid "Primary key fingerprint:"
|
||||
msgstr " 主鑰指紋:"
|
||||
|
||||
@ -4218,6 +4241,10 @@ msgstr "正在請求金鑰 %s 自 %s\n"
|
||||
msgid "no keyserver known\n"
|
||||
msgstr "無效的金鑰伺服器選項\n"
|
||||
|
||||
#, c-format
|
||||
msgid "skipped \"%s\": %s\n"
|
||||
msgstr "已跳過 \"%s\": %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "sending key %s to %s\n"
|
||||
msgstr "遞送金鑰 %s 至 %s\n"
|
||||
|
@ -1110,9 +1110,13 @@ ffi_list2intv (scheme *sc, pointer list, int **intv, size_t *len)
|
||||
char *
|
||||
ffi_schemify_name (const char *s, int macro)
|
||||
{
|
||||
char *n = strdup (s), *p;
|
||||
if (n == NULL)
|
||||
return s;
|
||||
/* Fixme: We should use xtrystrdup and return NULL. However, this
|
||||
* requires a lot more changes. Simply returning S as done
|
||||
* originally is not an option. */
|
||||
char *n = xstrdup (s), *p;
|
||||
/* if (n == NULL) */
|
||||
/* return s; */
|
||||
|
||||
for (p = n; *p; p++)
|
||||
{
|
||||
*p = (char) tolower (*p);
|
||||
|
20
tests/openpgp/samplemsgs/enc-2-keys-hh-1.asc
Normal file
20
tests/openpgp/samplemsgs/enc-2-keys-hh-1.asc
Normal file
@ -0,0 +1,20 @@
|
||||
This message has two anonymous recipients:
|
||||
|
||||
public key is 0000000000000000 (steve.biko@example.net)
|
||||
public key is 0000000000000000 (patrice.lumumba@example.net)
|
||||
|
||||
-----BEGIN PGP MESSAGE-----
|
||||
Version: GnuPG v2
|
||||
|
||||
hQEMAwAAAAAAAAAAAQf/YA9Ch/xoVYQmAEyo+9VqQxlvgYt23G/Vid3jgn0DFGp3
|
||||
DRyP8CVEn0ctGpb2kp8Cdgo+SMlO4WCIeVpYzZDCvHYwXSjh6EHMoLL/FVxyUh5q
|
||||
fXiyXl9692r+ms1qzfqJvVSSAjn4PzH31gFG6iQIz5E0yPRpbaDHA+7UlofP4Gfs
|
||||
AfidaVJuu9T7OIU50G554Lsjc3oXkr/m1OJDtNVABkkKLsC/bkVZKC6sTxFbmpXV
|
||||
mYJqq2cBFC5QSE1NO3Gcj4jVhP8CWE2hymIdFtk0HBGiDLQESw9OUmF/MHD6g2Fw
|
||||
NwVcH1pfzxXQYvygPPjaB0AiHR/52jsBifK/fG82R4ReAwAAAAAAAAAAEgEHQHTC
|
||||
vCgH7xW/vw5NRqRLSGarsauU9gY3x9aslz65kmYNMNmfnuedeyTxNj/X2C99/iYp
|
||||
BmofHiCYMkFjd5C0M/+mbGVQNdFwLG4WSSwXf3PkZtJoAXmj3A9opaFDmv51rs3a
|
||||
05IOjuHScOpUSKbTCWLY+rrAlrYSNQ0ZEvBdqFUXmoKIrUu/BLBPw654zrxTrFiX
|
||||
7cLcUlALJdQISuAEktJVb2E7dsrVFnLQsjJv+0EReH5FfSJRzqFaWjQ=
|
||||
=NW7s
|
||||
-----END PGP MESSAGE-----
|
29
tests/openpgp/samplemsgs/enc-2-keys-hr-1.asc
Normal file
29
tests/openpgp/samplemsgs/enc-2-keys-hr-1.asc
Normal file
@ -0,0 +1,29 @@
|
||||
This message has one anonymous and one regular recipient:
|
||||
|
||||
public key is 0000000000000000 (steve.biko@example.net)
|
||||
public key is 9185878E4FCD74C0 (patrice.lumumba@example.net)
|
||||
|
||||
|
||||
-----BEGIN PGP MESSAGE-----
|
||||
Version: GnuPG v2
|
||||
|
||||
hQEMAwAAAAAAAAAAAQf8Cipp2jtLlN1R/MucnvTxzDPLqRg2drOqWkGMoKuUlSvC
|
||||
OAzxliOgBLC9TfLxf/RP/v5KkRms1ovrXsm6bMuE59j04koJ1+K11IzO0jRSaFAI
|
||||
Ij5RM3z4v27dAR7leE1x5QKrltyScxNA74CAXXEvzm/kyGl+efLeeeZcOrbGMxSz
|
||||
vm2n9rc054bkqkIdJmqNkPlynD2Qo1oJUei0GAsV7s1IMB6dtqlGfSUJqmzYkNYt
|
||||
pIRd36xq60m74BrincO5xFNbvaSleA+nzLRUVig5KpEODJBGCpraVPQsQjoFzR1M
|
||||
CtjVVYUFo7s8QET87Wj7b07v06WpJ0e1Nt40zGqdtIReA5GFh45PzXTAEgEHQIA9
|
||||
Rwe1OkhWabVrw90AN5lmcTuruB2ANiW4pTiLVjpIMI1XNV9Ob1VysEUIqPIazZuF
|
||||
unlbIgU1sme+TVLV3/P07C7xiLEGUGUlfOjp4oiIqdLBBAEwtSO3m58GWZurA+aD
|
||||
K30EiHugSCdTYYdKQ6MbXNZxeLpCfslxzUAGwaXZDRemWrbTrBYXcC2+3Wz8R66S
|
||||
a9phYUlVSWCODZkvQvKARaxdvLdqZWRqRxFy3D1YYnYEvmb4thPUuxAiPb/2pTxJ
|
||||
j29hTuKDm3XJ5ZDDG1qlrPx71v1uBxUKBSZDd3YBPMxaLdia2fEmTYjnDN1Q6mzN
|
||||
NicMjmQo45ekA/QOeBobXMEPFsUr87LCY93PuPTDgQIen64ynOsWsVXv3kTM9X8b
|
||||
dmvj3MnKIWzDSIDXOKYvjnP4orCahHp/1qB/7obh2xoOS0qSMAphKaTnVhPAAQc5
|
||||
d5scPLWGe9GWKLpo7eh7yWrk04ryCbZNJOHjaKd2lwAbQ8ip9pA7dy387kUQsivh
|
||||
iOljf9oHPhRY8KrcIZzBJiyasGQMox0/wabQtnPHVqUDJdruaPsnqgU0P1Ojc17a
|
||||
b8cJYTk22pofDEs7oLcUeYZ8iTRpysSTCxydJwEmsj9n1lDW5M69KMlKLL0rZ0nv
|
||||
9nh2WbuwEnA71DzFq3V++dA6+geno5/yCyt/qROJ8I7zqC0DPiMfdpIfOBsC7n0W
|
||||
8hpDIps0
|
||||
=LChh
|
||||
-----END PGP MESSAGE-----
|
21
tests/openpgp/samplemsgs/enc-2-keys-rh-1.asc
Normal file
21
tests/openpgp/samplemsgs/enc-2-keys-rh-1.asc
Normal file
@ -0,0 +1,21 @@
|
||||
This message has one regular and one anonymous recipient:
|
||||
|
||||
public key is 1D777619BE310D79 (steve.biko@example.net)
|
||||
public key is 0000000000000000 (patrice.lumumba@example.net)
|
||||
|
||||
-----BEGIN PGP MESSAGE-----
|
||||
Version: GnuPG v2
|
||||
|
||||
hQEMAx13dhm+MQ15AQgAmDRRzNRfv/NXeJzBLOwcmBjWZ7UZAdr8Y5uqvOEdjIyj
|
||||
XQlvH56/lNVa4WsGcxRWfNucFs78pxqAY3YulApIs1o/+WheCpPEvxMJ5Z+s14rg
|
||||
+jV0H+oW9UkeIVCKeLlHrosbUbYM8cvzsHdNFm1U6MnqH1DNiyTtwgzA065kyRDQ
|
||||
QwoCKf3Bsc+nmbfuWafdWDRwNptdE13JuRoFEd/KxhfXDhWF2r3ynM97erADTYMB
|
||||
RXzOAuNxLxrgdjJ2KJoJu6KRVGMJk1ermzeV1wv3bnfME+QRtZ2Gzu3heAktR9Bj
|
||||
gk4dOkEdYHQi7aYpoRaeWtK9An8FafLrEsbyYISNqoReAwAAAAAAAAAAEgEHQKD1
|
||||
Xk0mkgt/BPeRvR5giCsmMjniGdan99NWiiMJpcNNMOP65NimgxyOYDTbpsGl/tHY
|
||||
qmNzNy1Wk1/ZRRAr4+K8ITs5lmuoDeVVkGQTE2ahRtKEARtFMKoRDYO5dEgadlnL
|
||||
FdigDutyPLqVMaIwmx0HivjfXWEYyhBSXc0wwEvPhH76aBBOAnYZKKsLJVx+GoHp
|
||||
Lxlvdz6CsOOKfgxY7PBjCEpS4aOtIYNenW6fHMYBVTrOXpNok7Q18rx1yNOxvT3X
|
||||
g6zTetpqqM2SJKgSgRNsOobCDhqr
|
||||
=jW0C
|
||||
-----END PGP MESSAGE-----
|
Loading…
x
Reference in New Issue
Block a user