From 8c20500a5d26619ed63e1bcee4404453c90f4a03 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 4 Dec 2007 11:23:31 +0000 Subject: [PATCH] Allow configuraton of pinentry tooltip. Other minor buf fixes. --- AUTHORS | 3 +- ChangeLog | 4 + agent/ChangeLog | 4 + agent/call-pinentry.c | 34 +- common/ChangeLog | 10 +- common/Makefile.am | 11 +- common/helpfile.c | 254 ++++++++++ common/localename.c | 1044 +++++++++++++++++++++++++++++++++++++++++ common/membuf.h | 4 +- common/t-helpfile.c | 66 +++ common/util.h | 6 + configure.ac | 5 +- doc/ChangeLog | 5 + doc/Makefile.am | 3 +- doc/help.de.txt | 41 ++ doc/help.txt | 68 +++ g10/ChangeLog | 3 + g10/keygen.c | 18 +- po/be.po | 440 ++++++++--------- po/ca.po | 440 ++++++++--------- po/cs.po | 440 ++++++++--------- po/da.po | 440 ++++++++--------- po/de.po | 440 ++++++++--------- po/el.po | 440 ++++++++--------- po/eo.po | 440 ++++++++--------- po/es.po | 440 ++++++++--------- po/et.po | 440 ++++++++--------- po/fi.po | 440 ++++++++--------- po/fr.po | 440 ++++++++--------- po/gl.po | 440 ++++++++--------- po/hu.po | 440 ++++++++--------- po/id.po | 440 ++++++++--------- po/it.po | 440 ++++++++--------- po/ja.po | 440 ++++++++--------- po/nb.po | 440 ++++++++--------- po/pt.po | 440 ++++++++--------- po/pt_BR.po | 440 ++++++++--------- po/ro.po | 440 ++++++++--------- po/ru.po | 440 ++++++++--------- po/sk.po | 440 ++++++++--------- po/sv.po | 440 ++++++++--------- po/tr.po | 440 ++++++++--------- po/zh_CN.po | 440 ++++++++--------- po/zh_TW.po | 440 ++++++++--------- 44 files changed, 7277 insertions(+), 5746 deletions(-) create mode 100644 common/helpfile.c create mode 100644 common/localename.c create mode 100644 common/t-helpfile.c create mode 100644 doc/help.de.txt create mode 100644 doc/help.txt diff --git a/AUTHORS b/AUTHORS index 1d8f49f80..29aacbd87 100644 --- a/AUTHORS +++ b/AUTHORS @@ -46,7 +46,8 @@ Ivo Timmermans Translations [nl] Jacobo Tarri'o Barreiro Translations [gl] -Janusz Aleksander Urbanowicz Translations [po] +Janusz Aleksander Urbanowicz Translations [pl] +Jakub Bogusz Translations [pl] Jedi Lin Translations [zh-tw] diff --git a/ChangeLog b/ChangeLog index 53870a987..48f36a3b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-12-03 Werner Koch + + * configure.ac: Add test gt_LC_MESSAGES.. + 2007-10-01 Werner Koch * configure.ac: Require assuan 1.0.4. diff --git a/agent/ChangeLog b/agent/ChangeLog index cd526c9d2..360536115 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,7 @@ +2007-12-04 Werner Koch + + * call-pinentry.c (agent_askpin): Use gnupg_get_help_string. + 2007-12-03 Werner Koch * gpg-agent.c (main): s/standard_socket/use_standard_socket/ for diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index 6be9bfbe9..5c94bb937 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -578,7 +578,7 @@ agent_askpin (ctrl_t ctrl, to the pinentry. */ if (pininfo->with_qualitybar && opt.min_passphrase_len ) { - char *tmpstr; + char *tmpstr, *tmpstr2; const char *tooltip; /* TRANSLATORS: This string is displayed by pinentry as the @@ -595,21 +595,25 @@ agent_askpin (ctrl_t ctrl, else if (rc) return unlock_pinentry (rc); - /* TRANSLATORS: This string is a tooltip, shown by pinentry when - hovering over the quality bar. Please use an appropriate - string to describe what this is about. The length of the - tooltip is limited to about 900 characters. If you do not - translate this entry, a default english text (see source) - will be used. */ - tooltip = _("pinentry.qualitybar.tooltip"); - if (!strcmp ("pinentry.qualitybar.tooltip", tooltip)) - tooltip = ("The quality of the text entered above.\n" - "Please ask your administrator for " - "details about the criteria."); - /* Fixme: As soon as we have the extended error reporting - facility (audit log), we can use a user specified helptext if - that has been configured. */ + tmpstr2 = gnupg_get_help_string ("pinentry.qualitybar.tooltip"); + if (tmpstr2) + tooltip = tmpstr2; + else + { + /* TRANSLATORS: This string is a tooltip, shown by pinentry + when hovering over the quality bar. Please use an + appropriate string to describe what this is about. The + length of the tooltip is limited to about 900 characters. + If you do not translate this entry, a default english + text (see source) will be used. */ + tooltip = _("pinentry.qualitybar.tooltip"); + if (!strcmp ("pinentry.qualitybar.tooltip", tooltip)) + tooltip = ("The quality of the text entered above.\n" + "Please ask your administrator for " + "details about the criteria."); + } tmpstr = try_percent_escape (tooltip, "\t\r\n\f\v"); + xfree (tmpstr2); snprintf (line, DIM(line)-1, "SETQUALITYBAR_TT %s", tmpstr? tmpstr:""); line[DIM(line)-1] = 0; xfree (tmpstr); diff --git a/common/ChangeLog b/common/ChangeLog index 867eeb57d..a9e393201 100644 --- a/common/ChangeLog +++ b/common/ChangeLog @@ -1,4 +1,12 @@ -2007-12-03 Werner Koch +2007-12-04 Werner Koch + + * Makefile.am (t_helpfile_LDADD, module_maint_tests): New. + * t-helpfile.c: New. + * helpfile.c: New. + * membuf.h (is_membuf_ready, MEMBUF_ZERO): New. + * localename.c: New. Taken from gettext with modifications as done + for GpgOL. Export one new function. + * util.h (gnupg_messages_locale_name, gnupg_get_help_string): Added. * sysutils.c (gnupg_reopen_std): New. Taken from ../g10/gpg.c. diff --git a/common/Makefile.am b/common/Makefile.am index 2d217a118..11404af02 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -22,7 +22,7 @@ EXTRA_DIST = mkstrtable.awk exaudit.awk exstatus.awk \ audit-events.h status-codes.h noinst_LIBRARIES = libcommon.a libcommonpth.a libsimple-pwquery.a libgpgrl.a -noinst_PROGRAMS = $(module_tests) +noinst_PROGRAMS = $(module_tests) $(module_maint_tests) TESTS = $(module_tests) BUILT_SOURCES = audit-events.h status-codes.h @@ -66,7 +66,9 @@ common_sources = \ srv.h \ dns-cert.c dns-cert.h \ pka.c pka.h \ - http.c http.h + http.c http.h \ + localename.c \ + helpfile.c @@ -105,7 +107,8 @@ status-codes.h: Makefile mkstrtable.awk exstatus.awk status.h # # Module tests # -module_tests = t-convert t-gettime t-sysutils +module_tests = t-convert t-gettime t-sysutils +module_maint_tests = t-helpfile t_common_ldadd = libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \ $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) @@ -113,6 +116,6 @@ t_common_ldadd = libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \ t_convert_LDADD = $(t_common_ldadd) t_gettime_LDADD = $(t_common_ldadd) t_sysutils_LDADD = $(t_common_ldadd) - +t_helpfile_LDADD = $(t_common_ldadd) diff --git a/common/helpfile.c b/common/helpfile.c new file mode 100644 index 000000000..c1f84a364 --- /dev/null +++ b/common/helpfile.c @@ -0,0 +1,254 @@ +/* helpfile.c - GnuPG's helpfile feature + * Copyright (C) 2007 Free Software Foundation, Inc. + * + * This file is part of GnuPG. + * + * GnuPG is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * GnuPG is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see . + */ + +#include +#include + + +#include "util.h" +#include "i18n.h" +#include "membuf.h" + + +/* Try to find KEY in the file FNAME. */ +static char * +findkey_fname (const char *key, const char *fname) +{ + gpg_error_t err = 0; + FILE *fp; + int lnr = 0; + int c; + char *p, line[256]; + int in_item = 0; + membuf_t mb = MEMBUF_ZERO; + + fp = fopen (fname, "r"); + if (!fp) + { + if (errno != ENOENT) + { + err = gpg_error_from_syserror (); + log_error (_("can't open `%s': %s\n"), fname, gpg_strerror (err)); + } + return NULL; + } + + while (fgets (line, DIM(line)-1, fp)) + { + lnr++; + + if (!*line || line[strlen(line)-1] != '\n') + { + /* Eat until end of line. */ + while ( (c=getc (fp)) != EOF && c != '\n') + ; + err = gpg_error (*line? GPG_ERR_LINE_TOO_LONG + : GPG_ERR_INCOMPLETE_LINE); + log_error (_("file `%s', line %d: %s\n"), + fname, lnr, gpg_strerror (err)); + } + else + line[strlen(line)-1] = 0; /* Chop the LF. */ + + again: + if (!in_item) + { + /* Allow for empty lines and spaces while not in an item. */ + for (p=line; spacep (p); p++) + ; + if (!*p || *p == '#') + continue; + if (*line != '.' || spacep(line+1)) + { + log_info (_("file `%s', line %d: %s\n"), + fname, lnr, _("ignoring garbage line")); + continue; + } + trim_trailing_spaces (line); + in_item = 1; + if (!strcmp (line+1, key)) + { + /* Found. Start collecting. */ + init_membuf (&mb, 1024); + } + continue; + } + + /* If in an item only allow for comments in the first column + and provide ". " as an escape sequence to allow for + leading dots and hash marks in the actual text. */ + if (*line == '#') + continue; + if (*line == '.') + { + if (spacep(line+1)) + p = line + 2; + else + { + trim_trailing_spaces (line); + in_item = 0; + if (is_membuf_ready (&mb)) + break; /* Yep, found and collected the item. */ + if (!line[1]) + continue; /* Just an end of text dot. */ + goto again; /* A new key line. */ + } + } + else + p = line; + + if (is_membuf_ready (&mb)) + { + put_membuf_str (&mb, p); + put_membuf (&mb, "\n", 1); + } + + } + if ( !err && ferror (fp) ) + { + err = gpg_error_from_syserror (); + log_error (_("error reading `%s', line %d: %s\n"), + fname, lnr, gpg_strerror (err)); + } + + fclose (fp); + if (is_membuf_ready (&mb)) + { + /* We have collected something. */ + if (err) + { + xfree (get_membuf (&mb, NULL)); + return NULL; + } + else + { + put_membuf (&mb, "", 1); /* Terminate string. */ + return get_membuf (&mb, NULL); + } + } + else + return NULL; +} + + +/* Try the help files depending on the locale. */ +static char * +findkey_locale (const char *key, const char *locname, const char *dirname) +{ + const char *s; + char *fname, *ext, *p; + char *result; + + fname = xtrymalloc (strlen (dirname) + 6 + strlen (locname) + 4 + 1); + if (!fname) + return NULL; + ext = stpcpy (stpcpy (fname, dirname), "/help."); + /* Search with locale name and territory. ("help.LL_TT.txt") */ + if (strchr (locname, '_')) + { + strcpy (stpcpy (ext, locname), ".txt"); + result = findkey_fname (key, fname); + } + else + result = NULL; /* No territory. */ + + if (!result) + { + /* Search with just the locale name - if any. ("help.LL.txt") */ + if (*locname) + { + for (p=ext, s=locname; *s && *s != '_';) + *p++ = *s++; + strcpy (p, ".txt"); + result = findkey_fname (key, fname); + } + else + result = NULL; + } + + if (!result) + { + /* Last try: Search in file without any local info. ("help.txt") */ + strcpy (ext, "txt"); + result = findkey_fname (key, fname); + } + + xfree (fname); + return result; +} + + +/* Return a malloced help text as identified by KEY. The system takes + the string from an UTF-8 encoded file to be created by an + administrator or as distributed with GnuPG. On a GNU or Unix + system the entry is searched in these files: + + /etc/gnupg/help.LL.txt + /etc/gnupg/help.txt + /usr/share/gnupg/help.LL.txt + /usr/share/gnupg/help.txt + + Here LL denotes the two digit language code of the current locale. + + The help file needs to be encoded in UTF-8, lines with a '#' in the + first column are comment lines and entirely ignored. Help keys are + identified by a key consisting of a single word with a single dot + as the first character. All key lines listed without any + intervening lines (except for comment lines) lead to the same help + text. Lines following the key lines make up the actual hep texts. + +*/ + +char * +gnupg_get_help_string (const char *key) +{ + static const char *locname; + char *result; + + if (!locname) + { + char *buffer, *p; + int count = 0; + const char *s = gnupg_messages_locale_name (); + buffer = xtrystrdup (s); + if (!buffer) + locname = ""; + else + { + for (p = buffer; *p; p++) + if (*p == '.' || *p == '@' || *p == '/' /*(safeguard)*/) + *p = 0; + else if (*p == '_') + { + if (count++) + *p = 0; /* Altho cut at a underscore in the territory. */ + } + locname = buffer; + } + } + + if (!key || !*key) + return NULL; + + result = findkey_locale (key, locname, gnupg_sysconfdir ()); + if (!result) + result = findkey_locale (key, locname, gnupg_datadir ()); + + return result; +} diff --git a/common/localename.c b/common/localename.c new file mode 100644 index 000000000..f2429068a --- /dev/null +++ b/common/localename.c @@ -0,0 +1,1044 @@ +/* localename.c - Determine the current selected locale. + Copyright (C) 1995-1999, 2000-2003, 2007 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public License + as published by the Free Software Foundation; either version 2.1, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this program; if not, see . +*/ +/* Written by Ulrich Drepper , 1995. */ +/* Win32 code written by Tor Lillqvist . */ +/* Modified for GpgOL use by Werner Koch , 2005. */ +/* Modified for GnuPG use by Werner Koch , 2007 */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include +#ifdef HAVE_LOCALE_H +#include +#endif + +#ifdef HAVE_W32_SYSTEM +# include +/* Mingw headers don't have latest language and sublanguage codes. */ +# ifndef LANG_AFRIKAANS +# define LANG_AFRIKAANS 0x36 +# endif +# ifndef LANG_ALBANIAN +# define LANG_ALBANIAN 0x1c +# endif +# ifndef LANG_AMHARIC +# define LANG_AMHARIC 0x5e +# endif +# ifndef LANG_ARABIC +# define LANG_ARABIC 0x01 +# endif +# ifndef LANG_ARMENIAN +# define LANG_ARMENIAN 0x2b +# endif +# ifndef LANG_ASSAMESE +# define LANG_ASSAMESE 0x4d +# endif +# ifndef LANG_AZERI +# define LANG_AZERI 0x2c +# endif +# ifndef LANG_BASQUE +# define LANG_BASQUE 0x2d +# endif +# ifndef LANG_BELARUSIAN +# define LANG_BELARUSIAN 0x23 +# endif +# ifndef LANG_BENGALI +# define LANG_BENGALI 0x45 +# endif +# ifndef LANG_BURMESE +# define LANG_BURMESE 0x55 +# endif +# ifndef LANG_CAMBODIAN +# define LANG_CAMBODIAN 0x53 +# endif +# ifndef LANG_CATALAN +# define LANG_CATALAN 0x03 +# endif +# ifndef LANG_CHEROKEE +# define LANG_CHEROKEE 0x5c +# endif +# ifndef LANG_DIVEHI +# define LANG_DIVEHI 0x65 +# endif +# ifndef LANG_EDO +# define LANG_EDO 0x66 +# endif +# ifndef LANG_ESTONIAN +# define LANG_ESTONIAN 0x25 +# endif +# ifndef LANG_FAEROESE +# define LANG_FAEROESE 0x38 +# endif +# ifndef LANG_FARSI +# define LANG_FARSI 0x29 +# endif +# ifndef LANG_FRISIAN +# define LANG_FRISIAN 0x62 +# endif +# ifndef LANG_FULFULDE +# define LANG_FULFULDE 0x67 +# endif +# ifndef LANG_GAELIC +# define LANG_GAELIC 0x3c +# endif +# ifndef LANG_GALICIAN +# define LANG_GALICIAN 0x56 +# endif +# ifndef LANG_GEORGIAN +# define LANG_GEORGIAN 0x37 +# endif +# ifndef LANG_GUARANI +# define LANG_GUARANI 0x74 +# endif +# ifndef LANG_GUJARATI +# define LANG_GUJARATI 0x47 +# endif +# ifndef LANG_HAUSA +# define LANG_HAUSA 0x68 +# endif +# ifndef LANG_HAWAIIAN +# define LANG_HAWAIIAN 0x75 +# endif +# ifndef LANG_HEBREW +# define LANG_HEBREW 0x0d +# endif +# ifndef LANG_HINDI +# define LANG_HINDI 0x39 +# endif +# ifndef LANG_IBIBIO +# define LANG_IBIBIO 0x69 +# endif +# ifndef LANG_IGBO +# define LANG_IGBO 0x70 +# endif +# ifndef LANG_INDONESIAN +# define LANG_INDONESIAN 0x21 +# endif +# ifndef LANG_INUKTITUT +# define LANG_INUKTITUT 0x5d +# endif +# ifndef LANG_KANNADA +# define LANG_KANNADA 0x4b +# endif +# ifndef LANG_KANURI +# define LANG_KANURI 0x71 +# endif +# ifndef LANG_KASHMIRI +# define LANG_KASHMIRI 0x60 +# endif +# ifndef LANG_KAZAK +# define LANG_KAZAK 0x3f +# endif +# ifndef LANG_KONKANI +# define LANG_KONKANI 0x57 +# endif +# ifndef LANG_KYRGYZ +# define LANG_KYRGYZ 0x40 +# endif +# ifndef LANG_LAO +# define LANG_LAO 0x54 +# endif +# ifndef LANG_LATIN +# define LANG_LATIN 0x76 +# endif +# ifndef LANG_LATVIAN +# define LANG_LATVIAN 0x26 +# endif +# ifndef LANG_LITHUANIAN +# define LANG_LITHUANIAN 0x27 +# endif +# ifndef LANG_MACEDONIAN +# define LANG_MACEDONIAN 0x2f +# endif +# ifndef LANG_MALAY +# define LANG_MALAY 0x3e +# endif +# ifndef LANG_MALAYALAM +# define LANG_MALAYALAM 0x4c +# endif +# ifndef LANG_MALTESE +# define LANG_MALTESE 0x3a +# endif +# ifndef LANG_MANIPURI +# define LANG_MANIPURI 0x58 +# endif +# ifndef LANG_MARATHI +# define LANG_MARATHI 0x4e +# endif +# ifndef LANG_MONGOLIAN +# define LANG_MONGOLIAN 0x50 +# endif +# ifndef LANG_NEPALI +# define LANG_NEPALI 0x61 +# endif +# ifndef LANG_ORIYA +# define LANG_ORIYA 0x48 +# endif +# ifndef LANG_OROMO +# define LANG_OROMO 0x72 +# endif +# ifndef LANG_PAPIAMENTU +# define LANG_PAPIAMENTU 0x79 +# endif +# ifndef LANG_PASHTO +# define LANG_PASHTO 0x63 +# endif +# ifndef LANG_PUNJABI +# define LANG_PUNJABI 0x46 +# endif +# ifndef LANG_RHAETO_ROMANCE +# define LANG_RHAETO_ROMANCE 0x17 +# endif +# ifndef LANG_SAAMI +# define LANG_SAAMI 0x3b +# endif +# ifndef LANG_SANSKRIT +# define LANG_SANSKRIT 0x4f +# endif +# ifndef LANG_SERBIAN +# define LANG_SERBIAN 0x1a +# endif +# ifndef LANG_SINDHI +# define LANG_SINDHI 0x59 +# endif +# ifndef LANG_SINHALESE +# define LANG_SINHALESE 0x5b +# endif +# ifndef LANG_SLOVAK +# define LANG_SLOVAK 0x1b +# endif +# ifndef LANG_SOMALI +# define LANG_SOMALI 0x77 +# endif +# ifndef LANG_SORBIAN +# define LANG_SORBIAN 0x2e +# endif +# ifndef LANG_SUTU +# define LANG_SUTU 0x30 +# endif +# ifndef LANG_SWAHILI +# define LANG_SWAHILI 0x41 +# endif +# ifndef LANG_SYRIAC +# define LANG_SYRIAC 0x5a +# endif +# ifndef LANG_TAGALOG +# define LANG_TAGALOG 0x64 +# endif +# ifndef LANG_TAJIK +# define LANG_TAJIK 0x28 +# endif +# ifndef LANG_TAMAZIGHT +# define LANG_TAMAZIGHT 0x5f +# endif +# ifndef LANG_TAMIL +# define LANG_TAMIL 0x49 +# endif +# ifndef LANG_TATAR +# define LANG_TATAR 0x44 +# endif +# ifndef LANG_TELUGU +# define LANG_TELUGU 0x4a +# endif +# ifndef LANG_THAI +# define LANG_THAI 0x1e +# endif +# ifndef LANG_TIBETAN +# define LANG_TIBETAN 0x51 +# endif +# ifndef LANG_TIGRINYA +# define LANG_TIGRINYA 0x73 +# endif +# ifndef LANG_TSONGA +# define LANG_TSONGA 0x31 +# endif +# ifndef LANG_TSWANA +# define LANG_TSWANA 0x32 +# endif +# ifndef LANG_TURKMEN +# define LANG_TURKMEN 0x42 +# endif +# ifndef LANG_UKRAINIAN +# define LANG_UKRAINIAN 0x22 +# endif +# ifndef LANG_URDU +# define LANG_URDU 0x20 +# endif +# ifndef LANG_UZBEK +# define LANG_UZBEK 0x43 +# endif +# ifndef LANG_VENDA +# define LANG_VENDA 0x33 +# endif +# ifndef LANG_VIETNAMESE +# define LANG_VIETNAMESE 0x2a +# endif +# ifndef LANG_WELSH +# define LANG_WELSH 0x52 +# endif +# ifndef LANG_XHOSA +# define LANG_XHOSA 0x34 +# endif +# ifndef LANG_YI +# define LANG_YI 0x78 +# endif +# ifndef LANG_YIDDISH +# define LANG_YIDDISH 0x3d +# endif +# ifndef LANG_YORUBA +# define LANG_YORUBA 0x6a +# endif +# ifndef LANG_ZULU +# define LANG_ZULU 0x35 +# endif +# ifndef SUBLANG_ARABIC_SAUDI_ARABIA +# define SUBLANG_ARABIC_SAUDI_ARABIA 0x01 +# endif +# ifndef SUBLANG_ARABIC_IRAQ +# define SUBLANG_ARABIC_IRAQ 0x02 +# endif +# ifndef SUBLANG_ARABIC_EGYPT +# define SUBLANG_ARABIC_EGYPT 0x03 +# endif +# ifndef SUBLANG_ARABIC_LIBYA +# define SUBLANG_ARABIC_LIBYA 0x04 +# endif +# ifndef SUBLANG_ARABIC_ALGERIA +# define SUBLANG_ARABIC_ALGERIA 0x05 +# endif +# ifndef SUBLANG_ARABIC_MOROCCO +# define SUBLANG_ARABIC_MOROCCO 0x06 +# endif +# ifndef SUBLANG_ARABIC_TUNISIA +# define SUBLANG_ARABIC_TUNISIA 0x07 +# endif +# ifndef SUBLANG_ARABIC_OMAN +# define SUBLANG_ARABIC_OMAN 0x08 +# endif +# ifndef SUBLANG_ARABIC_YEMEN +# define SUBLANG_ARABIC_YEMEN 0x09 +# endif +# ifndef SUBLANG_ARABIC_SYRIA +# define SUBLANG_ARABIC_SYRIA 0x0a +# endif +# ifndef SUBLANG_ARABIC_JORDAN +# define SUBLANG_ARABIC_JORDAN 0x0b +# endif +# ifndef SUBLANG_ARABIC_LEBANON +# define SUBLANG_ARABIC_LEBANON 0x0c +# endif +# ifndef SUBLANG_ARABIC_KUWAIT +# define SUBLANG_ARABIC_KUWAIT 0x0d +# endif +# ifndef SUBLANG_ARABIC_UAE +# define SUBLANG_ARABIC_UAE 0x0e +# endif +# ifndef SUBLANG_ARABIC_BAHRAIN +# define SUBLANG_ARABIC_BAHRAIN 0x0f +# endif +# ifndef SUBLANG_ARABIC_QATAR +# define SUBLANG_ARABIC_QATAR 0x10 +# endif +# ifndef SUBLANG_AZERI_LATIN +# define SUBLANG_AZERI_LATIN 0x01 +# endif +# ifndef SUBLANG_AZERI_CYRILLIC +# define SUBLANG_AZERI_CYRILLIC 0x02 +# endif +# ifndef SUBLANG_BENGALI_INDIA +# define SUBLANG_BENGALI_INDIA 0x01 +# endif +# ifndef SUBLANG_BENGALI_BANGLADESH +# define SUBLANG_BENGALI_BANGLADESH 0x02 +# endif +# ifndef SUBLANG_CHINESE_MACAU +# define SUBLANG_CHINESE_MACAU 0x05 +# endif +# ifndef SUBLANG_ENGLISH_SOUTH_AFRICA +# define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07 +# endif +# ifndef SUBLANG_ENGLISH_JAMAICA +# define SUBLANG_ENGLISH_JAMAICA 0x08 +# endif +# ifndef SUBLANG_ENGLISH_CARIBBEAN +# define SUBLANG_ENGLISH_CARIBBEAN 0x09 +# endif +# ifndef SUBLANG_ENGLISH_BELIZE +# define SUBLANG_ENGLISH_BELIZE 0x0a +# endif +# ifndef SUBLANG_ENGLISH_TRINIDAD +# define SUBLANG_ENGLISH_TRINIDAD 0x0b +# endif +# ifndef SUBLANG_ENGLISH_ZIMBABWE +# define SUBLANG_ENGLISH_ZIMBABWE 0x0c +# endif +# ifndef SUBLANG_ENGLISH_PHILIPPINES +# define SUBLANG_ENGLISH_PHILIPPINES 0x0d +# endif +# ifndef SUBLANG_ENGLISH_INDONESIA +# define SUBLANG_ENGLISH_INDONESIA 0x0e +# endif +# ifndef SUBLANG_ENGLISH_HONGKONG +# define SUBLANG_ENGLISH_HONGKONG 0x0f +# endif +# ifndef SUBLANG_ENGLISH_INDIA +# define SUBLANG_ENGLISH_INDIA 0x10 +# endif +# ifndef SUBLANG_ENGLISH_MALAYSIA +# define SUBLANG_ENGLISH_MALAYSIA 0x11 +# endif +# ifndef SUBLANG_ENGLISH_SINGAPORE +# define SUBLANG_ENGLISH_SINGAPORE 0x12 +# endif +# ifndef SUBLANG_FRENCH_LUXEMBOURG +# define SUBLANG_FRENCH_LUXEMBOURG 0x05 +# endif +# ifndef SUBLANG_FRENCH_MONACO +# define SUBLANG_FRENCH_MONACO 0x06 +# endif +# ifndef SUBLANG_FRENCH_WESTINDIES +# define SUBLANG_FRENCH_WESTINDIES 0x07 +# endif +# ifndef SUBLANG_FRENCH_REUNION +# define SUBLANG_FRENCH_REUNION 0x08 +# endif +# ifndef SUBLANG_FRENCH_CONGO +# define SUBLANG_FRENCH_CONGO 0x09 +# endif +# ifndef SUBLANG_FRENCH_SENEGAL +# define SUBLANG_FRENCH_SENEGAL 0x0a +# endif +# ifndef SUBLANG_FRENCH_CAMEROON +# define SUBLANG_FRENCH_CAMEROON 0x0b +# endif +# ifndef SUBLANG_FRENCH_COTEDIVOIRE +# define SUBLANG_FRENCH_COTEDIVOIRE 0x0c +# endif +# ifndef SUBLANG_FRENCH_MALI +# define SUBLANG_FRENCH_MALI 0x0d +# endif +# ifndef SUBLANG_FRENCH_MOROCCO +# define SUBLANG_FRENCH_MOROCCO 0x0e +# endif +# ifndef SUBLANG_FRENCH_HAITI +# define SUBLANG_FRENCH_HAITI 0x0f +# endif +# ifndef SUBLANG_GERMAN_LUXEMBOURG +# define SUBLANG_GERMAN_LUXEMBOURG 0x04 +# endif +# ifndef SUBLANG_GERMAN_LIECHTENSTEIN +# define SUBLANG_GERMAN_LIECHTENSTEIN 0x05 +# endif +# ifndef SUBLANG_KASHMIRI_INDIA +# define SUBLANG_KASHMIRI_INDIA 0x02 +# endif +# ifndef SUBLANG_MALAY_MALAYSIA +# define SUBLANG_MALAY_MALAYSIA 0x01 +# endif +# ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM +# define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02 +# endif +# ifndef SUBLANG_NEPALI_INDIA +# define SUBLANG_NEPALI_INDIA 0x02 +# endif +# ifndef SUBLANG_PUNJABI_INDIA +# define SUBLANG_PUNJABI_INDIA 0x01 +# endif +# ifndef SUBLANG_ROMANIAN_ROMANIA +# define SUBLANG_ROMANIAN_ROMANIA 0x01 +# endif +# ifndef SUBLANG_SERBIAN_LATIN +# define SUBLANG_SERBIAN_LATIN 0x02 +# endif +# ifndef SUBLANG_SERBIAN_CYRILLIC +# define SUBLANG_SERBIAN_CYRILLIC 0x03 +# endif +# ifndef SUBLANG_SINDHI_INDIA +# define SUBLANG_SINDHI_INDIA 0x00 +# endif +# ifndef SUBLANG_SINDHI_PAKISTAN +# define SUBLANG_SINDHI_PAKISTAN 0x01 +# endif +# ifndef SUBLANG_SPANISH_GUATEMALA +# define SUBLANG_SPANISH_GUATEMALA 0x04 +# endif +# ifndef SUBLANG_SPANISH_COSTA_RICA +# define SUBLANG_SPANISH_COSTA_RICA 0x05 +# endif +# ifndef SUBLANG_SPANISH_PANAMA +# define SUBLANG_SPANISH_PANAMA 0x06 +# endif +# ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC +# define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07 +# endif +# ifndef SUBLANG_SPANISH_VENEZUELA +# define SUBLANG_SPANISH_VENEZUELA 0x08 +# endif +# ifndef SUBLANG_SPANISH_COLOMBIA +# define SUBLANG_SPANISH_COLOMBIA 0x09 +# endif +# ifndef SUBLANG_SPANISH_PERU +# define SUBLANG_SPANISH_PERU 0x0a +# endif +# ifndef SUBLANG_SPANISH_ARGENTINA +# define SUBLANG_SPANISH_ARGENTINA 0x0b +# endif +# ifndef SUBLANG_SPANISH_ECUADOR +# define SUBLANG_SPANISH_ECUADOR 0x0c +# endif +# ifndef SUBLANG_SPANISH_CHILE +# define SUBLANG_SPANISH_CHILE 0x0d +# endif +# ifndef SUBLANG_SPANISH_URUGUAY +# define SUBLANG_SPANISH_URUGUAY 0x0e +# endif +# ifndef SUBLANG_SPANISH_PARAGUAY +# define SUBLANG_SPANISH_PARAGUAY 0x0f +# endif +# ifndef SUBLANG_SPANISH_BOLIVIA +# define SUBLANG_SPANISH_BOLIVIA 0x10 +# endif +# ifndef SUBLANG_SPANISH_EL_SALVADOR +# define SUBLANG_SPANISH_EL_SALVADOR 0x11 +# endif +# ifndef SUBLANG_SPANISH_HONDURAS +# define SUBLANG_SPANISH_HONDURAS 0x12 +# endif +# ifndef SUBLANG_SPANISH_NICARAGUA +# define SUBLANG_SPANISH_NICARAGUA 0x13 +# endif +# ifndef SUBLANG_SPANISH_PUERTO_RICO +# define SUBLANG_SPANISH_PUERTO_RICO 0x14 +# endif +# ifndef SUBLANG_SWEDISH_FINLAND +# define SUBLANG_SWEDISH_FINLAND 0x02 +# endif +# ifndef SUBLANG_TAMAZIGHT_ARABIC +# define SUBLANG_TAMAZIGHT_ARABIC 0x01 +# endif +# ifndef SUBLANG_TAMAZIGHT_LATIN +# define SUBLANG_TAMAZIGHT_LATIN 0x02 +# endif +# ifndef SUBLANG_TIGRINYA_ETHIOPIA +# define SUBLANG_TIGRINYA_ETHIOPIA 0x00 +# endif +# ifndef SUBLANG_TIGRINYA_ERITREA +# define SUBLANG_TIGRINYA_ERITREA 0x01 +# endif +# ifndef SUBLANG_URDU_PAKISTAN +# define SUBLANG_URDU_PAKISTAN 0x01 +# endif +# ifndef SUBLANG_URDU_INDIA +# define SUBLANG_URDU_INDIA 0x02 +# endif +# ifndef SUBLANG_UZBEK_LATIN +# define SUBLANG_UZBEK_LATIN 0x01 +# endif +# ifndef SUBLANG_UZBEK_CYRILLIC +# define SUBLANG_UZBEK_CYRILLIC 0x02 +# endif +#endif /* HAVE_W32_SYSTEM */ + +/* XPG3 defines the result of 'setlocale (category, NULL)' as: + "Directs 'setlocale()' to query 'category' and return the current + setting of 'local'." + However it does not specify the exact format. Neither do SUSV2 and + ISO C 99. So we can use this feature only on selected systems (e.g. + those using GNU C Library). */ +#if defined _LIBC || (defined __GNU_LIBRARY__ && __GNU_LIBRARY__ >= 2) +# define HAVE_LOCALE_NULL +#endif + +/* Use a dummy value for LC_MESSAGES in case it is not defined. This + works becuase we always test for HAVE_LC_MESSAGES and the core + fucntion takes the category as a string as well. */ +#ifndef HAVE_LC_MESSAGES +#define LC_MESSAGES 0 +#endif + + +/* Determine the current locale's name, and canonicalize it into XPG syntax + language[_territory[.codeset]][@modifier] + The codeset part in the result is not reliable; the locale_charset() + should be used for codeset information instead. + The result must not be freed; it is statically allocated. */ + +static const char * +do_nl_locale_name (int category, const char *categoryname) +{ + const char *retval; + +#ifndef HAVE_W32_SYSTEM + + /* Use the POSIX methods of looking to 'LC_ALL', 'LC_xxx', and 'LANG'. + On some systems this can be done by the 'setlocale' function itself. */ +# if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL + retval = setlocale (category, NULL); +# else + /* Setting of LC_ALL overwrites all other. */ + retval = getenv ("LC_ALL"); + if (retval == NULL || retval[0] == '\0') + { + /* Next comes the name of the desired category. */ + retval = getenv (categoryname); + if (retval == NULL || retval[0] == '\0') + { + /* Last possibility is the LANG environment variable. */ + retval = getenv ("LANG"); + if (retval == NULL || retval[0] == '\0') + /* We use C as the default domain. POSIX says this is + implementation defined. */ + retval = "C"; + } + } +# endif + + return retval; + +#else /* HAVE_W32_SYSTEM */ + + /* Return an XPG style locale name language[_territory][@modifier]. + Don't even bother determining the codeset; it's not useful in this + context, because message catalogs are not specific to a single + codeset. */ + + LCID lcid; + LANGID langid; + int primary, sub; + + /* Let the user override the system settings through environment + variables, as on POSIX systems. */ + retval = getenv ("LC_ALL"); + if (retval != NULL && retval[0] != '\0') + return retval; + retval = getenv (categoryname); + if (retval != NULL && retval[0] != '\0') + return retval; + retval = getenv ("LANG"); + if (retval != NULL && retval[0] != '\0') + return retval; + + /* Use native Win32 API locale ID. */ + lcid = GetThreadLocale (); + + /* Strip off the sorting rules, keep only the language part. */ + langid = LANGIDFROMLCID (lcid); + + /* Split into language and territory part. */ + primary = PRIMARYLANGID (langid); + sub = SUBLANGID (langid); + + /* Dispatch on language. + See also http://www.unicode.org/unicode/onlinedat/languages.html . + For details about languages, see http://www.ethnologue.com/ . */ + switch (primary) + { + case LANG_AFRIKAANS: return "af_ZA"; + case LANG_ALBANIAN: return "sq_AL"; + case LANG_AMHARIC: return "am_ET"; + case LANG_ARABIC: + switch (sub) + { + case SUBLANG_ARABIC_SAUDI_ARABIA: return "ar_SA"; + case SUBLANG_ARABIC_IRAQ: return "ar_IQ"; + case SUBLANG_ARABIC_EGYPT: return "ar_EG"; + case SUBLANG_ARABIC_LIBYA: return "ar_LY"; + case SUBLANG_ARABIC_ALGERIA: return "ar_DZ"; + case SUBLANG_ARABIC_MOROCCO: return "ar_MA"; + case SUBLANG_ARABIC_TUNISIA: return "ar_TN"; + case SUBLANG_ARABIC_OMAN: return "ar_OM"; + case SUBLANG_ARABIC_YEMEN: return "ar_YE"; + case SUBLANG_ARABIC_SYRIA: return "ar_SY"; + case SUBLANG_ARABIC_JORDAN: return "ar_JO"; + case SUBLANG_ARABIC_LEBANON: return "ar_LB"; + case SUBLANG_ARABIC_KUWAIT: return "ar_KW"; + case SUBLANG_ARABIC_UAE: return "ar_AE"; + case SUBLANG_ARABIC_BAHRAIN: return "ar_BH"; + case SUBLANG_ARABIC_QATAR: return "ar_QA"; + } + return "ar"; + case LANG_ARMENIAN: return "hy_AM"; + case LANG_ASSAMESE: return "as_IN"; + case LANG_AZERI: + switch (sub) + { + /* FIXME: Adjust this when Azerbaijani locales appear on Unix. */ + case SUBLANG_AZERI_LATIN: return "az_AZ@latin"; + case SUBLANG_AZERI_CYRILLIC: return "az_AZ@cyrillic"; + } + return "az"; + case LANG_BASQUE: + return "eu"; /* Ambiguous: could be "eu_ES" or "eu_FR". */ + case LANG_BELARUSIAN: return "be_BY"; + case LANG_BENGALI: + switch (sub) + { + case SUBLANG_BENGALI_INDIA: return "bn_IN"; + case SUBLANG_BENGALI_BANGLADESH: return "bn_BD"; + } + return "bn"; + case LANG_BULGARIAN: return "bg_BG"; + case LANG_BURMESE: return "my_MM"; + case LANG_CAMBODIAN: return "km_KH"; + case LANG_CATALAN: return "ca_ES"; + case LANG_CHEROKEE: return "chr_US"; + case LANG_CHINESE: + switch (sub) + { + case SUBLANG_CHINESE_TRADITIONAL: return "zh_TW"; + case SUBLANG_CHINESE_SIMPLIFIED: return "zh_CN"; + case SUBLANG_CHINESE_HONGKONG: return "zh_HK"; + case SUBLANG_CHINESE_SINGAPORE: return "zh_SG"; + case SUBLANG_CHINESE_MACAU: return "zh_MO"; + } + return "zh"; + case LANG_CROATIAN: /* LANG_CROATIAN == LANG_SERBIAN + * What used to be called Serbo-Croatian + * should really now be two separate + * languages because of political reasons. + * (Says tml, who knows nothing about Serbian + * or Croatian.) + * (I can feel those flames coming already.) + */ + switch (sub) + { + case SUBLANG_DEFAULT: return "hr_HR"; + case SUBLANG_SERBIAN_LATIN: return "sr_CS"; + case SUBLANG_SERBIAN_CYRILLIC: return "sr_CS@cyrillic"; + } + return "hr"; + case LANG_CZECH: return "cs_CZ"; + case LANG_DANISH: return "da_DK"; + case LANG_DIVEHI: return "div_MV"; + case LANG_DUTCH: + switch (sub) + { + case SUBLANG_DUTCH: return "nl_NL"; + case SUBLANG_DUTCH_BELGIAN: /* FLEMISH, VLAAMS */ return "nl_BE"; + } + return "nl"; + case LANG_EDO: return "bin_NG"; + case LANG_ENGLISH: + switch (sub) + { + /* SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. Heh. I thought + * English was the language spoken in England. + * Oh well. + */ + case SUBLANG_ENGLISH_US: return "en_US"; + case SUBLANG_ENGLISH_UK: return "en_GB"; + case SUBLANG_ENGLISH_AUS: return "en_AU"; + case SUBLANG_ENGLISH_CAN: return "en_CA"; + case SUBLANG_ENGLISH_NZ: return "en_NZ"; + case SUBLANG_ENGLISH_EIRE: return "en_IE"; + case SUBLANG_ENGLISH_SOUTH_AFRICA: return "en_ZA"; + case SUBLANG_ENGLISH_JAMAICA: return "en_JM"; + case SUBLANG_ENGLISH_CARIBBEAN: return "en_GD"; /* Grenada? */ + case SUBLANG_ENGLISH_BELIZE: return "en_BZ"; + case SUBLANG_ENGLISH_TRINIDAD: return "en_TT"; + case SUBLANG_ENGLISH_ZIMBABWE: return "en_ZW"; + case SUBLANG_ENGLISH_PHILIPPINES: return "en_PH"; + case SUBLANG_ENGLISH_INDONESIA: return "en_ID"; + case SUBLANG_ENGLISH_HONGKONG: return "en_HK"; + case SUBLANG_ENGLISH_INDIA: return "en_IN"; + case SUBLANG_ENGLISH_MALAYSIA: return "en_MY"; + case SUBLANG_ENGLISH_SINGAPORE: return "en_SG"; + } + return "en"; + case LANG_ESTONIAN: return "et_EE"; + case LANG_FAEROESE: return "fo_FO"; + case LANG_FARSI: return "fa_IR"; + case LANG_FINNISH: return "fi_FI"; + case LANG_FRENCH: + switch (sub) + { + case SUBLANG_FRENCH: return "fr_FR"; + case SUBLANG_FRENCH_BELGIAN: /* WALLOON */ return "fr_BE"; + case SUBLANG_FRENCH_CANADIAN: return "fr_CA"; + case SUBLANG_FRENCH_SWISS: return "fr_CH"; + case SUBLANG_FRENCH_LUXEMBOURG: return "fr_LU"; + case SUBLANG_FRENCH_MONACO: return "fr_MC"; + case SUBLANG_FRENCH_WESTINDIES: return "fr"; /* Caribbean? */ + case SUBLANG_FRENCH_REUNION: return "fr_RE"; + case SUBLANG_FRENCH_CONGO: return "fr_CG"; + case SUBLANG_FRENCH_SENEGAL: return "fr_SN"; + case SUBLANG_FRENCH_CAMEROON: return "fr_CM"; + case SUBLANG_FRENCH_COTEDIVOIRE: return "fr_CI"; + case SUBLANG_FRENCH_MALI: return "fr_ML"; + case SUBLANG_FRENCH_MOROCCO: return "fr_MA"; + case SUBLANG_FRENCH_HAITI: return "fr_HT"; + } + return "fr"; + case LANG_FRISIAN: return "fy_NL"; + case LANG_FULFULDE: return "ful_NG"; + case LANG_GAELIC: + switch (sub) + { + case 0x01: /* SCOTTISH */ return "gd_GB"; + case 0x02: /* IRISH */ return "ga_IE"; + } + return "C"; + case LANG_GALICIAN: return "gl_ES"; + case LANG_GEORGIAN: return "ka_GE"; + case LANG_GERMAN: + switch (sub) + { + case SUBLANG_GERMAN: return "de_DE"; + case SUBLANG_GERMAN_SWISS: return "de_CH"; + case SUBLANG_GERMAN_AUSTRIAN: return "de_AT"; + case SUBLANG_GERMAN_LUXEMBOURG: return "de_LU"; + case SUBLANG_GERMAN_LIECHTENSTEIN: return "de_LI"; + } + return "de"; + case LANG_GREEK: return "el_GR"; + case LANG_GUARANI: return "gn_PY"; + case LANG_GUJARATI: return "gu_IN"; + case LANG_HAUSA: return "ha_NG"; + case LANG_HAWAIIAN: + /* FIXME: Do they mean Hawaiian ("haw_US", 1000 speakers) + or Hawaii Creole English ("cpe_US", 600000 speakers)? */ + return "cpe_US"; + case LANG_HEBREW: return "he_IL"; + case LANG_HINDI: return "hi_IN"; + case LANG_HUNGARIAN: return "hu_HU"; + case LANG_IBIBIO: return "nic_NG"; + case LANG_ICELANDIC: return "is_IS"; + case LANG_IGBO: return "ibo_NG"; + case LANG_INDONESIAN: return "id_ID"; + case LANG_INUKTITUT: return "iu_CA"; + case LANG_ITALIAN: + switch (sub) + { + case SUBLANG_ITALIAN: return "it_IT"; + case SUBLANG_ITALIAN_SWISS: return "it_CH"; + } + return "it"; + case LANG_JAPANESE: return "ja_JP"; + case LANG_KANNADA: return "kn_IN"; + case LANG_KANURI: return "kau_NG"; + case LANG_KASHMIRI: + switch (sub) + { + case SUBLANG_DEFAULT: return "ks_PK"; + case SUBLANG_KASHMIRI_INDIA: return "ks_IN"; + } + return "ks"; + case LANG_KAZAK: return "kk_KZ"; + case LANG_KONKANI: + /* FIXME: Adjust this when such locales appear on Unix. */ + return "kok_IN"; + case LANG_KOREAN: return "ko_KR"; + case LANG_KYRGYZ: return "ky_KG"; + case LANG_LAO: return "lo_LA"; + case LANG_LATIN: return "la_VA"; + case LANG_LATVIAN: return "lv_LV"; + case LANG_LITHUANIAN: return "lt_LT"; + case LANG_MACEDONIAN: return "mk_MK"; + case LANG_MALAY: + switch (sub) + { + case SUBLANG_MALAY_MALAYSIA: return "ms_MY"; + case SUBLANG_MALAY_BRUNEI_DARUSSALAM: return "ms_BN"; + } + return "ms"; + case LANG_MALAYALAM: return "ml_IN"; + case LANG_MALTESE: return "mt_MT"; + case LANG_MANIPURI: + /* FIXME: Adjust this when such locales appear on Unix. */ + return "mni_IN"; + case LANG_MARATHI: return "mr_IN"; + case LANG_MONGOLIAN: + return "mn"; /* Ambiguous: could be "mn_CN" or "mn_MN". */ + case LANG_NEPALI: + switch (sub) + { + case SUBLANG_DEFAULT: return "ne_NP"; + case SUBLANG_NEPALI_INDIA: return "ne_IN"; + } + return "ne"; + case LANG_NORWEGIAN: + switch (sub) + { + case SUBLANG_NORWEGIAN_BOKMAL: return "no_NO"; + case SUBLANG_NORWEGIAN_NYNORSK: return "nn_NO"; + } + return "no"; + case LANG_ORIYA: return "or_IN"; + case LANG_OROMO: return "om_ET"; + case LANG_PAPIAMENTU: return "pap_AN"; + case LANG_PASHTO: + return "ps"; /* Ambiguous: could be "ps_PK" or "ps_AF". */ + case LANG_POLISH: return "pl_PL"; + case LANG_PORTUGUESE: + switch (sub) + { + case SUBLANG_PORTUGUESE: return "pt_PT"; + /* Hmm. SUBLANG_PORTUGUESE_BRAZILIAN == SUBLANG_DEFAULT. + Same phenomenon as SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. */ + case SUBLANG_PORTUGUESE_BRAZILIAN: return "pt_BR"; + } + return "pt"; + case LANG_PUNJABI: + switch (sub) + { + case SUBLANG_PUNJABI_INDIA: return "pa_IN"; /* Gurmukhi script */ + } + return "pa"; + case LANG_RHAETO_ROMANCE: return "rm_CH"; + case LANG_ROMANIAN: + switch (sub) + { + case SUBLANG_ROMANIAN_ROMANIA: return "ro_RO"; + } + return "ro"; + case LANG_RUSSIAN: + return "ru"; /* Ambiguous: could be "ru_RU" or "ru_UA" or "ru_MD". */ + case LANG_SAAMI: /* actually Northern Sami */ return "se_NO"; + case LANG_SANSKRIT: return "sa_IN"; + case LANG_SINDHI: + switch (sub) + { + case SUBLANG_SINDHI_INDIA: return "sd_IN"; + case SUBLANG_SINDHI_PAKISTAN: return "sd_PK"; + } + return "sd"; + case LANG_SINHALESE: return "si_LK"; + case LANG_SLOVAK: return "sk_SK"; + case LANG_SLOVENIAN: return "sl_SI"; + case LANG_SOMALI: return "so_SO"; + case LANG_SORBIAN: + /* FIXME: Adjust this when such locales appear on Unix. */ + return "wen_DE"; + case LANG_SPANISH: + switch (sub) + { + case SUBLANG_SPANISH: return "es_ES"; + case SUBLANG_SPANISH_MEXICAN: return "es_MX"; + case SUBLANG_SPANISH_MODERN: + return "es_ES@modern"; /* not seen on Unix */ + case SUBLANG_SPANISH_GUATEMALA: return "es_GT"; + case SUBLANG_SPANISH_COSTA_RICA: return "es_CR"; + case SUBLANG_SPANISH_PANAMA: return "es_PA"; + case SUBLANG_SPANISH_DOMINICAN_REPUBLIC: return "es_DO"; + case SUBLANG_SPANISH_VENEZUELA: return "es_VE"; + case SUBLANG_SPANISH_COLOMBIA: return "es_CO"; + case SUBLANG_SPANISH_PERU: return "es_PE"; + case SUBLANG_SPANISH_ARGENTINA: return "es_AR"; + case SUBLANG_SPANISH_ECUADOR: return "es_EC"; + case SUBLANG_SPANISH_CHILE: return "es_CL"; + case SUBLANG_SPANISH_URUGUAY: return "es_UY"; + case SUBLANG_SPANISH_PARAGUAY: return "es_PY"; + case SUBLANG_SPANISH_BOLIVIA: return "es_BO"; + case SUBLANG_SPANISH_EL_SALVADOR: return "es_SV"; + case SUBLANG_SPANISH_HONDURAS: return "es_HN"; + case SUBLANG_SPANISH_NICARAGUA: return "es_NI"; + case SUBLANG_SPANISH_PUERTO_RICO: return "es_PR"; + } + return "es"; + case LANG_SUTU: return "bnt_TZ"; /* or "st_LS" or "nso_ZA"? */ + case LANG_SWAHILI: return "sw_KE"; + case LANG_SWEDISH: + switch (sub) + { + case SUBLANG_DEFAULT: return "sv_SE"; + case SUBLANG_SWEDISH_FINLAND: return "sv_FI"; + } + return "sv"; + case LANG_SYRIAC: return "syr_TR"; /* An extinct language. */ + case LANG_TAGALOG: return "tl_PH"; + case LANG_TAJIK: return "tg_TJ"; + case LANG_TAMAZIGHT: + switch (sub) + { + /* FIXME: Adjust this when Tamazight locales appear on Unix. */ + case SUBLANG_TAMAZIGHT_ARABIC: return "ber_MA@arabic"; + case SUBLANG_TAMAZIGHT_LATIN: return "ber_MA@latin"; + } + return "ber_MA"; + case LANG_TAMIL: + return "ta"; /* Ambiguous: could be "ta_IN" or "ta_LK" or "ta_SG". */ + case LANG_TATAR: return "tt_RU"; + case LANG_TELUGU: return "te_IN"; + case LANG_THAI: return "th_TH"; + case LANG_TIBETAN: return "bo_CN"; + case LANG_TIGRINYA: + switch (sub) + { + case SUBLANG_TIGRINYA_ETHIOPIA: return "ti_ET"; + case SUBLANG_TIGRINYA_ERITREA: return "ti_ER"; + } + return "ti"; + case LANG_TSONGA: return "ts_ZA"; + case LANG_TSWANA: return "tn_BW"; + case LANG_TURKISH: return "tr_TR"; + case LANG_TURKMEN: return "tk_TM"; + case LANG_UKRAINIAN: return "uk_UA"; + case LANG_URDU: + switch (sub) + { + case SUBLANG_URDU_PAKISTAN: return "ur_PK"; + case SUBLANG_URDU_INDIA: return "ur_IN"; + } + return "ur"; + case LANG_UZBEK: + switch (sub) + { + case SUBLANG_UZBEK_LATIN: return "uz_UZ"; + case SUBLANG_UZBEK_CYRILLIC: return "uz_UZ@cyrillic"; + } + return "uz"; + case LANG_VENDA: + /* FIXME: It's not clear whether Venda has the ISO 639-2 two-letter code + "ve" or not. + http://www.loc.gov/standards/iso639-2/englangn.html has it, but + http://lcweb.loc.gov/standards/iso639-2/codechanges.html doesn't, */ + return "ven_ZA"; /* or "ve_ZA"? */ + case LANG_VIETNAMESE: return "vi_VN"; + case LANG_WELSH: return "cy_GB"; + case LANG_XHOSA: return "xh_ZA"; + case LANG_YI: return "sit_CN"; + case LANG_YIDDISH: return "yi_IL"; + case LANG_YORUBA: return "yo_NG"; + case LANG_ZULU: return "zu_ZA"; + default: return "C"; + } + +#endif /* HAVE_W32_SYSTEM */ +} + + + +/* Return the locale used for translatable messages. The standard C + and POSIX are locale names are mapped to an empty string. If a + locale can't be found an empty string will be returned. */ +const char * +gnupg_messages_locale_name (void) +{ + const char *s; + + s = do_nl_locale_name (LC_MESSAGES, "LC_MESSAGES"); + if (!s) + s = ""; + else if (!strcmp (s, "C") || !strcmp (s, "POSIX")) + s = ""; + + return s; +} + diff --git a/common/membuf.h b/common/membuf.h index cb261bd32..75b506d5d 100644 --- a/common/membuf.h +++ b/common/membuf.h @@ -33,7 +33,9 @@ struct private_membuf_s typedef struct private_membuf_s membuf_t; /* Return the current length of the membuf. */ -#define get_membuf_len(a) ((a)->len) +#define get_membuf_len(a) ((a)->len) +#define is_membuf_ready(a) ((a)->buf || (a)->out_of_core) +#define MEMBUF_ZERO { 0, 0, NULL, 0} void init_membuf (membuf_t *mb, int initiallen); void init_membuf_secure (membuf_t *mb, int initiallen); diff --git a/common/t-helpfile.c b/common/t-helpfile.c new file mode 100644 index 000000000..e4a1c2711 --- /dev/null +++ b/common/t-helpfile.c @@ -0,0 +1,66 @@ +/* t-helpfile.c - Module test for helpfile.c + * Copyright (C) 2007 Free Software Foundation, Inc. + * + * This file is part of GnuPG. + * + * GnuPG is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * GnuPG is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see . + */ + +#include +#include +#include + +#include "util.h" + +/* #define pass() do { ; } while(0) */ +/* #define fail(a) do { fprintf (stderr, "%s:%d: test %d failed\n",\ */ +/* __FILE__,__LINE__, (a)); \ */ +/* errcount++; \ */ +/* } while(0) */ + +static int verbose; +static int errcount; + + + +int +main (int argc, char **argv) +{ + char *result; + + if (argc) + { argc--; argv++; } + i18n_init (); + if (argc && !strcmp (argv[0], "--verbose")) + { + verbose = 1; + argc--; argv++; + } + + result = gnupg_get_help_string (argc? argv[0]:NULL); + if (!result) + { + fprintf (stderr, + "Error: nothing found for `%s'\n", argc?argv[0]:"(null)"); + errcount++; + } + else + { + printf ("key `%s' result=`%s'\n", argc?argv[0]:"(null)", result); + xfree (result); + } + + return !!errcount; +} + diff --git a/common/util.h b/common/util.h index f35850904..cfc91e72b 100644 --- a/common/util.h +++ b/common/util.h @@ -199,6 +199,12 @@ const char *gnupg_module_name (int which); /*-- gpgrlhelp.c --*/ void gnupg_rl_initialize (void); +/*-- helpfile.c --*/ +char *gnupg_get_help_string (const char *key); + +/*-- localename.c --*/ +const char *gnupg_messages_locale_name (void); + /*-- miscellaneous.c --*/ /* This function is called at startup to tell libgcrypt to use our own diff --git a/configure.ac b/configure.ac index f9ec1597a..13714dace 100644 --- a/configure.ac +++ b/configure.ac @@ -903,6 +903,10 @@ fi # We use HAVE_LANGINFO_CODESET in a couple of places. AM_LANGINFO_CODESET +# Checks required for our use locales +gt_LC_MESSAGES + + # # SELinux support # @@ -1024,7 +1028,6 @@ gl_INIT # GNUPG_FUNC_MKDIR_TAKES_ONE_ARG - # # Sanity check regex. Tests adapted from mutt. # diff --git a/doc/ChangeLog b/doc/ChangeLog index 6fbde7c95..a60f7a2c8 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2007-12-04 Werner Koch + + * help.txt, help.de.txt: New online help files. + * Makefile.am (dist_pkgdata_DATA): Add them. + 2007-11-19 Werner Koch * gpg.texi (GPG Configuration Options): English Grammar fix. diff --git a/doc/Makefile.am b/doc/Makefile.am index 1c5dd409b..9a6e91469 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -33,7 +33,8 @@ BUILT_SOURCES = gnupg-card-architecture.eps gnupg-card-architecture.png \ info_TEXINFOS = gnupg.texi -dist_pkgdata_DATA = qualified.txt FAQ faq.html com-certs.pem +dist_pkgdata_DATA = qualified.txt FAQ faq.html com-certs.pem \ + help.txt help.de.txt gnupg_TEXINFOS = \ gpg.texi gpgsm.texi gpg-agent.texi scdaemon.texi instguide.texi \ diff --git a/doc/help.de.txt b/doc/help.de.txt new file mode 100644 index 000000000..478c3a146 --- /dev/null +++ b/doc/help.de.txt @@ -0,0 +1,41 @@ +# help.de.txt - German GnuPG online help +# Copyright (C) 2007 Free Software Foundation, Inc. +# +# This file is part of GnuPG. +# +# GnuPG is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# GnuPG is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . + + +# Die Datei help.txt beschreibt das verwendete Format. +# Diese Datei muß UTF-8 kodiert sein. + + +.#pinentry.qualitybar.tooltip +# Dies ist lediglich eine kommentiertes Beispiel. Es ist am sinnvolssten +# einen individuellen Text in /etc/gnupg/help.de.txt zu erstellen. +Die Qualität der Passphrase, die Sie oben eingegeben haben. Bitte +fragen sie Ihren Systembeauftragten nach den Kriterien für die Messung +der Qualität. +. + + + + + + + +# Local variables: +# mode: fundamental +# coding: utf-8 +# End: diff --git a/doc/help.txt b/doc/help.txt new file mode 100644 index 000000000..70f3ad6d2 --- /dev/null +++ b/doc/help.txt @@ -0,0 +1,68 @@ +# help.txt - English GnuPG online help +# Copyright (C) 2007 Free Software Foundation, Inc. +# +# This file is part of GnuPG. +# +# GnuPG is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# GnuPG is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . + + +# Note that this help file needs to be UTF-8 encoded. When looking +# for a help item, GnuPG scans the help files in the following order +# (assuming a GNU or Unix system): +# +# /etc/gnupg/help.LL_TT.txt +# /etc/gnupg/help.LL.txt +# /etc/gnupg/help.txt +# /usr/share/gnupg/help.LL_TT.txt +# /usr/share/gnupg/help.LL.txt +# /usr/share/gnupg/help.txt +# +# Here LL_TT denotes the full name of the current locale with the +# territory (.e.g. "de_DE"), LL denotes just the locale name +# (e.g. "de"). The first matching item is returned. To put a dot or +# a hash mark at the beginning of a help text line, it needs to be +# prefixed with ". ". A single dot may be used to terminated ahelp +# entry. + +.#pinentry.qualitybar.tooltip +# [remove the hash mark from the key to enable this text] +# This entry is just an example on how to customize the tooltip shown +# when hovering over the quality bar of the pinentry. We don't +# install this text so that the hardcoded translation takes +# precedence. An administrator should write up a short help to tell +# the users about the configured passphrase constraints and save that +# to /etc/gnupg/help.txt. +This bar indicates the quality of the passphrase entered above. + +As long as the bar is shown in red, GnuPG considers the passphrase too +weak to accept. Please ask your administrator for details about the +configured passphrase constraints. +. + + + + + + + + + + + + + +# Local variables: +# mode: fundamental +# coding: utf-8 +# End: diff --git a/g10/ChangeLog b/g10/ChangeLog index 211cff97f..dafcd50f2 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,5 +1,8 @@ 2007-12-03 Werner Koch + * keygen.c (ask_key_flags): Add a translation remark and implement + a workaround. + * gpg.c (reopen_std): Moved to ../common and renamed to gnupg_reopen_std. diff --git a/g10/keygen.c b/g10/keygen.c index 20377a753..48a7fa271 100644 --- a/g10/keygen.c +++ b/g10/keygen.c @@ -1533,13 +1533,27 @@ print_key_flags(int flags) static unsigned int ask_key_flags(int algo,int subkey) { + /* TRANSLATORS: Please use only plain ASCII characters for the + translation. If this is not possible use single digits. The + string needs to 8 bytes long. Here is a description of the + functions: + + s = Toggle signing capability + e = Toggle encryption capability + a = Toggle authentication capability + q = Finish + */ const char *togglers=_("SsEeAaQq"); char *answer=NULL; unsigned int current=0; unsigned int possible=openpgp_pk_algo_usage(algo); - if(strlen(togglers)!=8) - BUG(); + if ( strlen(togglers) != 7 ) + { + tty_printf ("NOTE: Bad translation at %s:%d. " + "Please report.\n", __FILE__, __LINE__); + togglers = "11223300"; + } /* Only primary keys may certify. */ if(subkey) diff --git a/po/be.po b/po/be.po index 026428f2e..33313af69 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2003-10-30 16:35+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -91,7 +91,7 @@ msgstr "дрэнны пароль" msgid "ssh keys greater than %d bits are not supported\n" msgstr "" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -100,12 +100,12 @@ msgstr "" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "" @@ -285,7 +285,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -370,162 +370,162 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Калі ласка, паведамляйце пра памылкі на .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Выкарыстаньне: gpg [выбары] [файлы] (-h для даведкі)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "запіс у stdout\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: тэчка створана\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, c-format msgid "%s %s stopped\n" msgstr "" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -772,17 +772,17 @@ msgstr "скасавана карыстальнікам\n" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "" @@ -1252,7 +1252,7 @@ msgstr "Нерэчаісны загад (паспрабуйце \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "немагчыма адкрыць \"%s\"\n" @@ -1543,7 +1543,7 @@ msgstr "%s: немагчыма стварыць тэчку: %s\n" msgid "key %s: secret key without public key - skipped\n" msgstr "" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1551,132 +1551,132 @@ msgstr "" "@Загады:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[файл]|зрабіць подпіс" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[файл]|зрабіць чысты тэкставы подпіс" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "зрабіць адчэплены подпіс" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "зашыфраваць даньні" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "шыфраваньне толькі сымэтрычнымі шыфрамі" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "разшыфраваць даньні (дапомна)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "праверыць подпіс" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "паказаць сьпіс ключоў" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "паказаць сьпіс ключоў і подпісаў" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "праверыць подпісы ключа" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "паказаць ключы й адбіткі пальцаў" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "паказаць сакрэтныя ключы" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "стварыць новую пару ключоў" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "выдаліць ключы са зьвязку грамадскіх ключоў" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "выдаліць ключы са зьвязку сакрэтных ключоў" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "падпісаць ключ" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "падпісаць ключ толькі мясцова" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "падпісаць ці рэдагаваць ключ" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "экспарт ключоў" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "экспартаваць ключы на паслужнік ключоў" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "імпартаваць ключы з паслужніка ключоў" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "абнавіць усе ключы з паслужніка ключоў" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "імпартаваць/аб'яднаць ключы" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1687,47 +1687,47 @@ msgstr "" "Выбары:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|ІМЯ| зашыфраваць для вылучанай асобы" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 msgid "|FILE|write output to FILE" msgstr "" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "не рабіць ніякіх зьменаў" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "пытацца перад перазапісам" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1735,7 +1735,7 @@ msgstr "" "@\n" "(Глядзіце man старонку, для больш поўнага апісаньня ўсіх загадаў і выбараў)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1755,15 +1755,15 @@ msgstr "" " --list-keys [назвы] паказаць ключы\n" " --fingerprint [назвы] паказаць адбіткі пальцаў\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Калі ласка, паведамляйце пра памылкі на .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Выкарыстаньне: gpg [выбары] [файлы] (-h для даведкі)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1773,7 +1773,7 @@ msgstr "" "sign, check, encrypt ці decrypt\n" "Дапомнае дзеяньне залежыць ад уваходных даньняў\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1781,551 +1781,551 @@ msgstr "" "\n" "Альгарытмы, якія падтрымліваюцца:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "" -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "" -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "" -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "" -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "Выкарыстаньне: gpg [выбары] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "несумяшчальныя загады\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "невядомая вэрсыя" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "недапушчальныя выбары імпартаваньня\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s - гэта недапушчальнае мноства знакаў\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недапушчальныя выбары экспартаваньня\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не дазваляецца разам з %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "запіс у stdout\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "недапушчальныя дапомныя перавагі\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ня мае сэнсу разам з %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [назва_файла]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [назва_файла]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [назва_файла]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [назва_файла]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [назва_файла]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [назва_файла]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [назва_файла]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [назва_файла]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [загады]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[назва_файла]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "" @@ -7216,21 +7216,21 @@ msgstr "%s: немагчыма стварыць тэчку: %s\n" msgid "unknown validation model `%s'\n" msgstr "невядомая вэрсыя" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index 7e56fb4eb..c5ca06d72 100644 --- a/po/ca.po +++ b/po/ca.po @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2005-02-04 02:04+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -113,7 +113,7 @@ msgstr "la contrasenya és errònia" msgid "ssh keys greater than %d bits are not supported\n" msgstr "l'algoritme de protecció %d%s no està suportat\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -122,12 +122,12 @@ msgstr "no s'ha pogut crear «%s»: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "no s'ha pogut obrir «%s»: %s\n" @@ -311,7 +311,7 @@ msgid "run in daemon mode (background)" msgstr "" # Un dels dos és en la llista d'opcions amb --help. Urgh. jm -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -400,164 +400,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Si us plau, informeu sobre els errors a .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Forma d'ús: gpg [opcions] [fitxers] (-h per a veure l'ajuda)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existeix el fitxer d'opcions predeterminades «%s»\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fitxer d'opcions «%s»: %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "s'estan llegint opcions de «%s»\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "error en crear «%s»: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no es pot crear el directori «%s»: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Certificat de revocació vàlid" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent no està disponible en aquesta sessió\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "error en crear «%s»: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error mentre s'enviava a «%s»: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "ha fallat l'actualització: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: s'ha creat el directori\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de dades de confiança: ha fallat la lectura (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: no s'ha pogut crear el directori: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "ha fallat l'actualització de la clau secreta: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claus es descarta\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent no està disponible en aquesta sessió\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "la variable d'entorn GPG_AGENT_INFO és malformada\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -811,18 +811,18 @@ msgid "problem with the agent\n" msgstr "hi ha un problema amb l'agent: l'agent ha tornat 0x%lx\n" # bolcats de memòria? ivb -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "no s'han pogut desactivar els bolcats de memòria: %s\n" # Indi. ivb -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" @@ -1313,7 +1313,7 @@ msgstr "L'ordre no és vàlida (proveu «help»)\n" msgid "--output doesn't work for this command\n" msgstr "--output no funciona per a aquesta ordre\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "no s'ha pogut obrir «%s»\n" @@ -1634,7 +1634,7 @@ msgstr "s'usarà la clau secundària %08lX en lloc de la primària %08lX\n" msgid "key %s: secret key without public key - skipped\n" msgstr "clau %08lX: clau secreta sense clau pública - es descarta\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1642,134 +1642,134 @@ msgstr "" "@Ordres:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fitxer]|crea una signatura" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fitxer]|crea una signatura en text clar" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "crea una signatura separada" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "xifra dades" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "xifra només amb xifratge simètric" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "desxifra dades (predeterminat)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verifica una signatura" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "llista claus" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "llista claus i signatures" # «de les claus» o «de la clau»? ivb -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "comprova les signatures de la claus" # «dactilars» o «digitals»? ivb -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "llista claus i empremtes digitals" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "llista claus secretes" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "genera un nou parell de claus" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "elimina claus de l'anell públic" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "elimina claus de l'anell secret" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "signa una clau" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "signa una clau localment" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "signa o edita una clau" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "genera un certificat de revocació" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exporta claus" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exporta claus a un servidor de claus" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importa claus d'un servidor de claus" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "cerca claus en un servidor de claus" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "actualitza totes les claus des d'un servidor de claus" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importa/fon claus" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "actualitza la base de dades de confiança" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [fitxers]|imprimeix resums de missatges" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1780,48 +1780,48 @@ msgstr "" "Opcions:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "crea eixida amb armadura ascii" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOM|xifra per a NOM" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "usa aquest id per a signar o desxifrar" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|nivell de compressió N (0 no comprimeix)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "usa el mode de text canònic" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FITXER|carrega el mòdul d'extensió especificat" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "no fa cap canvi" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "pregunta abans de sobreescriure" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1832,7 +1832,7 @@ msgstr "" # Crec q (A)lice (orig.), (B)ob (dest.), etc. són noms usats pel Zimmerman # en el manual original de PGP. A, B, C... ivb # En efecte. Idem per a Mallory més endavant. Els deixe com a l'original. jm -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1852,15 +1852,15 @@ msgstr "" " --list-keys [noms] mostra claus\n" " --fingerprint [noms] mostra empremtes digitals\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Si us plau, informeu sobre els errors a .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Forma d'ús: gpg [opcions] [fitxers] (-h per a veure l'ajuda)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1875,7 +1875,7 @@ msgstr "" # Precissament acabem de parlar d'«implementat a la llista del GNOME # i s'ha dit que és erroni, igual que «suportat» :) Les alternatives # encara no m'agraden massa... jm -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1883,570 +1883,570 @@ msgstr "" "\n" "Algoritmes suportats:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Clau pública: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Xifratge: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Dispersió: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compressió: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "forma d'ús: gpg [opcions] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "les ordres entren en conflicte\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no s'ha trobat cap signe = a la definició de grup «%s»\n" # Indi. ivb -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" # Indi. ivb -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" # Indi. ivb -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "s'ha creat el nou fitxer d'opcions «%s»\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostra en quin anell de claus està una clau llistada" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: es descarta el fitxer d'opcions predeterminades antic «%s»\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no és per a ús normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no s'ha pogut analitzar sintàcticament la URI del servidor de claus\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "no s'ha pogut fixar l'exec-path a %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "AVÍS: el programa podria crear un fitxer core!\n" # FIXME: preferència? jm # Ho discutírem en la llista, segur. Deu ser als arxius. ivb -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVÍS: %s té preferència sobre %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no és permés amb %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no té sentit amb %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "s'està escrivint la clau secreta a «%s»\n" # clares -> en clar? ivb -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "només podeu fer signatures separades o en clar en el mode --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "no podeu signar i xifrar al mateix temps en el mode --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "heu d'utilitzar fitxers (i no un conducte) mentre treballeu amb --pgp2 " "habilitat.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "xifrar un missatge en mode --pgp2 requereix el xifratge IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "l'algorisme de resum seleccionat no és vàlid\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algorisme de resum de certificació seleccionat no és vàlid\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ha de ser major que 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ha de ser major que 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth ha d'estar en el rang 1 a 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-check-level és invàlid; ha de ser 0, 1, 2 o 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "default-check-level és invàlid; ha de ser 0, 1, 2 o 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el mode S2K simple (0) no és gens recomanable\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "el mode S2K és invàlid; ha de ser 0, 1 o 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "les preferències per defecte són invàlides\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "les preferències personals de xifrat són invàlides\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "les preferències personals de digest són invàlides\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "les preferències personals de compressió són invàlides\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s encara no funciona amb %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "no podeu usar l'algorisme de xifratge «%s» mentre esteu en mode %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "no podeu usar l'algorisme de resum %s mentre esteu en mode %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "no podeu usar l'algorisme de compressió %s mentre esteu en mode %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "no s'ha pogut inicialitzar la base de dades de confiança: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVÍS: s'han donat destinataris (-r) sense usar xifratge de clau pública\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nom_del_fitxer]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nom_del_fitxer]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "ha fallat el desxifratge: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nom_del_fitxer]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "no podeu usar %s mentre esteu en mode %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nom_del_fitxer]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nom_del_fitxer]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "no podeu usar %s mentre esteu en mode %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom_del_fitxer]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nom_del_fitxer]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nom_del_fitxer]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [ordres]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'enviament al servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la recepció des del servidor de claus ha fallat: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "l'exportació de la clau ha fallat: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "ha fallat la cerca al servidor de claus: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "ha fallat el refresc des del servidor de claus: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "no s'ha pogut llevar l'armadura: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "no s'ha pogut crear l'armadura: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "l'algoritme de dispersió és invàlid «%s»\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nom_del_fitxer]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Endavant, escriviu el missatge...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "la URL de política de certificació donada no és vàlida\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" @@ -7798,22 +7798,22 @@ msgstr "no s'ha pogut connectar amb «%s»: %s\n" msgid "unknown validation model `%s'\n" msgstr "el destinatari predeterminat és desconegut «%s»\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" # No em passe! ;) ivb -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "no s'ha pogut tancar «%s»: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/cs.po b/po/cs.po index 544a04a32..09f59d77c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.3.92\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-11-26 09:12+0200\n" "Last-Translator: Roman Pavlik \n" "Language-Team: Czech \n" @@ -94,7 +94,7 @@ msgstr " msgid "ssh keys greater than %d bits are not supported\n" msgstr "ochrann algoritmus %d nen podporovn\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -103,12 +103,12 @@ msgstr "nemohu vytvo #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nemohu otevt `%s': %s\n" @@ -288,7 +288,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -376,7 +376,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy @@ -385,157 +385,157 @@ msgstr "" "Chyby oznamte, prosm, na adresu .\n" "Pipomnky k pekladu .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Pouit: gpg [monosti] [soubory] (-h pro pomoc)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn soubor s monostmi `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "soubor s monostmi `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "tu monosti z `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "chyba pi vytven `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemohu vytvoit adres `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nemohu vytvoit `%s': %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent nen v tomto sezen dostupn\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "chyba pi zskn novho PINu: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba pi hledn zznamu dvryhodnosti v `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizace selhala: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisuji tajn kl do `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "adres `%s' vytvoen\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) selhal v %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "nemohu vytvoit adres `%s': %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "chyba pi ten `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizace tajnho kle selhala: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: peskoeno: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nen v tomto sezen dostupn\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "patn formt promnn prosted GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -786,18 +786,18 @@ msgstr "zru msgid "problem with the agent\n" msgstr "problm s agentem - pouvn agenta vypnuto\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nemohu vypnout vytven core soubor: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" "VAROVN: vlastnictv roziujcho modulu nen nastaveno bezpen `%s'\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "VAROVN: pstupov prva roziujcmu modulu nejsou bezpen `%s'\n" @@ -1253,7 +1253,7 @@ msgstr "Neplatn msgid "--output doesn't work for this command\n" msgstr "--output pro tento pkaz nen platn\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nelze otevt `%s'\n" @@ -1553,7 +1553,7 @@ msgstr "pou msgid "key %s: secret key without public key - skipped\n" msgstr "kl %s: tajn kl bez kle veejnho - peskoeno\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1561,131 +1561,131 @@ msgstr "" "@Pkazy:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[soubor]|vytvoit podpis" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[soubor]|vytvoit podpis v itelnm dokumentu" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "vytvoit podpis oddlen od dokumentu" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "ifrovat data" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "ifrovn pouze se symetrickou ifrou" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "deifrovat data (implicitn)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verifikovat podpis" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "vypsat seznam kl" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "vypsat seznam kl a podpis" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "vypsat a zkontrolovat podpisy kl" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "vypsat seznam kl a fingerprint" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "vypsat seznam tajnch kl" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "vytvoit nov pr kl" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "odstranit kl ze souboru veejnch kl" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "odstranit kl ze souboru tajnch kl" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "podepsat kl" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "podepsat kl lokln" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "podepsat nebo modifikovat kl" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "vytvoit revokan certifikt" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exportovat kle" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exportovat kle na server kl" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importovat kle ze serveru kl" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "vyhledat kle na serveru kl" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "aktualizovat vechny kle ze serveru kl" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importovat/slouit kle" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "vytisknout stav karty" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "zmnit data na kart" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "zmnit PIN karty" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "aktualizovat databzi dvry" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [soubory] vypi hash" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1696,52 +1696,52 @@ msgstr "" "Monosti:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "vytvo vstup zakdovan pomoc ASCII" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|JMNO|ifrovat pro JMNO" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "" "pout tento id uivatele pro podepsn\n" " nebo deifrovn" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "" "|N|nastavit rov komprimace N (0 - dn\n" " komprimace)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "pout kanonick textov md" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "tu monosti z `%s'\n" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "neprovdt dn zmny" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "vydat potvrzen ped pepsnm" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "pout chovn striktn podle OpenPGP" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "generovat zprvu komplatibiln s PGP 2.x" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1749,7 +1749,7 @@ msgstr "" "@\n" "(Pouijte manulov strnky pro kompletn seznam vech pkaz a monost)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1767,17 +1767,17 @@ msgstr "" " --list-keys [jmna] vypsat kle\n" " --fingerprint [jmna] vypsat fingerprinty \n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Chyby oznamte, prosm, na adresu .\n" "Pipomnky k pekladu .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Pouit: gpg [monosti] [soubory] (-h pro pomoc)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1787,7 +1787,7 @@ msgstr "" "podepsat, ovit, ifrovat nebo deifrovat\n" "implicitn operace zvis na vstupnch datech\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1795,83 +1795,83 @@ msgstr "" "\n" "Podporovan algoritmy:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Veejn kl: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "ifra: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Komprese: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uit: gpg [monosti]" -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "konfliktn pkazy\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no = podpis nalezen v definici skupiny `%s'\n" # g10/g10.c:1179#, c-format -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "VAROVN: vlastnictv domovskho adrese nen nastaveno bezpen `%s'\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "VAROVN: vlastnictv konfiguranho souboru nen nastaveno bezpen `%s'\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" "VAROVN: vlastnictv roziujcho modulu nen nastaveno bezpen `%s'\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" "VAROVN: pstupov prva pro domovsk adrese nejsou bezpen `%s'\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "VAROVN: pstupov prva pro konfiguran soubor nejsou bezpen `%s'\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VAROVN: pstupov prva roziujcmu modulu nejsou bezpen `%s'\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "VAROVN: vlastnictv adrese s domovkm adresem nen nastaveno " "nebezpen `%s'\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1879,21 +1879,21 @@ msgstr "" "VAROVN: vlastnictv adrese s konfiguranm souborem nen nastaveno " "nebezpen `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "VAROVN: vlastnictv adrese s roziujcm modulem nen nastaveno " "nebezpen `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "VAROVN: pstupov prva k adresi s domovskm adresem nejsou nastavena " "bezpen `%s'\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1901,7 +1901,7 @@ msgstr "" "VAROVN: pstupov prva k adersi s konfiguranm souborem nejsou " "nastavena bezpen `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" @@ -1909,463 +1909,463 @@ msgstr "" "nastavena bezpen `%s'\n" # c-format -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "neznm konfiguran poloka \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "zadan URL preferovanho serveru kl je neplat\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "pepnout mezi vypisem seznamu tajnch a veejnch kl" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "V souboru tajnch kl chyb odpovdajc podpis\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn soubor s monostmi `%s ignorovn'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZNMKA: %s nen pro normln pouit!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nen platn znakov sada\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "nelze zpracovat URL serveru kl\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn parametr pro server kl\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "neplatn parametr pro server kl\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn parametr pro import\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "neplatn parametr pro import\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn parametr pro export\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "neplatn parametr pro export\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn parametr pro vpis\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "neplatn parametr pro vpis\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan URL preferovanho serveru kl je neplat\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nen platn doba expirace podpisu\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn parametr pro oven\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "neplatn parametr pro oven\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nelze nastavit exec-path na %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn parametr pro oven\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "VAROVN: program me vytvoit soubor core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVN: %s pepe %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nen dovoleno pouvat %s s %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedv s %s smysl!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nelze spustit s nebezpenou pamt vzhledem k %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "v mdu --pgp2 mete vytvet pouze oddlen podpisy nebo podpisy iteln " "jako text\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "v mdu --pgp2 nelze souasn ifrovat a podepisovat\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "v mdu --pgp2 muste pout soubor (ne rouru).\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "ifrovn zprv v mdu --pgp2 vyaduje algoritmus IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "vybran komprimovac algoritmus je neplatn\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "poloka completes-needed mus bt vt ne 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus bt vt ne 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "poloka max-cert-depth mus bt v rozmez od 1 do 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "neplatn implicitn rove certifikace (default-cert-level); mus bt 0, 1, " "2 nebo 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" "neplatn minimln rove certifikace (min-cert-level); mus bt 0, 1, 2 " "nebo 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNMKA: jednoduch md S2K (0) je drazn nedoporuovn\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatn md S2K; mus bt 0, 1 nebo 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "neplatn defaultn pedvolby\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "neplatn uivatelsk pedvolby pro ifrovn\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "neplatn uivatelsk pedvolby pro hashovn\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "neplatn uivatelsk pedvolby pro komprimaci\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s dosud nen funkn s %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "pouit ifrovacho algoritmu `%s' v mdu %s dovoleno\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "pouit hashovacho algoritmu `%s' v mdu %s dovoleno\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "pouit komprimanho algoritmu `%s' v mdu %s dovoleno\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemohu inicializovat databzi dvry: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVN: specifikovn adrest (-r) bez pouit ifrovn s veejnm klem\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [jmno souboru]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [jmno souboru]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symetrick ifrovn `%s' se nepovedlo: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [jmno souboru]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [jmno souboru]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nelze pout --symmetric --encrypt s pkazem --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "nelze pout --symmetric --encrypt v mdu %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [jmno souboru]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [jmno souboru]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [jmno souboru]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nelze pout --symmetric --sign --encrypt s pkazem --s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "nelze pout --symmetric --sign --encrypt v mdu %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [jmno souboru]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [jmno souboru]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [jmno souboru]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id uivatele" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id uivatele" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uivatele [pkazy]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "odesln na keyserver se nezdailo: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "zskn dat z keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "export kle se nepodail: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "hledn na keyserveru se nezdailo: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh dat na keyserveru se nezdail: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovn z ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovn do ASCII formtu selhalo: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn hashovac algoritmus `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[jmno souboru]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Zante pst svou zprvu ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pro certifikan politiku je neplatn\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "zadan URL pro podepisovac politiku je neplatn\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan URL preferovanho serveru kl je neplat\n" @@ -7489,21 +7489,21 @@ msgstr "nemohu se p msgid "unknown validation model `%s'\n" msgstr "neznm volba `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "nemohu otevt `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/da.po b/po/da.po index d5d34af09..682186e62 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2003-12-03 16:11+0100\n" "Last-Translator: Birger Langkjer \n" "Language-Team: Danish \n" @@ -92,7 +92,7 @@ msgstr "d msgid "ssh keys greater than %d bits are not supported\n" msgstr "valgte cifferalgoritme %d er ugyldig\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, fuzzy, c-format @@ -101,12 +101,12 @@ msgstr "kan ikke oprette %s: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" @@ -288,7 +288,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -376,162 +376,162 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Rapportr venligst fejl til .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Brug: gpg [flag] [filer] (-h for hjlp)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "alternativfil`%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "lser indstillinger fra `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, fuzzy, c-format msgid "error creating `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke oprette %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "certifikatlseproblem: %s\n" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "fejl ved oprettelse af kodestning: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "signering fejlede: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: mappe oprettet\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "kan ikke bne %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fejl ved lsning af '%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: udelod: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, fuzzy, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -776,17 +776,17 @@ msgstr "" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan ikke sl core-dump fra: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "" @@ -1270,7 +1270,7 @@ msgstr "" msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke bne `%s'\n" @@ -1562,7 +1562,7 @@ msgstr "bruger sekund msgid "key %s: secret key without public key - skipped\n" msgstr "ngle %08lX: ikke en rfc2440 ngle - udeladt\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1570,136 +1570,136 @@ msgstr "" "@Kommandoer:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[filer]|opret en signatur" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[filer]|opret rentekst signatur" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "opret en separat signatur" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "kryptr data" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "kryptr kun med symmetriske cifre" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "afkryptr data (standard)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "godkend en signatur" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "vis ngler" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "vis ngler og signaturer" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "tjek nglesignaturer" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "vis ngle og fingeraftryk" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "vis hemmelige ngler" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "generr et nyt nglepar" -#: g10/gpg.c:390 +#: g10/gpg.c:387 #, fuzzy msgid "remove keys from the public keyring" msgstr "fjern ngle fra den offentlige nglering" -#: g10/gpg.c:392 +#: g10/gpg.c:389 #, fuzzy msgid "remove keys from the secret keyring" msgstr "fjern ngle fra den hemmelige nglering" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "signr en ngle" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "signr en ngle lokalt" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "signr eller redigr en ngle" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "Generr en annullrbar certifikat" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "eksportr ngler" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "eksportr ngler til en ngletjener" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importr ngler fra en ngleserver" -#: g10/gpg.c:402 +#: g10/gpg.c:399 #, fuzzy msgid "search for keys on a key server" msgstr "eksportr ngler til en ngletjener" -#: g10/gpg.c:404 +#: g10/gpg.c:401 #, fuzzy msgid "update all keys from a keyserver" msgstr "importr ngler fra en ngleserver" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importr/fusionr ngler" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "opdatr tillidsdatabasen" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [filer]|print meddelelsesresum" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1710,54 +1710,54 @@ msgstr "" "Indstillinger:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "opret ascii beskyttet uddata" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NAME|kryptr for NAME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "brug denne bruger-id til at signere eller dekryptere" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|st kompresningsniveau N (0 = slet fra)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "brug kanonisk tekstmodus" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FILE|indls udvidelsesmodul FILE" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "lav ingen ndringer" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" msgstr "" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1777,16 +1777,16 @@ msgstr "" " --list-keys [navne] vis ngler\n" " --fingerprint [navne] vis fingeraftryk\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Rapportr venligst fejl til .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Brug: gpg [flag] [filer] (-h for hjlp)" # Skal alt dette oversttes eller er det flagene? -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1796,7 +1796,7 @@ msgstr "" "sign, check, encrypt eller decrypt\n" "standard operation afhnger af inddata\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1804,570 +1804,570 @@ msgstr "" "\n" "Understttede algoritmer:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "" -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "" -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "" -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 #, fuzzy msgid "Compression: " msgstr "Kommentar: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "brug: gpg [flag] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "konfliktende kommandoer\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "ukendt standard modtager '%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "skift imellem hemmelig og offentlig ngle visning" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTITS: %s er ikke til normal brug!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "importr ngler fra en ngleserver: %s\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 #, fuzzy msgid "invalid import options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 #, fuzzy msgid "invalid export options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "ugyldig rustning" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s er ikke et gyldigt tegnst\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "ugyldig nglering" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "ADVARSEL: '%s' er en tom fil\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ikke tilladt med %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er meningsls sammen med %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "valgte resumalgoritme er ugyldig\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valgte cifferalgoritme er ugyldig\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "valgte resumalgoritme er ugyldig\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ugyldig S2K modus; skal vre 0, 1 el. 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ugyldig S2K modus; skal vre 0, 1 el. 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: simpel S2K modus (0) frardes p det skarpeste\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K modus; skal vre 0, 1 el. 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 #, fuzzy msgid "invalid default preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "vis prferencer" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s er meningsls sammen med %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "valgte cifferalgoritme er ugyldig\n" # er det klogt at overstte TrustDB? -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [filnavn (som gemmes)]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn (som krypteres)]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [filnavn (som signeres)]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn (som dekrypteres)]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key bruger-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key bruger-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key bruger-id [kommandoer]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "signering fejlede: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "pkldning af beskyttelse fejlede: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hash-algoritme `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "G til sagen og skriv meddelelsen ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "den givne politik-URL er ugyldig\n" @@ -7370,21 +7370,21 @@ msgstr "kan ikke msgid "unknown validation model `%s'\n" msgstr "ukendt standard modtager '%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "skriver til `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "kan ikke bne '%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/de.po b/po/de.po index 7ebebe1c9..aa3d4b6df 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-2.0.6\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2007-11-20 14:43+0100\n" "Last-Translator: Walter Koch \n" "Language-Team: German \n" @@ -96,7 +96,7 @@ msgstr "Passphrase" msgid "ssh keys greater than %d bits are not supported\n" msgstr "SSH Schlüssel von mehr als %d Bits werden nicht unterstützt\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -105,12 +105,12 @@ msgstr "'%s' kann nicht erzeugt werden: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "'%s' kann nicht geöffnet werden: %s\n" @@ -300,7 +300,7 @@ msgstr "Im Server Modus ausführen" msgid "run in daemon mode (background)" msgstr "Im Daemon Modus ausführen" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -383,17 +383,17 @@ msgstr "Die ssh-agent-Emulation anschalten" msgid "|FILE|write environment settings also to FILE" msgstr "|DATEI|Schreibe die Umgebungsvariabeln auf DATEI" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 msgid "Please report bugs to <" msgstr "Fehlerberichte bitte an <" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Aufruf: gpg-agent [Optionen] (-h für Hilfe)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -401,143 +401,143 @@ msgstr "" "Syntax: gpg-agent [Optionen] [Befehl [Argumente]]\n" "Verwaltung von geheimen Schlüsseln für GnuPG\n" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "ungültige Debugebene `%s' angegeben\n" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "Die Bibliothek %s ist nicht aktuell (benötige %s, habe %s)\n" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "Optionendatei '%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "Fehler beim Erstellen von `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Verzeichnis `%s' kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "Der Name des Sockets ist zu lang\n" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, c-format msgid "can't create socket: %s\n" msgstr "Socket kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "Der Name des Sockets `%s' ist zu lang\n" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "Ein gpg-agent läuft bereits - ein weiterer wird nicht gestartet\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 msgid "error getting nonce for the socket\n" msgstr "Fehler beim Ermitteln der \"Nonce\" dieses Sockets\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "Der Socket kann nicht an `%s' gebunden werden: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, c-format msgid "listen() failed: %s\n" msgstr "Der listen()-Aufruf ist fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, c-format msgid "listening on socket `%s'\n" msgstr "Es wird auf Socket `%s' gehört\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "Verzeichnis `%s' erzeugt\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat()-Aufruf für `%s' fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, c-format msgid "can't use `%s' as home directory\n" msgstr "Die Datei `%s' kann nicht als Home-Verzeichnis benutzt werden\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "Fehler beim Lesen der \"Nonce\" von FD %d: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "Handhabungsroutine 0x%lx für fd %d gestartet\n" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "Handhabungsroutine 0x%lx für den fd %d beendet\n" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "SSH-Handhabungsroutine 0x%lx für fd %d gestartet\n" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "SSH-Handhabungsroutine 0x%lx für fd %d beendet\n" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select()-Aufruf fehlgeschlagen: %s - warte 1s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, c-format msgid "%s %s stopped\n" msgstr "%s %s angehalten\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "Der gpg-agent läuft nicht für diese Session\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "fehlerhaft aufgebaute GPG_AGENT_INFO - Umgebungsvariable\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -796,17 +796,17 @@ msgstr "Vom Benutzer abgebrochen\n" msgid "problem with the agent\n" msgstr "Problem mit dem Agenten\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "core-dump-Dateierzeugung kann nicht abgeschaltet werden: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "WARNUNG: Unsichere Besitzrechte für %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "WARNUNG: Unsichere Zugriffsrechte für %s \"%s\"\n" @@ -1264,7 +1264,7 @@ msgstr "Ungültiger Befehl (versuchen Sie's mal mit \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output funktioniert nicht bei diesem Befehl\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "'%s' kann nicht geöffnet werden\n" @@ -1575,7 +1575,7 @@ msgid "key %s: secret key without public key - skipped\n" msgstr "" "Schlüssel %s: geheimer Schlüssel ohne öffentlichen Schlüssel - übersprungen\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1583,131 +1583,131 @@ msgstr "" "@Befehle:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[Datei]|Eine Unterschrift erzeugen" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[Datei]|Eine Klartextunterschrift erzeugen" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "Eine abgetrennte Unterschrift erzeugen" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "Daten verschlüsseln" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "Daten symmetrisch verschlüsseln" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "Daten entschlüsseln (Voreinstellung)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "Signatur prüfen" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "Liste der Schlüssel" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "Liste der Schlüssel und ihrer Signaturen" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "Signaturen der Schlüssel auflisten und prüfen" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "Liste der Schlüssel und ihrer \"Fingerabdrücke\"" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "Liste der geheimen Schlüssel" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "Ein neues Schlüsselpaar erzeugen" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "Schlüssel aus dem öff. Schlüsselbund entfernen" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "Schlüssel aus dem geh. Schlüsselbund entfernen" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "Schlüssel signieren" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "Schlüssel nur für diesen Rechner signieren" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "Unterschreiben oder bearbeiten eines Schl." -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "Ein Schlüsselwiderruf-Zertifikat erzeugen" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "Schlüssel exportieren" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "Schlüssel zu einem Schlü.server exportieren" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "Schlüssel von einem Schlü.server importieren" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "Schlüssel auf einem Schlü.server suchen" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "alle Schlüssel per Schlü.server aktualisieren" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "Schlüssel importieren/kombinieren" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "den Karten-Status ausgeben" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "Daten auf einer Karte ändern" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "PIN einer Karte ändern" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "Ändern der \"Trust\"-Datenbank" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [Dateien]|Message-Digests für die Dateien ausgeben" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "Im Server Modus ausführen" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1718,48 +1718,48 @@ msgstr "" "Optionen:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "Ausgabe mit ASCII-Hülle versehen" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NAME|Verschlüsseln für NAME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "Mit dieser User-ID signieren" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "Kompressionsstufe auf N setzen (0=keine)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "Textmodus benutzen" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|DATEI|Konfigurationsoptionen aus DATEI lesen" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "Keine wirklichen Änderungen durchführen" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "vor Überschreiben nachfragen" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "OpenPGP-Verhalten strikt beachten" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "PGP 2.x-kompatibele Botschaften erzeugen" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1768,7 +1768,7 @@ msgstr "" "(Auf der \"man\"-Seite ist eine vollständige Liste aller Befehle und " "Optionen)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1788,17 +1788,17 @@ msgstr "" " --list-keys [Namen] Schlüssel anzeigen\n" " --fingerprint [Namen] \"Fingerabdrücke\" anzeigen\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Berichte über Programmfehler bitte in englisch an .\n" "Sinn- oder Schreibfehler in den deutschen Texten bitte an .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Aufruf: gpg [Optionen] [Dateien] (-h für Hilfe)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1808,7 +1808,7 @@ msgstr "" "Signieren, prüfen, verschlüsseln, entschlüsseln.\n" "Die voreingestellte Operation ist abhängig von den Eingabedaten\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1816,77 +1816,77 @@ msgstr "" "\n" "Unterstützte Verfahren:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Öff.Schlüssel: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Verschlü.: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Komprimierung: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "Aufruf: gpg [Optionen] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "Widersprüchliche Befehle\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "Kein '='-Zeichen in der Gruppendefinition gefunden `%s'\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis des Home-Verzeichnis `%s'\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis der Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis auf die Erweiterung `%s'\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte des Home-Verzeichnis `%s'\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte der Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte auf die Erweiterung `%s'\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses für Home-" "Verzeichnis `%s'\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1894,20 +1894,20 @@ msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses der " "Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses des Home-" "Verzeichnisses `%s'\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1915,475 +1915,475 @@ msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses der " "Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses auf " "Erweiterung `%s'\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "Unbekanntes Konfigurationselement `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "Anzeigen der Foto-ID in den Schlüssellisten" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "Zeige Richtlinien-URL während der Unterschriftenlisten" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "Alle Notationen mit den Signaturen anlisten" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "Zeige IETF-Standard" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "Zeige anwenderseitige Notationen in den Unterschriftenlisten" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "Der bevorzugten Schlüsselserver mit den Signaturen anlisten" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "Zeige Gültigkeit der User-ID in den Schlüssellisten" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "Zeige widerrufene und verfallene User-ID in den Schlüssellisten" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "Zeige widerrufene und verfallene Unterschlüssel in den Schlüssellisten" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "Anzeigen des Schlüsselbundes, in dem ein Schlüssel drin ist" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "Das Ablaufdatum mit den Signaturen anlisten" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" "Die Bibliothek \"libgcrypt\" is zu alt (benötigt wird %s, vorhanden ist %s)\n" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "Hinweis: Alte voreingestellte Optionendatei '%s' wurde ignoriert\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "Hinweis: %s ist nicht für den üblichen Gebrauch gedacht!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' ist kein gültiges Unterschriftablaufdatum\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' ist kein gültiger Zeichensatz\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "Schlüsselserver-URL konnte nicht analysiert werden\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "Ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ungültige Import-Option\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "Ungültige Import-Option\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ungültige Export-Option.\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "Ungültige Export-Option\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ungültige Listen-Option.\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "Ungültige Listen-Option\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "Zeige die Foto-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "Zeige Richtlinien-URLs während der Unterschriftenprüfung" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 msgid "show all notations during signature verification" msgstr "Alle Notationen wahrend der Signaturprüfung anzeigen" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "Zeige IETF-Standard-Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "Zeie anwenderseitige Notationen während der Unterschriftenprüfung" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "" "Die URL für den bevorzugten Schlüsselserver während der " "Unterschriftenprüfung anzeigen" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 msgid "show user ID validity during signature verification" msgstr "Die Gültigkeit der User-ID während der Unterschriftenprüfung anzeigen" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" "Zeige widerrufene und verfallene User-IDs während der Unterschriftenprüfung" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 msgid "show only the primary user ID in signature verification" msgstr "Zeige nur die Hauptuser-ID während der Unterschriftenprüfung" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "Prüfe Unterschriftengültigkeit mittels PKA-Daten" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "werte das Vertrauen zu Unterschriften durch gültige PKA-Daten auf" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ungültige Überprüfuns-Option.\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "Ungültige Überprüfungs-Option\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Der Ausführungspfad konnte nicht auf %s gesetzt werden.\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNUNG: %s ersetzt %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s kann nicht zusammen mit %s verwendet werden!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s zusammen mit %s ist nicht sinnvoll!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "Startet nicht mit unsicherem Speicher, wegen Option %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "Im --pgp2-Modus können Sie nur abgetrennte oder Klartextunterschriften " "machen\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "Im --pgp2-Modus können Sie nicht gleichzeitig unterschreiben und " "verschlüsseln\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "Im --pgp2-Modus müssen Sie Dateien benutzen und können keine Pipes " "verwenden.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "Verschlüssen einer Botschaft benötigt im --pgp2-Modus die IDEA-" "Verschlüsselung\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "Das ausgewählte Verschlüsselungsverfahren ist ungültig\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "Das ausgewählte Komprimierungsverfahren ist ungültig\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed müssen größer als 0 sein\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed müssen größer als 1 sein\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth muß im Bereich 1 bis 255 liegen\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ungültiger \"default-cert-level\"; Wert muß 0, 1, 2 oder 3 sein\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ungültiger \"min-cert-level\"; Wert muß 0, 1, 2 oder 3 sein\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ungültiger \"simple S2K\"-Modus; Wert muß 0, 1 oder 3 sein\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "ungültige Standard-Voreinstellungen\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "ungültige private Verschlüsselungsvoreinstellungen\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "ungültige private Hashvoreinstellungen\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "ungültige private Komprimierungsvoreinstellungen\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s arbeitet noch nicht mit %s zusammen\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "Die Benutzung des Verschlüsselungsverfahren %s ist im %s-Modus nicht " "erlaubt.\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "Die Benutzung der Hashmethode %s ist im %s-Modus nicht erlaubt.\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "Die Benutzung des Komprimierverfahren %s ist im %s-Modus nicht erlaubt.\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "WARNUNG: Empfänger (-r) angegeben ohne Verwendung von Public-Key-Verfahren\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [Dateiname]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [Dateiname]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Symmetrische Entschlüsselung von `%s' fehlgeschlagen: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [Dateiname]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [Dateiname]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" "--symmetric --encrypt kann nicht zusammen mit --s2k-mode 0 verwendet werden\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "Im %s-Modus kann --symmetric --encrypt nicht verwendet werden.\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [Dateiname]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [Dateiname]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [Dateiname]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "--symmetric --sign --encrypt kann nicht zusammen mit --s2k-mode 0 verwendet " "werden\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "Im %s-Modus kann --symmetric --sign --encrypt nicht verwendet werden.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [Dateiname]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [Dateiname]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [Dateiname]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key User-ID" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key User-ID" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key User-ID [Befehle]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "Senden an Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Empfangen vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "Schlüsselexport fehlgeschlagen: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "Suche auf dem Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "Entfernen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "Anbringen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "Ungültiges Hashverfahren '%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[Dateiname]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Auf geht's - Botschaft eintippen ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "Die angegebene Zertifikat-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "Die angegebene Unterschriften-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "Die angegebene URL des bevorzugten Schlüsselserver ist ungültig\n" @@ -7571,21 +7571,21 @@ msgstr "Hinweis: Verschlüsselung für `%s' wird nicht möglich sein: %s\n" msgid "unknown validation model `%s'\n" msgstr "Unbekanntes Gültigkeitsmodell '%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "WARNUNG: Ausführung mit gefälschter Systemzeit: " -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "Importiere allgemeine Zertifikate: %s\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, c-format msgid "can't sign using `%s': %s\n" msgstr "Signieren mit `%s' nicht möglich: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "Dieser Befehl wurde noch nicht implementiert\n" diff --git a/po/el.po b/po/el.po index 73a221f44..ac089138e 100644 --- a/po/el.po +++ b/po/el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.1.92\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2003-06-27 12:00+0200\n" "Last-Translator: Dokianakis Theofanis \n" "Language-Team: Greek \n" @@ -92,7 +92,7 @@ msgstr " msgid "ssh keys greater than %d bits are not supported\n" msgstr " %d%s\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -101,12 +101,12 @@ msgstr " #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr " `%s': %s\n" @@ -286,7 +286,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -375,164 +375,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr " \n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr ": gpg [] [] (-h )" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr ": `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr " `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr " %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr " gpg-agent \n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr " `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: \n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: : %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr " `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr " : %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: : %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr " gpg-agent \n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr " GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -784,17 +784,17 @@ msgstr " msgid "problem with the agent\n" msgstr " agent: agent 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr " core dump: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr ": %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr ": %s \"%s\"\n" @@ -1280,7 +1280,7 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "--output \n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr " `%s'\n" @@ -1597,7 +1597,7 @@ msgstr " msgid "key %s: secret key without public key - skipped\n" msgstr " %08lX: - \n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1605,132 +1605,132 @@ msgstr "" "@:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[]| " -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[]| " -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr " " -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr " " -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr " " -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr " ()" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr " " -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr " " -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr " " -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr " " -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr " (fingerprints)" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr " " -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr " " -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr " " -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr " " -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr " " -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr " " -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr " " -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr " " -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr " " -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr " " -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr " " -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr " " -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr " " -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "/ " -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr " " -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "| []| " -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1741,48 +1741,48 @@ msgstr "" ":\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr " ascii " -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|| " -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr " (user id) " -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N| N (0 )" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr " " -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|| " -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr " " -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr " " -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1790,7 +1790,7 @@ msgstr "" "@\n" "( man )\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1810,15 +1810,15 @@ msgstr "" " --list-keys [] \n" " --fingerprint [] (fingerprints)\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr " \n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr ": gpg [] [] (-h )" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1828,7 +1828,7 @@ msgstr "" ", , \n" " \n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1836,572 +1836,572 @@ msgstr "" "\n" " :\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr ":" -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr ": " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr ": " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr ": gpg [] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr " \n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr " = \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" ": %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" ": %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" ": %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr ": %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr " \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr " \n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr " URL \n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr " " -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr " \n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr ": `%s'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr ": %s !\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr " %s \n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr " %s \n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr " URI \n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr " \n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr " \n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr " \n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr " \n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr " %s \n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr " URL \n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr " %s \n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr " %s \n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr " \n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr " exec-path %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: \n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr ": core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr ": %s %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr " %s %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr " %s %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr " `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" " --pgp2 \n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" " --pgp2 " "\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr " ( pipes) --pgp2.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" " --pgp2 . IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr " \n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "" " \n" " \n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 1 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr " default-cert-level 0, 1, 2, 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr " min-cert-level 0, 1, 2, 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr ": S2K (0) \n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr " S2K; 0, 1 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr " \n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr " \n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr " \n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr " \n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr " %s %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr " \"%s\" %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" " \"%s\" %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" " \"%s\" %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr " TrustDB: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" ": (-r) \n" " \n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [ ]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [ ]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [ ]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr " %s %s.\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [ ]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ ]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr " %s %s.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ ]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [ ]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [ ]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id []" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver : %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr " : %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr " hash `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[ ]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr " ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr " URL \n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr " URL \n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr " URL \n" @@ -7655,21 +7655,21 @@ msgstr " msgid "unknown validation model `%s'\n" msgstr " `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr " `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr " `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/eo.po b/po/eo.po index 53e57b81e..35340a130 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.6d\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" @@ -92,7 +92,7 @@ msgstr "malbona pasfrazo" msgid "ssh keys greater than %d bits are not supported\n" msgstr "protekto-metodo %d%s ne estas realigita\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -101,12 +101,12 @@ msgstr "ne povas krei '%s': %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "ne povas malfermi '%s': %s\n" @@ -287,7 +287,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -375,164 +375,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Bonvolu raporti cimojn al .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "opcio-dosiero '%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "legas opciojn el '%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "eraro dum kreado de '%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ne povas krei %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Valida atestilrevoko" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ne estas disponata en i tiu sesio\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eraro dum sendo al '%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skribas sekretan losilon al '%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: dosierujo kreita\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fido-datenaro: lego malsukcesis (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualigo de sekreto malsukcesis: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu losiloj ignoritaj\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ne estas disponata en i tiu sesio\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "malbona valoro de la media variablo GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -784,17 +784,17 @@ msgstr "nuligita de uzanto\n" msgid "problem with the agent\n" msgstr "problemo kun agento: agento redonas 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "ne povas malalti kreadon de core-dosieroj: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" @@ -1283,7 +1283,7 @@ msgstr "Nevalida komando (provu per \"helpo\")\n" msgid "--output doesn't work for this command\n" msgstr "--output ne funkcias por i tiu komando\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "ne povas malfermi '%s'\n" @@ -1581,7 +1581,7 @@ msgstr "uzas flankan msgid "key %s: secret key without public key - skipped\n" msgstr "losilo %08lX: sekreta losilo sen publika losilo - ignorita\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1589,132 +1589,132 @@ msgstr "" "@Komandoj:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[dosiero]|fari subskribon" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[dosiero]|fari klartekstan subskribon" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "fari apartan subskribon" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "ifri datenojn" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "ifri nur kun simetria ifro" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "malifri datenojn (implicita elekto)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "kontroli subskribon" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "listigi losilojn" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "listigi losilojn kaj subskribojn" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "kontroli losilsubskribojn" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "listigi losilojn kaj fingropurojn" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "listigi sekretajn losilojn" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "krei novan losilparon" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "forigi losilojn de la publika losilaro" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "forigi losilojn de la sekreta losilaro" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "subskribi losilon" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "subskribi losilon loke" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "subskribi a redakti losilon" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "krei revokatestilon" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "eksporti losilojn" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "eksporti losilojn al losilservilo" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importi losilojn de losilservilo" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "seri losilojn e losilservilo" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "aktualigi iujn losilojn de losilservilo" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importi/kunfandi losilojn" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "aktualigi la fido-datenaron" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|metodo [dosieroj]|presi mesao-kompendiojn" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1725,48 +1725,48 @@ msgstr "" "Opcioj:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "krei eligon en askia kiraso" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOMO|ifri por NOMO" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "uzi i tiun uzantidentigilon por subskribi a malifri" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|difini densig-nivelon N (0=nenia)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "uzi tekstan reimon" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|DOSIERO|legi aldonan bibliotekon DOSIERO" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "fari neniajn anojn" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1774,7 +1774,7 @@ msgstr "" "@\n" "(Vidu la manpaon por kompleta listo de iuj komandoj kaj opcioj)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1794,15 +1794,15 @@ msgstr "" " --list-keys [nomoj] montri losilojn\n" " --fingerprint [nomoj] montri fingropurojn\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Bonvolu raporti cimojn al .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1812,7 +1812,7 @@ msgstr "" "subskribi, kontroli, ifri a malifri\n" "implicita operacio dependas de la enigataj datenoj\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1820,569 +1820,569 @@ msgstr "" "\n" "Realigitaj metodoj:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "" -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "" -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "" -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 #, fuzzy msgid "Compression: " msgstr "Komento: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uzado: gpg [opcioj] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "malkongruaj komandoj\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "%s: nova opcio-dosiero kreita\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Mankas responda subskribo en sekreta losilaro\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "montri, en kiu losilaro estas listigita losilo" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Mankas responda subskribo en sekreta losilaro\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTO: %s ne estas por normala uzado!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ne povis analizi URI de losilservilo\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 #, fuzzy msgid "invalid import options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 #, fuzzy msgid "invalid export options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "nevalida losilaro" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "AVERTO: programo povas krei core-dosieron!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTO: %s nuligas %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ne eblas kun %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skribas sekretan losilon al '%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "eblas fari nur apartajn kaj klartekstajn subskribojn kun --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "ne eblas samtempe subskribi kaj ifri kun --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "necesas uzi dosierojn (kaj ne tubon) kun --pgp2\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "ifri mesaon kun --pgp2 postulas la ifron IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "elektita ifrad-metodo ne validas\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "elektita ifrad-metodo ne validas\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed devas esti pli granda ol 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed devas esti pli granda ol 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth devas esti inter 1 kaj 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nevalida default-check-level; devas esti 0, 1, 2 a 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nevalida default-check-level; devas esti 0, 1, 2 a 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTO: simpla S2K-reimo (0) estas forte malrekomendata\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "nevalida S2K-reimo; devas esti 0, 1 a 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 #, fuzzy msgid "invalid default preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "Tiu komando ne eblas en la reimo %s.\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "Tiu komando ne eblas en la reimo %s.\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "Tiu komando ne eblas en la reimo %s.\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [dosiero]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [dosiero]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "malifrado malsukcesis: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [dosiero]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "Tiu komando ne eblas en la reimo %s.\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [dosiero]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [dosiero]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "Tiu komando ne eblas en la reimo %s.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [dosiero]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [dosiero]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [dosiero]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key uzantidentigilo" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key uzantidentigilo" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key uzantidentigilo [komandoj]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "listigo de sekretaj losiloj malsukcesis: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "Kreado de losiloj malsukcesis: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record malsukcesis: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "listigo de sekretaj losiloj malsukcesis: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "elkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[dosiero]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Ektajpu vian mesaon ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "la donita gvidlinia URL por atestado ne validas\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" @@ -7607,21 +7607,21 @@ msgstr "ne povas konekti msgid "unknown validation model `%s'\n" msgstr "nekonata implicita ricevonto '%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "skribas al '%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "ne povas fermi '%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/es.po b/po/es.po index 52dab9e3f..9cc0f4870 100644 --- a/po/es.po +++ b/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2007-08-16 11:35+0200\n" "Last-Translator: Jaime Surez \n" "Language-Team: Spanish \n" @@ -115,7 +115,7 @@ msgstr "Frase contrase msgid "ssh keys greater than %d bits are not supported\n" msgstr "el resumen protector %d no puede ser utilizado\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -124,12 +124,12 @@ msgstr "no se puede crear %s: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "no se puede abrir `%s': %s\n" @@ -309,7 +309,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -397,165 +397,165 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Por favor, informe de posibles \"bugs\" a .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opciones] [ficheros] (-h para ayuda)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fichero de opciones `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "leyendo opciones desde `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "error creando `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no se puede crear el directorio `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no se puede crear %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Revocacin de certificado vlida" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "el agente gpg no esta disponible en esta sesin\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "error obteniendo nuevo PIN: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error enviando a `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizacin fallida: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escribiendo clave privada en `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "directorio `%s' creado\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) fall en %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: no se puede crear el directorio: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "error leyendo `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizacin de la clave secreta fallida: %s\n" # msgstr "clave %08lX: %d nuevas subclaves\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claves omitidas\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "el agente gpg no esta disponible en esta sesin\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variable de entorno GPG_AGENT_INFO malformada\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -816,17 +816,17 @@ msgstr "cancelado por el usuario\n" msgid "problem with the agent\n" msgstr "problema con el agente: el agente devuelve 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "no se pueden desactivar los volcados de core: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVISO: propiedad insegura de la extensin `%s'\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVISO: permisos inseguros de la extensin `%s'\n" @@ -1285,7 +1285,7 @@ msgstr "Orden inv msgid "--output doesn't work for this command\n" msgstr "--output no funciona con esta orden\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "no se puede abrir `%s'\n" @@ -1591,7 +1591,7 @@ msgstr "clave %s: clave secreta sin clave p # S, este no he podido ser yo :-) Por cierto, por qu la O no se # puede acentuar? demasiado alta? # Quin dice que no se puede? :-) -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1599,131 +1599,131 @@ msgstr "" "@rdenes:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[file]|crea una firma" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[file]|crea una firma en texto claro" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "crea una firma separada" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "cifra datos" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "cifra slo con un cifrado simtrico" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "descifra datos (predefinido)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verifica una firma" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "lista claves" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "lista claves y firmas" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "lista y comprueba firmas de las claves" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "lista claves y huellas dactilares" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "lista claves secretas" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "genera un nuevo par de claves" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "elimina claves del anillo pblico" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "elimina claves del anillo privado" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "firma la clave" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "firma la clave localmente" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "firma o modifica una clave" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "genera un certificado de revocacin" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exporta claves" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exporta claves a un servidor de claves" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importa claves desde un servidor de claves" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "busca claves en un servidor de claves" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "actualiza todas las claves desde un servidor de claves" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importa/fusiona claves" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "escribir estado de la tarjeta" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "cambiar datos en la tarjeta" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "cambiar el PIN de la tarjeta" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "actualiza la base de datos de confianza" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [ficheros]|imprime resmenes de mensaje" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1734,44 +1734,44 @@ msgstr "" "Opciones:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "crea una salida ascii con armadura" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOMBRE|cifra para NOMBRE" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "usa este usuario para firmar o descifrar" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|nivel de compresin N (0 no comprime)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "usa modo de texto cannico" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FICHERO|carga mdulo de extensiones FICHERO" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "no hace ningn cambio" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "preguntar antes de sobreescribir" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "usar estilo OpenPGP estricto" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "generar mensajes compatibles con PGP 2.x" @@ -1779,7 +1779,7 @@ msgstr "generar mensajes compatibles con PGP 2.x" # pgina man -> pgina de manual # Vale. del manual mejor? # Hmm, no s, en man-db se usa "de". La verdad es que no lo he pensado. -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1787,7 +1787,7 @@ msgstr "" "@\n" "(Vase en la pgina del manual la lista completo de rdenes y opciones)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1807,15 +1807,15 @@ msgstr "" " --list-keys [nombres] muestra las claves\n" " --fingerprint [nombres] muestra las huellas dactilares\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Por favor, informe de posibles \"bugs\" a .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uso: gpg [opciones] [ficheros] (-h para ayuda)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1825,7 +1825,7 @@ msgstr "" "firma, comprueba, cifra o descifra\n" "la operacin por defecto depende de los datos de entrada\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1833,75 +1833,75 @@ msgstr "" "\n" "Algoritmos disponibles:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Clave pblica: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cifrado: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Resumen: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compresin: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uso: gpg [opciones] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "rdenes incompatibles\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no se encontr el signo = en la definicin de grupo `%s'\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVISO: propiedad insegura del directorio personal `%s'\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVISO: propiedad insegura del fichero de configuracin `%s'\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVISO: propiedad insegura de la extensin `%s'\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVISO: permisos inseguros del directorio personal `%s'\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVISO: permisos inseguros del fichero de configuracin `%s'\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVISO: permisos inseguros de la extensin `%s'\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVISO: propiedad insegura del directorio contenedor de `%s'\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1909,18 +1909,18 @@ msgstr "" "AVISO: propiedad insegura del directorio contenedor del fichero de\n" "configuracin `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "AVISO: propiedad insegura del directorio contenedor de la extensin `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVISO: permisos inseguros del directorio contenedor de `%s'\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1928,446 +1928,446 @@ msgstr "" "AVISO: permisos inseguros del directorio contenedor del fichero de\n" "configuracin `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "AVISO: permisos inseguros del directorio contenedor de la extensin `%s'\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "artculo de configuracin desconocido `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "No existe la firma correspondiente en el anillo secreto\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la URL del servidor de claves preferido no es vlida\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "muestra en qu anillos est una clave" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "No existe la firma correspondiente en el anillo secreto\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: se ignora el antiguo fichero de opciones predefinidas `%s'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no es para uso normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "no se puede interpretar la URL del servidor de claves\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "opciones del servidor de claves invlidas\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opciones de importacin invlidas\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opciones de importacin invlidas\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opciones de exportacin invlidas\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opciones de exportacin invlidas\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: lista de opciones invlida\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "lista de opciones invlida\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la URL del servidor de claves preferido no es vlida\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' no es un juego de caracteres vlido\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opciones de verificacin invlidas\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "opciones de verificacin invlidas\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "imposible establecer camino de ejecutables %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opciones de verificacin invlidas\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "ATENCIN: el programa podra volcar un fichero core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sustituye a %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido con %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no tiene sentido con %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "no se ejecutar en memoria insegura por %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "slo puede hacer firmas separadas o en claro en modo --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "no puede firmar y cifrar a la vez en modo --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "debe usar ficheros (no tuberas) si trabaja con --pgp2 activo.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "cifrar un mensaje en modo --pgp2 requiere el algoritmo IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "el algoritmo de cifrado seleccionado es invlido\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "el algoritmo de resumen seleccionado no invlido\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "el algoritmo de compresin seleccionado es invlido\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "el algoritmo de certificacin por resumen elegido es invlido\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser mayor que 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser mayor que 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth debe estar en el rango de 1 a 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level invlido; debe ser 0, 1, 2, 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level invlido; debe ser 0, 1, 2, 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el modo S2K simple (0) no es nada recomendable\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K incorrecto; debe ser 0, 1 o 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "preferencias por defecto invlidas\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "preferencias personales de cifrado invlidas\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "preferencias personales de algoritmo de resumen invlidas\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "preferencias personales de compresin invlidas\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s an no funciona con %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "no puede usar el cifrado `%s' en modo %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "no puede usar el resumen `%s' en modo %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "no puede usar la compresin `%s' en modo %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicializacin de la base de datos de confianza fallida: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "AVISO: se indicaron receptores (-r) sin clave pblica de cifrado\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nombre_fichero]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nombre_fichero]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "el cifrado simtrico de `%s' fall: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nombre_fichero]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nombre_fichero]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "no puede usar --symetric --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "no puede usar --symetric --encrypt en modo %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nombre_fichero]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nombre_fichero]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "no puede usar --symetric --sign --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "no puede usar --symmetric --sign --encrypt en modo %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nombre_fichero]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nombre_fichero]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nombre_fichero]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id-usuario" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id-usuario" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usuario [rdenes]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "envo al servidor de claves fallido: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepcin del servidor de claves fallida: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "exportacin de clave fallida: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "bsqueda del servidor de claves fallida: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "renovacin al servidor de claves fallida: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminacin de armadura fallida: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "creacin de armadura fallida: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de distribucin invlido `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nombre_fichero]" @@ -2375,19 +2375,19 @@ msgstr "[nombre_fichero]" # En espaol no se deja espacio antes de los puntos suspensivos # (Real Academia dixit) :) # Tomo nota :-). Este comentario djalo siempre. -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Adelante, teclee su mensaje...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "URL de poltica de certificado invlida\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "URL de poltica invlida\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL del servidor de claves preferido no es vlida\n" @@ -7534,21 +7534,21 @@ msgstr "no se puede conectar con `%s': %s\n" msgid "unknown validation model `%s'\n" msgstr "opcin desconocida `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "no se puede acceder a `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/et.po b/po/et.po index 3c6473b25..8ef45704b 100644 --- a/po/et.po +++ b/po/et.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -92,7 +92,7 @@ msgstr "halb parool" msgid "ssh keys greater than %d bits are not supported\n" msgstr "kaitse algoritm %d%s ei ole toetatud\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -101,12 +101,12 @@ msgstr "`%s' ei #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "`%s' ei nnestu avada: %s\n" @@ -286,7 +286,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -374,164 +374,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Palun saatke veateated aadressil .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Kasuta: gpg [vtmed] [failid] (-h nitab abiinfot)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MRKUS: vaikimisi vtmete fail `%s' puudub\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "vtmete fail `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "loen vtmeid failist `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "viga `%s' loomisel: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kataloogi `%s' ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "viga parooli loomisel: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "viga teate saatmisel serverile `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "uuendamine ebannestus: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjutan salajase vtme faili `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: kataloog on loodud\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: lugemine ebannestus (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kataloogi ei nnestu luua: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salajase vtme uuendamine ebannestus: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: jtsin vahele: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "vigane GPG_AGENT_INFO keskkonnamuutuja\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -783,17 +783,17 @@ msgstr "katkestatud kasutaja poolt\n" msgid "problem with the agent\n" msgstr "probleem agendiga: agent tagastas 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "ei nnestu blokeerida mlupildi salvestamist: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" @@ -1278,7 +1278,7 @@ msgstr "Vigane k msgid "--output doesn't work for this command\n" msgstr "vti --output ei tta selle ksuga\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "`%s' ei nnestu avada\n" @@ -1588,7 +1588,7 @@ msgstr "kasutan sekundaarset v msgid "key %s: secret key without public key - skipped\n" msgstr "vti %08lX: salajane vti avaliku vtmeta - jtsin vahele\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1596,132 +1596,132 @@ msgstr "" "@Ksud:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fail]|loo allkiri" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fail]|loo avateksti allkiri" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "loo eraldiseisev allkiri" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "krpteeri andmed" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "krpteerimine kasutades ainult smmeetrilist ifrit" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "dekrpteeri andmed (vaikimisi)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "kontrolli allkirja" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "nita vtmeid" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "nita vtmeid ja allkirju" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "kontrolli vtmete allkirju" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "nita vtmeid ja srmejlgi" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "nita salajasi vtmeid" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "genereeri uus vtmepaar" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "eemalda vtmed avalike vtmete hoidlast" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "eemalda vtmed salajaste vtmete hoidlast" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "allkirjasta vti" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "allkirjasta vti lokaalselt" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "allkirjasta vi toimeta vtit" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "genereeri thistamise sertifikaat" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "ekspordi vtmed" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "ekspordi vtmed vtmeserverisse" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "impordi vtmed vtmeserverist" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "otsi vtmeid vtmeserverist" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "uuenda vtmeid vtmeserverist" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "impordi/mesti vtmed" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "uuenda usalduse andmebaasi" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [failid]|trki teatelhendid" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1732,48 +1732,48 @@ msgstr "" "Vtmed:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "loo ascii pakendis vljund" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NIMI|krpti NIMEle" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "kasuta seda kasutaja IDd" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|mra pakkimise tase N (0 blokeerib)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "kasuta kanoonilist tekstimoodi" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FAIL|lae laiendusmoodul FAIL" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "ra tee mingeid muutusi" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "ksi enne lekirjutamist" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1781,7 +1781,7 @@ msgstr "" "@\n" "(Kikide kskude ja vtmete tieliku kirjelduse leiate manualist)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1801,15 +1801,15 @@ msgstr "" " --list-keys [nimed] nita vtmeid\n" " --fingerprint [nimed] nita srmejlgi\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Palun saatke veateated aadressil .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Kasuta: gpg [vtmed] [failid] (-h nitab abiinfot)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1819,7 +1819,7 @@ msgstr "" "allkirjasta, kontrolli, krpti ja dekrpti\n" "vaikimisi operatsioon sltub sisendandmetest\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1827,561 +1827,561 @@ msgstr "" "\n" "Toetatud algoritmid:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Avalik vti: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "iffer: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Rsi: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Pakkimine: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "kasuta: gpg [vtmed] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "vastuolulised ksud\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "grupi definitsioonis \"%s\" puudub smbol =\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "HOIATUS: ebaturvalised igused %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi igused %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi igused %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi igused %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "tundmatu seade \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "nita millisesse vtmehoidlasse nidatud vti kuulub" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Vastavat allkirja salajaste vtmete hoidlas pole\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MRKUS: ignoreerin vana vaikimisi vtmete faili `%s'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MRKUS: %s ei ole tavapraseks kasutamiseks!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "ei saa parsida vtmeserveri URI\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: vigased impordi vtmed\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "vigased impordi vtmed\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "vigased ekspordi vtmed\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path vrtuseks ei nnestu seada %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: vigased ekspordi vtmed\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "HOIATUS: programm vib salvestada oma mlupildi!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "HOIATUS: %s mrab le %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s ei ole koos lubatud!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s ei oma koos mtet!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjutan salajase vtme faili `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "--pgp2 moodis saate luua ainult eraldiseisvaid vi avateksti allkirju\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2 moodis ei saa korraga allkirjastada ja krpteerida\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2 moodis peate kasutama faile (ja mitte toru).\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "teate krpteerimine --pgp2 moodis nuab IDEA iffrit\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "valitud ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "valitud lhendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valitud ifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "valitud sertifikaadi lhendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed peab olema suurem, kui 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed peab olema suurem, kui 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth peab olema vahemikus 1 kuni 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "vigane vaikimisi-sert-tase; peab olema 0, 1, 2 vi 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "vigane min-sert-tase; peab olema 1, 2 vi 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MRKUS: lihtne S2K mood (0) ei soovitata kasutada\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "vigane S2K mood; peab olema 0, 1 vi 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "vigased vaikimisi eelistused\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "vigased isikliku ifri eelistused\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "vigased isikliku lhendi eelistused\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "vigased isikliku pakkimise eelistused\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ei tta veel koos %s-ga\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "ifri algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "snumilhendi algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "pakkimise algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB initsialiseerimine ebannestus: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "HOIATUS: mrati saajad (-r) aga ei kasutata avaliku vtme krptograafiat\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [failinimi]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [failinimi]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "lahtikrpteerimine ebannestus: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [failinimi]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "%s ei ole moodis %s lubatud.\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [failinimi]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [failinimi]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "%s ei ole moodis %s lubatud.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [failinimi]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [failinimi]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [failinimi]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key kasutaja-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key kasutaja-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key kasutaja-id [ksud]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "vtmeserverile saatmine ebannestus: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "vtmeserverilt lugemine ebannestus: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "vtme eksport ebannestus: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "vtmeserveri otsing ebannestus: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "vtmeserveri uuendamine ebannestus: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "lahtipakendamine ebannestus: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "pakendamine ebannestus: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "vigane rsialgoritm `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[failinimi]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Kirjutage nd oma teade ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "antud sertifikaadi poliisi URL on vigane\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" @@ -7564,21 +7564,21 @@ msgstr "ei msgid "unknown validation model `%s'\n" msgstr "tundmatu vaikimisi saaja `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "kirjutan faili `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "`%s' ei nnestu sulgeda: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index b0a92c3c5..9b31f0110 100644 --- a/po/fi.po +++ b/po/fi.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" @@ -108,7 +108,7 @@ msgstr "väärä salasana" msgid "ssh keys greater than %d bits are not supported\n" msgstr "suojausalgoritmi %d%s ei ole käytettävissä\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -117,12 +117,12 @@ msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi avata: %s\n" @@ -302,7 +302,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -390,7 +390,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy @@ -398,157 +398,157 @@ msgid "Please report bugs to <" msgstr "" "Ilmoita ohjelmistovioista (englanniksi) osoitteeseen .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Käyttö: gpg [valitsimet] [tiedostot] (-h näyttää ohjeen)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "HUOM: Ei oletusasetustiedostoa \"%s\"\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "asetustiedosto \"%s\": %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "luetaan asetukset tiedostosta \"%s\"\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "virhe luotaessa \"%s\": %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "hakemiston \"%s\" luominen ei onnistu: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ei voida luoda kohdetta %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "virhe lähettäessä kohteeseen \"%s\": %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: hakemisto luotu\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: luku epäonnistui (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: hakemistoa ei voi luoda: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salaisen päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ohitettu: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ei ole käytettävissä tässä istunnossa\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO-ympäristömuuttuja on väärin muotoiltu\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -800,17 +800,17 @@ msgstr "käyttäjän peruma\n" msgid "problem with the agent\n" msgstr "agentin käytössä on ongelmia: agentti vastaa 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "core-tiedostojen luontia ei voi estää: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" @@ -1297,7 +1297,7 @@ msgstr "Komento ei kelpaa (kirjoita \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output ei toimi yhdessä tämän komennon kanssa\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "tiedostoa \"%s\" ei voi avata\n" @@ -1607,7 +1607,7 @@ msgstr "" "avain %08lX: salaisella avaimella ei ole vastaavaa \n" "julkista avainta - ohitetaan\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1615,132 +1615,132 @@ msgstr "" "@Komennot:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[tiedosto]|tee allekirjoitus" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[tiedosto]|tee selkokielinen allekirjoitus" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "tee erillinen allekirjoitus" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "salaa tiedot" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "salaa vain symmetrisellä salaimella" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "avaa tiedot (oletus)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "tarkista allekirjoitus" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "näytä avaimet" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "näytä avaimet allekirjoituksineen" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "tarkista avainten allekirjoitukset" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "näytä avaimet sormenjälkineen" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "näytä salaiset avaimet" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "luo uusi avainpari" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "poista avaimet julkisten avainten renkaasta" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "poista avaimet salaisten avainten renkaasta" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "allekirjoita avain" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "allekirjoita avain paikallisesti" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "allekirjoita tai muokkaa avainta" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "luo mitätöintivarmenne" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "vie avaimia" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "vie avaimia palvelimelle" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "nouda avaimia avainpalvelimelta" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "etsi avaimia avainpalvelimelta" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "päivitä kaikki avaimet avainpalvelimelta" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "nouda/liitä avaimia" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "päivitä luottamustietokanta" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [tiedostot]|tulosta viestien tiivisteet" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1751,48 +1751,48 @@ msgstr "" "Valitsimet:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "tuota ascii-koodattu tuloste" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NIMI|salaa vastaanottajalle NIMI" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "käytä tätä käyttäjätunnusta allekirjoittamiseen ja avaamiseen" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|aseta pakkausaste N (0 poistaa käytöstä)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "käytä tekstimuotoa" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|TIEDOSTO|lataa laajennusmoduuli TIEDOSTO" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "älä tee muutoksia" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "kysy ennen ylikirjoittamista" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1801,7 +1801,7 @@ msgstr "" "(Katso täydellinen luettelo kaikista komennoista ja valitsimista man-" "sivuilta)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1820,16 +1820,16 @@ msgstr "" " --list-keys [nimet] näytä avaimet\n" " --fingerprint [nimet] näytä sormenjäljet\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Ilmoita ohjelmistovioista (englanniksi) osoitteeseen .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Käyttö: gpg [valitsimet] [tiedostot] (-h näyttää ohjeen)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1839,7 +1839,7 @@ msgstr "" "allekirjoita, tarkista, salaa tai avaa\n" "oletustoiminto riippuu syötteestä\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1847,562 +1847,562 @@ msgstr "" "\n" "Tuetut algoritmit:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "JulkAvain: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Salaus: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Tiiviste: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Pakkaus: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "käyttö: gpg [valitsimet] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "ristiriitainen komento\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "=-merkkiä ei löytynyt ryhmämäärityksessä \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "tuntematon asetus \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "näytä mihin avainrenkaaseen tulostettu avain kuuluu" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "HUOM: Vanhat oletusarvoiset asetukset löytyvät tiedostosta \"%s\"\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "HUOM: %s ei ole normaaliin käyttöön!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-polkua kohteeseen %s ei voi asettaa\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "VAROITUS: ohjelma voi luoda core-tiedoston!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROITUS: %s korvaa %s:n\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s eivät ole sallittuja yhdessä!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s yhdessä on järjetöntä!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "erillisen allekirjoituksen voi luoda vain --pgp2-tilassa\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2-tilassa ei voi allekirjoittaa ja salata samanaikaisesti\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "sinun tulee käyttää tiedostoja (eikä putkitusta) kun --pgp2 on käytössä.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "viestin salaaaminen --pgp2-tilassa vaatii IDEA-salaimen\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "valittu tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "valittu varmenteen tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed täytyy olla suurempi kuin 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed täytyy olla suurempi kuin 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth tulee olla välillä 1-255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level ei kelpaa; täytyy olla 0, 1, 2 tai 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level ei kelpaa; täytyy olla 1, 2 tai 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "" "HUOM: yksinkertaista S2K-tilaa (0) ei todellakaan suositella käytettäväksi\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "virheellinen S2K-tila; täytyy olla 0, 1 tai 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "virheelliset oletusarvoiset valinnat\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "virheelliset henkilökohtaisen salaimen valinnat\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "virheelliset henkilökohtaiset tiivisteen valinnat\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "virheelliset henkilökohtaiset pakkausvalinnat\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ja %s eivät vielä toimi yhdessä\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "salausalgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "tiivistealgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "pakkausalgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROITUS: vastaanottajia (-r) annettu käyttämättä julkisen avaimen salausta\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [tiedostonimi]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [tiedostonimi]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "avaus epäonnistui: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [tiedostonimi]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "valitsinta %s ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--allekirjoita [tiedostonimi]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [tiedostonimi]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "valitsinta %s ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [tiedostonimi]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [tiedostonimi]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [tiedostonimi]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key käyttäjätunnus" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key käyttäjätunnus" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key käyttäjätunnus [komennot]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "avainpalvelimelta vastaanotto epäonnistui: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "avaimen vienti epäonnistui: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "avainpalvelimelta etsiminen epäonnistui: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "avainpalvelimen päivitys epäonnistui: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "ascii-koodauksen purku epäonnistui: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "ascii-koodaaminen epäonnistui: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "virheellinen tiivistealgoritmi \"%s\"\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[tiedostonimi]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Kirjoita viestisi...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "annettu varmennekäytännön URL on virheellinen\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" @@ -7638,21 +7638,21 @@ msgstr "yhteys kohteeseen \"%s\" ei onnistu: %s\n" msgid "unknown validation model `%s'\n" msgstr "tuntematon oletusvastaanottaja \"%s\"\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "kirjoitetaan kohteeseen \"%s\"\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "tiedostoa \"%s\" ei voi sulkea: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index be3e34ede..8c7b061c3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2005-06-28 00:24+0200\n" "Last-Translator: Gal Quri \n" "Language-Team: French \n" @@ -98,7 +98,7 @@ msgstr "mauvaise phrase de passe" msgid "ssh keys greater than %d bits are not supported\n" msgstr "le hachage de protection %d n'est pas support\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -107,12 +107,12 @@ msgstr "impossible de cr #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossible d'ouvrir `%s': %s\n" @@ -298,7 +298,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -388,7 +388,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy @@ -397,159 +397,159 @@ msgstr "" "Signaler toutes anomalies (en anglais)\n" "et tout problme de traduction .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Utilisation: gpg [options] [fichiers] (-h pour l'aide)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTE: pas de fichier d'options par dfaut `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fichier d'options `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "lire les options de `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "erreur pendant la cration de `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossible de crer le rpertoire `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossible de crer `%s': %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent n'est pas disponible dans cette session\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erreur pendant l'obtention du nouveau code PIN: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "" "erreur pendant la recherche de l'enregistrement de confiance\n" "dans `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "la mise jour a chou: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "criture de la cl secrte dans `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "rpertoire `%s' cr\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) chou dans %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "impossible de crer le rpertoire `%s': %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erreur pendant la lecture de `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "la mise jour de la cl secrte a chou: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignor: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent n'est pas disponible dans cette session\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "la variable d'environnement GPG_AGENT_INFO est mal dfinie\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -802,19 +802,19 @@ msgstr "annul msgid "problem with the agent\n" msgstr "problme avec l'agent - arrt d'utilisation de l'agent\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossible d'empcher la gnration de fichiers core: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "" "AVERTISSEMENT: le propritaire de l'extension `%s' est peu\n" "sr\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "" @@ -1278,7 +1278,7 @@ msgstr "Commande invalide (essayez msgid "--output doesn't work for this command\n" msgstr "--output n'est pas compatible avec cette commande\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossible d'ouvrir `%s'\n" @@ -1595,7 +1595,7 @@ msgstr "" msgid "key %s: secret key without public key - skipped\n" msgstr "cl %s: cl secrte sans cl publique - non prise en compte\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1603,131 +1603,131 @@ msgstr "" "@Commandes:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fichier]|faire une signature" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fichier]|faire une signature en texte clair" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "faire une signature dtache" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "chiffrer les donnes" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "chiffrement symtrique seulement" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "dchiffrer les donnes (dfaut)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "vrifier une signature" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "lister les cls" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "lister les cls et les signatures" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "lister et vrifier les signatures des cls" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "lister les cls et les empreintes" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "lister les cls secrtes" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "gnrer une nouvelle paire de cls" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "enlever les cls du porte-cls public" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "enlever les cls du porte-cls secret" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "signer une cl" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "signer une cl localement" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "signer ou diter une cl" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "gnrer un certificat de rvocation" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exporter les cls" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exporter les cls vers un serveur de cls" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importer les cls d'un serveur de cls" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "chercher les cls avec un serveur de cls" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "mettre jour les cls depuis un serveur" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importer/fusionner les cls" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "afficher l'tat de la carte" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "changer les donnes d'une carte" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "changer le code PIN d'une carte" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "mettre la base de confiance jour" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|alg. [fich.]|indiquer les fonctions de hachage" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1738,48 +1738,48 @@ msgstr "" "Options:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "crer une sortie ascii avec armure" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOM|chiffrer pour NOM" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "utiliser ce nom pour signer ou dchiffrer" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|niveau de compression N (0 dsactive)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "utiliser le mode texte canonique" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "lire les options de `%s'\n" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "ne rien changer" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "demander avant d'craser un fichier" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "utiliser strictement le comportement OpenPGP" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "gnrer des messages compatibles avec PGP 2.x" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1787,7 +1787,7 @@ msgstr "" "@\n" "(Voir la page de manuel pour une liste complte des commandes et options)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1807,17 +1807,17 @@ msgstr "" " --list-keys [utilisateur] montrer les cls\n" " --fingerprint [utilisateur] montrer les empreintes\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Signaler toutes anomalies (en anglais)\n" "et tout problme de traduction .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Utilisation: gpg [options] [fichiers] (-h pour l'aide)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1827,7 +1827,7 @@ msgstr "" "signer, vrifier, chiffrer ou dchiffrer\n" "l'opration par dfaut dpend des donnes entres\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1835,89 +1835,89 @@ msgstr "" "\n" "Algorithmes supports:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Cl publique: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Chiffrement: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hachage: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compression: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "utilisation: gpg [options] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "commandes en conflit\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "aucun signe = trouv dans la dfinition du groupe `%s'\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du rpertoire personnel `%s' est\n" "peu sr\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du fichier de configuration `%s'\n" "est peu sr\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire de l'extension `%s' est peu\n" "sr\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du rpertoire personnel `%s'\n" "sont peu sres\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du fichier de configuration\n" "`%s' sont peu sres\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "" "AVERTISSEMENT: les permissions de l'extension `%s' sont\n" "peu sres\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du rpertoire contenant est peu\n" "sr pour le rpertoire personnel `%s'\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1925,21 +1925,21 @@ msgstr "" "AVERTISSEMENT: le propritaire du rpertoire contenant est peu\n" "sr pour le fichier de configuration `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "AVERTISSEMENT: le propritaire du rpertoire contenant est peu\n" "sr pour l'extension `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du rpertoire contenant le\n" "rpertoire personnel `%s' sont peu sres\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1947,482 +1947,482 @@ msgstr "" "AVERTISSEMENT: les permissions du rpertoire contenant le\n" "fichier de configuration `%s' sont peu sres\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "AVERTISSEMENT: les permissions du rpertoire contenant\n" "l'extension `%s' sont peu sres\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "lment de configuration `%s' inconnu\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Pas de signature correspondante dans le porte-cls secret\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "l'URL du serveur de cls favori qui a t donne est invalide\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "" "passer de la liste des cls secrtes celle des cls prives\n" "et inversement" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Pas de signature correspondante dans le porte-cls secret\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTE: l'ancien fichier d'options par dfaut `%s' a t ignor\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTE: %s n'est pas pour une utilisation normale !\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' n'est pas un jeu de caractres valide\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "impossible d'interprter l'URL du serveur de cls\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: les options du serveur de cls sont invalides\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "les options du serveur de cls sont invalides\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: options d'import invalides\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "options d'import invalides\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: options d'export invalides\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "options d'export invalides\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: options de liste invalides\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "options de liste invalides\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "l'URL du serveur de cls favori qui a t donne est invalide\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' n'est pas une date d'expiration de signature valide\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: options de vrification invalides\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "options de vrification invalides\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossible de mettre le chemin d'excution %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: options de vrification invalides\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "ATTENTION: Le programme peut crer un fichier core !\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENTION: %s remplace %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n'est pas permis avec %s !\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n'a aucun sens avec %s !\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "pas d'excution ave une mmoire non scurise cause de %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "il n'est possible de faire une signature dtache ou en texte clair\n" "qu'en mode --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "vous ne pouvez pas signer et chiffrer en mme temps en mode --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "vous devez utiliser des fichiers (et pas un tube) lorsque --pgp2\n" "est activ.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "chiffrer un message en mode --pgp2 ncessite l'algorithme de chiffrage IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "l'algorithme de chiffrement slectionn est invalide\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "la fonction de hachage slectionne est invalide\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "l'algorithme de compression slectionn est invalide\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "la fonction de hachage de certification slectionne est invalide\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed doit tre suprieur 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed doit tre suprieur 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth doit tre compris entre 1 et 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level invalide; doit tre 0, 1, 2 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level invalide; doit tre 0, 1, 2 ou 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTE: le mode S2K simple (0) est fortement dconseill\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K invalide; ce doit tre 0, 1 ou 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "prfrences par dfaut invalides\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "prfrences de chiffrement personnelles invalides\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "prfrences de hachage personnelles invalides\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "prfrences de compression personnelles invalides\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne marche pas encore avec %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser l'algorithme de chiffrement `%s'\n" "en mode %s.\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser l'algorithme de hachage `%s'\n" "en mode %s.\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser l'algorithme de compression `%s'\n" "en mode %s.\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "impossible d'initialiser la base de confiance: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVERTISSEMENT: des destinataires (-r) ont t donns alors que le\n" "chiffrement ne se fait pas par cl publique\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nom du fichier]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nom du fichier]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "le chiffrement symtrique de `%s' a chou: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nom du fichier]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nom du fichier]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "vous ne pouvez pas utiliser --symmetric --encrypt avec --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "vous ne pouvez pas utiliser --symmetric --encrypt en mode %s.\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nom du fichier]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nom du fichier]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nom du fichier]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "Vous ne pouvez pas utiliser --symmetric --sign --encrypt avec\n" "--s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "vous ne pouvez pas utiliser --symmetric --sign --encrypt\n" "en mode %s.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nom du fichier]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nom du fichier]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nom du fichier]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key utilisateur" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key utilisateur" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key utilisateur [commandes]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'envoi vers le serveur de cls a chou: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la rception depuis le serveur de cls a chou: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "l'export de la cl a chou: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "la recherche au sein du serveur de cls a chou: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "le rafrachissement par le serveur de cls a chou: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "la suppression d'une armure a chou: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "la construction d'une armure a chou: %s \n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algorithme de hachage `%s' invalide\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nom du fichier]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Vous pouvez taper votre message...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "l'URL de politique de certification donne est invalide\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "l'URL de politique de signature donne est invalide\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL du serveur de cls favori qui a t donne est invalide\n" @@ -7678,21 +7678,21 @@ msgstr "impossible de se connecter msgid "unknown validation model `%s'\n" msgstr "option `%s' inconnue\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossible d'accder `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/gl.po b/po/gl.po index 87cd6712d..e5d833e01 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.4\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -92,7 +92,7 @@ msgstr "contrasinal err msgid "ssh keys greater than %d bits are not supported\n" msgstr "o algoritmo de proteccin %d%s non est soportado\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -101,12 +101,12 @@ msgstr "non se pode crear `%s': %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "non se puido abrir `%s': %s\n" @@ -287,7 +287,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -377,7 +377,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy @@ -386,157 +386,157 @@ msgstr "" "Por favor, informe dos erros no programa a ,\n" "e dos erros na traduccin a .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opcins] [ficheiros] (-h para ve-la axuda)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: non existe o ficheiro de opcins por defecto `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opcins `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "lendo as opcins de `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "erro ao crear `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "non se pode crea-lo directorio `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "non foi posible crear %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Revocacin de certificado vlida" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent non est dispoible nesta sesin\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar a `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "a actualizacin fallou: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "gravando a chave secreta en `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directorio creado\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de datos de confianza: fallou a lectura (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: non foi posible crear un directorio: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro lendo `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "o segredo da actualizacin fallou: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves omitidas\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent non est dispoible nesta sesin\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variable de ambiente GPG_AGENT_INFO mal formada\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -788,17 +788,17 @@ msgstr "cancelado polo usuario\n" msgid "problem with the agent\n" msgstr "problema co axente: o axente voltou coa resposta 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "non posible deshabilita-los volcados de 'core': %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" @@ -1284,7 +1284,7 @@ msgstr "Comando incorrecto (tente \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output non traballa con este comando\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "non se puido abrir `%s'\n" @@ -1596,7 +1596,7 @@ msgstr "empr msgid "key %s: secret key without public key - skipped\n" msgstr "chave %08lX: chave secreta sen chave pblica - omitida\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1604,132 +1604,132 @@ msgstr "" "@Comandos:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[ficheiro]|facer unha sinatura" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[ficheiro]|facer unha sinatura en texto claro" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "facer unha sinatura separada" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "cifrar datos" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "cifrar s con cifrado simtrico" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "descifrar datos (por defecto)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verificar unha sinatura" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "ve-la lista de chaves" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "ve-la lista de chaves e sinaturas" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "verifica-las sinaturas das chaves" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "ve-la lista de chaves e pegadas dactilares" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "ve-la lista de chaves secretas" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "borrar chaves do chaveiro pblico" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "borrar chaves do chaveiro secreto" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "asinar unha chave" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "asinar unha chave localmente" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "asinar ou editar unha chave" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "xerar un certificado de revocacin" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exportar chaves" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exportar chaves a un servidor de chaves" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importar chaves dun servidor de chaves" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "buscar chaves nun servidor de chaves" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "actualizar tdalas chaves dun servidor de chaves" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importar/mesturar chaves" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "actualiza-la base de datos de confianza" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [ficheiros]|visualizar resumos de mensaxes" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1740,48 +1740,48 @@ msgstr "" "Opcins:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "crear sada con armadura en ascii" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOME|cifrar para NOME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "empregar este id de usuario para asinar ou descifrar" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|axusta-lo nivel de compresin a N (0 desactiva)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "usar modo de texto cannico" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FICHEIRO|carga-lo mdulo de extensin FICHEIRO" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "non facer ningn cambio" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "avisar antes de sobrescribir" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1789,7 +1789,7 @@ msgstr "" "@\n" "(Vexa a pxina man para un listado completo de comandos e opcins)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1809,17 +1809,17 @@ msgstr "" " --list-keys [nomes] amosa-las chaves\n" " --fingerprint [nomes] amosa-las pegadas dactilares\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Por favor, informe dos erros no programa a ,\n" "e dos erros na traduccin a .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uso: gpg [opcins] [ficheiros] (-h para ve-la axuda)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1829,7 +1829,7 @@ msgstr "" "asinar, verificar, cifrar ou descifrar\n" "a operacin por defecto depende dos datos de entrada\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1837,564 +1837,564 @@ msgstr "" "\n" "Algoritmos soportados:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Pblica: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cifra: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compresin: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uso: gpg [opcins] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "comandos conflictivos\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "non se atopou un signo = na definicin do grupo \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr " creouse un novo ficheiro de configuracin `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "amosar en que chaveiro est unha chave listada" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: ignrase o antigo ficheiro de opcins por defecto `%s'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s non para uso normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcins de importacin non vlidas\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "opcins de importacin non vlidas\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non un xogo de caracteres vlido\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "opcins de exportacin non vlidas\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "non se puido estabrecer exec-path a %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opcins de exportacin non vlidas\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: o programa pode crear un ficheiro 'core'!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s fai que se ignore %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s non se admite con %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s non ten sentido empregndoo con %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "s pode crear sinaturas separadas ou en claro no modo --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "non pode asinar e cifrar ao mesmo tempo no modo --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "debe empregar ficheiros (e non canalizacins) ao traballar con --pgp2 " "activado.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "para cifrar unha mensaxe en modo --pgp2 precsase da cifra IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de resumo seleccionado non vlido\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non vlido\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de resumo de certificacin seleccionado non vlido\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser superior a 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser superior a 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth debe valer entre 1 e 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nivel de comprobacin por defecto non vlido; debe ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nivel de comprobacin por defecto non vlido; debe ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: desaconsllase encarecidamente o modo S2K simple (0)\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non vlido; debe ser 0, 1 ou 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "preferencias por defecto non vlidas\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "preferencias de cifrado personais non vlidas\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "preferencias de resumo personais non vlidas\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "preferencias de compresin personais non vlidas\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s anda non traballa con %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "non se pode empregar o algoritmo de cifrado \"%s\" no modo %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "non se pode empregar o algoritmo de resumo \"%s\" no modo %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "non se pode empregar o algoritmo de compresin \"%s\" no modo %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: deronse destinatarios (-r) sen empregar cifrado de chave pblica\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [ficheiro]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [ficheiro]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "o descifrado fallou: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [ficheiro]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "non se pode empregar %s no modo %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [ficheiro]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [ficheiro]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "non se pode empregar %s no modo %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ficheiro]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [ficheiro]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [ficheiro]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id-de-usuario" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id-de-usuario" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-de-usuario [comandos]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "o envo ao servidor de chaves fallou: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "a recepcin do servidor de chaves fallou: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "a exportacin da chave fallou: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "a busca no servidor de chaves fallou fallou: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "a actualizacin no servidor de chaves fallou: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "non se puido quita-la armadura: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "non se puido poe-la armadura: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash non vlido `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[ficheiro]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Escriba a sa mensaxe ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "o URL de normativa de certificacin dado non vlido\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non vlido\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non vlido\n" @@ -7647,21 +7647,21 @@ msgstr "non se puido conectar a `%s': %s\n" msgid "unknown validation model `%s'\n" msgstr "destinatario por defecto `%s' descoecido\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "escribindo a `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "non se pode pechar `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index e35bd4d73..5e7560ffd 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-06-19 21:53+0200\n" "Last-Translator: Nagy Ferenc Lszl \n" "Language-Team: Hungarian \n" @@ -92,7 +92,7 @@ msgstr "rossz jelsz msgid "ssh keys greater than %d bits are not supported\n" msgstr "%d%s vd algoritmus nem tmogatott.\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -101,12 +101,12 @@ msgstr "Nem tudom l #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "Nem tudom megnyitni a(z) \"%s\" llomnyt: %s.\n" @@ -286,7 +286,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -374,164 +374,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "A hibkat (angolul) a cmre rja meg!\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Hasznlat: gpg [opcik] [fjlok] (-h a sghoz)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MEGJEGYZS: Nincs alaprtelmezett opcis fjl (%s).\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "\"%s\" opcis fjl: %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "Az opcikat a \"%s\" llomnybl olvasom.\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "Hiba \"%s\" ltrehozsakor: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Nem tudom a \"%s\" knyvtrat ltrehozni: %s.\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s nem hozhat ltre: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "GPG gynk nem elrhet ebben a munkafolyamatban.\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "Hiba a jelsz ltrehozsakor: %s.\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "Hiba %s-ra/-re kldskor: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "Frissts sikertelen: %s.\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "rom a titkos kulcsot a %s llomnyba.\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: Knyvtrat ltrehoztam.\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "Bizalmi adatbzis: olvass sikertelen (n=%d): %s.\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: Nem tudom a knyvtrat ltrehozni: %s.\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "Hiba \"%s\" olvassakor: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "Titkoskulcs-blokk frisstse sikertelen: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: kihagyva: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "GPG gynk nem elrhet ebben a munkafolyamatban.\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "Nem megfelel formj GPG_AGENT_INFO krnyezeti vltoz!\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -783,17 +783,17 @@ msgstr "A felhaszn msgid "problem with the agent\n" msgstr "Problma az gynkkel: gynk vlasza: 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "Nem tudom letiltani a core fjlokat: %s.\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" @@ -1278,7 +1278,7 @@ msgstr " msgid "--output doesn't work for this command\n" msgstr "Az --output opci nem mkdik ehhez a parancshoz.\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "Nem tudom megnyitni %s-t!\n" @@ -1585,7 +1585,7 @@ msgstr "A %08lX m msgid "key %s: secret key without public key - skipped\n" msgstr "%08lX kulcs: titkos kulcs nyilvnos kulcs nlkl - kihagytam.\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1593,132 +1593,132 @@ msgstr "" "@Parancsok:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fjl]|alrs ksztse" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fjl]|olvashat szveg alrsa" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "klnll alrs ksztse" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "adat titkostsa" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "titkosts csak szimmetrikus rejtjelezvel" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "adat visszafejtse (alaprtelmezs)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "alrs ellenrzse" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "kulcsok listzsa" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "kulcsok s alrsok listzsa" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "kulcsalrsok ellenrzse" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "kulcsok s ujjlenyomatok listzsa" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "titkos kulcsok listzsa" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "j kulcspr ltrehozsa" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "kulcsok eltvoltsa a nyilvnoskulcs-karikrl" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "kulcsok eltvoltsa a titkoskulcs-karikrl" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "kulcs alrsa" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "kulcs alrsa helyileg" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "kulcs alrsa vagy szerkesztse" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "visszavonsi igazols ksztse" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "kulcsok exportlsa" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "kulcsok exportlsa kulcsszerverre" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "kulcsok importlsa kulcsszerverrl" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "kulcsok keresse kulcsszerveren" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "minden kulcs frisstse kulcsszerverrl" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "kulcsok importlsa/sszefzse" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "bizalmi adatbzis frisstse" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [fjlok]|zenet kivonatnak kirsa" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1729,48 +1729,48 @@ msgstr "" "Opcik:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "ascii pnclozott kimenet ltrehozsa" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NV|titkosts NV rszre" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "felh. azonost alrshoz s visszafejtshez" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|tmrtsi szint belltsa N-re (0: tilts)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "kanonikus szveges md hasznlata" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|fjl|bvt modul betltse" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "ne csinljon semmi vltoztatst" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "fellrs eltt rkrdezs" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1778,7 +1778,7 @@ msgstr "" "@\n" "(A parancsok s opcik teljes listjt a man oldalon tekintheti meg.)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1798,15 +1798,15 @@ msgstr "" " --list-keys [nevek] kulcsok kiratsa\n" " --fingerprint [nevek] ujjlenyomatok kiratsa\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "A hibkat (angolul) a cmre rja meg!\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Hasznlat: gpg [opcik] [fjlok] (-h a sghoz)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1816,7 +1816,7 @@ msgstr "" "Alrs, ellenrzs, titkosts vagy visszafejts.\n" "Az alaprtelmezett mvelet a bemeneti adattl fgg.\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1824,562 +1824,562 @@ msgstr "" "\n" "Tmogatott algoritmusok:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Nyilvnos kulcs (pubkey): " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Rejtjelez (cipher): " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Kivonatol (hash): " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Tmrt (compression): " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "Hasznlat: gpg [opcik] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "Egymsnak ellentmond parancsok!\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "Nem talltam = jelet a \"%s\" csoportdefinciban!\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "FIGYELEM: Nem biztonsgos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "FIGYELEM: nem biztonsgos engedlyek: %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrtulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrtulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrtulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrengedlyek: %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrengedlyek: %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "FIGYELEM: nem biztonsgos knyvtrengedlyek: %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "\"%s\": ismeretlen konfigurcis elem.\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "mutatja a kilistzott kulcs kulcskarikjt is" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nincs megfelel alrs a titkoskulcs-karikn.\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MEGJEGYZS: Figyelmen kvl hagytam a rgi opcikat (%s).\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MEGJEGYZS: %s nem norml hasznlatra van!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "rtelmezhetetlen a kulcsszerver URI-ja!\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: rvnytelen import opcik!\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "rvnytelen import opcik!\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nem rvnyes karakterkioszts!\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "rvnytelen export opcik!\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Nem tudom a vgrehajtsi elrsi utat %s rtkre lltani!\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: rvnytelen export opcik!\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "FIGYELEM: A program core llomnyt hozhat ltre!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "FIGYELEM: %s hatstalantja %s-t!\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s s %s nem hasznlhat egytt!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s rtelmetlen %s mellett!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "rom a titkos kulcsot a %s llomnyba.\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "Csak klnll s olvashatszveg-alrst kszthet --pgp2 mdban!\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Nem rhat al s titkosthat egyszerre --pgp2 mdban!\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Csak llomnyokat (pipe-ot nem) hasznlhat --pgp2 mdban!\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "zenet titkostsa --pgp2 mdban IDEA rejtjelezt ignyel!\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "A kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "A kivlasztott rejtjelez algoritmus rvnytelen!\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "Az igazolshoz kivlasztott kivonatol algoritmus rvnytelen!\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed nagyobb kell legyen 0-nl!\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed nagyobb kell legyen 1-nl!\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 1 s 255 kz kell essen!\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "rvnytelen default-cert-level; 0, 1, 2 vagy 3 lehet.\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "rvnytelen min-cert-level; 0, 1, 2 vagy 3 lehet.\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MEGJEGYZS: Egyszer S2K md (0) ersen ellenjavallt!\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "rvnytelen S2K md; 0, 1 vagy 3 lehet.\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "rvnytelen alaprtelmezett preferencik!\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "rvnytelen szemlyes rejtjelez-preferencik!\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "rvnytelen szemlyes kivonatolpreferencik!\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "rvnytelen szemlyes tmrtpreferencik!\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s s %s egyelre nem hasznlhat egytt!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "Lehet, hogy nem hasznlhatja \"%s\" rejtjelez algoritmust %s mdban!\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "Lehet, hogy nem hasznlhatja \"%s\" kivonatol algoritmust %s mdban!\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "Lehet, hogy nem hasznlhatja \"%s\" tmrt algoritmust %s mdban!\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Bizalmi adatbzis (%s) inicializlsa sikertelen!\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "FIGYELEM: Cmzett megadva (-r), de nincs nyilvnos kulcs titkosts!\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [fjlnv]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [fjlnv]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "Visszafejts sikertelen: %s.\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [fjlnv]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "Lehet, hogy nem hasznlhatja %s-t %s mdban!\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [fjlnv]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [fjlnv]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "Lehet, hogy nem hasznlhatja %s-t %s mdban!\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [fjlnv]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [fjlnv]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [fjlnv]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key felh-azonost" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key felh-azonost" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key felh-azonost [parancsok]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "Klds a kulcsszerverre sikertelen: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Vtel a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "Kulcsexportls sikertelen: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "Keress a kulcsszerveren sikertelen: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Frissts a kulcsszerverrl sikertelen: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "Pncl eltvoltsa nem sikerlt: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "Pnclozs nem sikerlt: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "rvnytelen kivonatol algoritmus: %s\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[fjlnv]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Kezdheti gpelni az zenetet...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "A megadott igazolsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "A megadott alrsi eljrsmd URL-je rvnytelen!\n" @@ -7604,21 +7604,21 @@ msgstr "Nem tudok kapcsol msgid "unknown validation model `%s'\n" msgstr "Ismeretlen alaprtelmezett cmzett: \"%s\"\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "rok a \"%s\" llomnyba.\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "Nem tudom bezrni a(z) \"%s\" llomnyt: %s.\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/id.po b/po/id.po index bca8720ee..e7ca0c424 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-id\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -94,7 +94,7 @@ msgstr "passphrase yang buruk" msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritma proteksi %d%s tidak didukung\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -103,12 +103,12 @@ msgstr "tidak dapat membuat %s: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "tidak dapat membuka `%s': %s\n" @@ -288,7 +288,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -376,164 +376,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Laporkan bug ke .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Pemakaian: gpg [pilihan] [file] (-h untuk bantuan)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "CATATAN: tidak ada file pilihan baku `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "file pilihan `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "membaca pilihan dari `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "kesalahan penciptaan : `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "tidak dapat membuat direktori `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent tidak tersedia untuk sesi ini\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "kesalahan mengirim ke `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "gagal memperbarui: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: direktori tercipta\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read failed (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: tidak dapat membuat direktori: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "gagal perbarui rahasia: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: dilewati: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent tidak tersedia untuk sesi ini\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabel lingkungan GPG_AGENT_INFO salah bentuk\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -785,17 +785,17 @@ msgstr "dibatalkan oleh user\n" msgid "problem with the agent\n" msgstr "masalah dengan agen: agen mengembalikan 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "tidak dapat meniadakan core dump: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" @@ -1281,7 +1281,7 @@ msgstr "Perintah tidak valid (coba \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output tidak berfungsi untuk perintah ini\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "tidak dapat membuka `%s'\n" @@ -1587,7 +1587,7 @@ msgstr "menggunakan kunci sekunder %08lX bukannya kunci primer %08lX\n" msgid "key %s: secret key without public key - skipped\n" msgstr "kunci %08lX: kunci rahasia tanpa kunci publik - dilewati\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1595,132 +1595,132 @@ msgstr "" "@Perintah:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[file]|buat signature" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[file]|buat signature teks" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "buat detached signature" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "enkripsi data" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "enkripsi hanya dengan symmetric cipher" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "dekripsi data (default)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verifikasi signature" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "tampilkan kunci" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "tampilkan kunci dan signature" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "periksa signature kunci" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "tampilkan kunci dan fingerprint" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "tampilkan kunci rahasia" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "hapus kunci dari keyring publik" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "hapus kunci dari keyring pribadi" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "tandai kunci" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "tandai kunci secara lokal" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "tandai atau edit kunci" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "buat sertifikat revokasi" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "ekspor kunci" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "ekspor kunci ke key server" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "impor kunci dari key server" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "cari kunci di key server" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "update semua kunci dari keyserver" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "impor/gabung kunci" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "perbarui database trust" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [file]|cetak digest pesan" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1731,48 +1731,48 @@ msgstr "" "Pilihan:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "ciptakan output ascii" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NAMA|enkripsi untuk NAMA" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "gunakan id-user ini untuk menandai/dekripsi" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|set tingkat kompresi N (0 tidak ada)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "gunakan mode teks kanonikal" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FILE|muat modul ekstensi FILE" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "jangan buat perubahan" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "tanya sebelum menimpa" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1780,7 +1780,7 @@ msgstr "" "@\n" "(Lihat man page untuk daftar lengkap semua perintah dan option)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1800,15 +1800,15 @@ msgstr "" " --list-keys [nama] tampilkan kunci\n" " --fingerprint [nama] tampilkan fingerprint\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Laporkan bug ke .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Pemakaian: gpg [pilihan] [file] (-h untuk bantuan)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1818,7 +1818,7 @@ msgstr "" "tandai, cek, enkripsi atau dekripsi\n" "operasi baku tergantung pada data input\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1826,570 +1826,570 @@ msgstr "" "\n" "Algoritma yang didukung:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cipher: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Kompresi: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "pemakaian: gpg [pilihan] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "perintah saling konflik\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "tanda = tidak ditemukan dalam definisi grup \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "Item Konfigurasi tidak dikenal \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "tampilkan keyring tempat kunci yang dipilih berada" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "CATATAN: file pilihan baku lama `%s' diabaikan\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "CATATAN: %s tidak untuk pemakaian normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "tidak dapat memparsing URI keyserver\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "tidak dapat menset path exec ke %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "PERINGATAN: program mungkin membuat file core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "PERINGATAN: %s menimpa %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s tidak dibolehkan dengan %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s tidak masuk akal dengan %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "anda hanya dapat membuat signature detached atau clear saat dalam mode --" "pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "anda tidak dapat menandai dan mengenkripsi pada saat bersamaan dalam mode --" "pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "anda harus menggunakan file (dan bukan pipe) saat bekerja dengan opsi --" "pgpg2\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "mengenkripsi pesan dalam mode --pgp2 membutuhkan cipher IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "algoritma digest yang dipilih tidak valid\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritma sertifikasi digest yang dipilih tidak valid\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed harus lebih dari 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed harus lebih dari 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth harus di antara 1 hingga 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "level cert default tidak valid; harus 0, 1, 2, atau 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "level cert min tidak valid; harus 0, 1, 2, atau 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K yang tidak valid; harus 0, 1 atau 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "preferensi baku tidak valid\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "preferensi cipher personal tidak valid\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "preferensi digest personal tidak valid\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "preferensi kompresi personal tidak valid\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s belum dapat dipakai dengan %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma cipher \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma digest \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma kompresi \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "Peringatan: penerima yang disebutkan (-r) tanpa menggunakan enkripsi public " "key \n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [namafile]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [namafile]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "dekripsi gagal: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [namafile]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [namafile]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [namafile]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [namafile]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [namafile]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [namafile]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id-user" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id-user" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-user [perintah]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Penerimaan keyserver gagal: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "Ekspor kunci gagal: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "Pencarian keyserver gagal: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh keyserver gagal: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "gagal dearmoring: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[namafile]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Teruskan dan ketikkan pesan anda ....\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "URL sertifikasi kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" @@ -7605,21 +7605,21 @@ msgstr "tidak dapat terkoneksi ke `%s': %s\n" msgid "unknown validation model `%s'\n" msgstr "penerima baku tidak dikenal `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "menulis ke `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "tidak dapat menutup `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/it.po b/po/it.po index 31db5f1ff..3082446a9 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.1.92\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-06-16 17:01+0200\n" "Last-Translator: Marco d'Itri \n" "Language-Team: Italian \n" @@ -92,7 +92,7 @@ msgstr "passphrase errata" msgid "ssh keys greater than %d bits are not supported\n" msgstr "l'algoritmo di protezione %d%s non gestito\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -101,12 +101,12 @@ msgstr "impossibile creare `%s': %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossibile aprire `%s': %s\n" @@ -286,7 +286,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -374,164 +374,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Per favore segnala i bug a .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opzioni] [files] (-h per l'aiuto)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: manca il file `%s' con le opzioni predefinite\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "file con le opzioni `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "lettura delle opzioni da `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "errore creando `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossibile creare la directory `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossibile creare %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent non disponibile in questa sessione\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "errore nella creazione della passhprase: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aggiornamento fallito: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directory creata\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read fallita (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossibile creare la directory: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aggiornamento della chiave segreta fallito: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: saltata: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent non disponibile in questa sessione\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabile di ambiente GPG_AGENT_INFO malformata\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -783,17 +783,17 @@ msgstr "interrotto dall'utente\n" msgid "problem with the agent\n" msgstr "problema con l'agent: ha restituito 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossibile disabilitare i core dump: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" @@ -1280,7 +1280,7 @@ msgstr "Comando non valido (prova \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output non funziona con questo comando\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossibile aprire `%s'\n" @@ -1596,7 +1596,7 @@ msgstr "uso la chiave secondaria %08lX invece della chiave primaria %08lX\n" msgid "key %s: secret key without public key - skipped\n" msgstr "chiave %08lX: chiave segreta senza chiave pubblica - saltata\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1604,132 +1604,132 @@ msgstr "" "@Comandi:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[file]|fai una firma" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[file]|fai una firma mantenendo il testo in chiaro" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "fai una firma separata" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "cifra dati" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "cifra solo con un cifrario simmetrico" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "decifra dati (predefinito)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verifica una firma" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "elenca le chiavi" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "elenca le chiavi e le firme" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "controlla le firme delle chiavi" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "elenca le chiavi e le impronte digitali" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "elenca le chiavi segrete" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "genera una nuova coppia di chiavi" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "rimuove le chiavi dal portachiavi pubblico" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "rimuove le chiavi dal portachiavi privato" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "firma una chiave" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "firma una chiave localmente" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "firma o modifica una chiave" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "genera un certificato di revoca" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "esporta delle chiavi" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "esporta le chiavi a un key server" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importa le chiavi da un key server" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "cerca delle chiavi su un key server" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "aggiorna tutte le chiavi da un key server" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importa/aggiungi delle chiavi" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "aggiorna il database della fiducia" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [files]|stampa tutti i message digests" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1740,48 +1740,48 @@ msgstr "" "Opzioni:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "crea un output ascii con armatura" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOME|cifra per NOME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "usa questo user-id per firmare o decifrare" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|imposta il livello di compressione (0 disab.)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "usa il modo testo canonico" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FILE|carica il modulo di estensione FILE" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "non fa cambiamenti" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "chiede prima di sovrascrivere" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1789,7 +1789,7 @@ msgstr "" "@\n" "(Vedi la man page per una lista completa di tutti i comandi e opzioni)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1809,15 +1809,15 @@ msgstr "" " --list-keys [nomi] mostra le chiavi\n" " --fingerprint [nomi] mostra le impronte digitali\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Per favore segnala i bug a .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uso: gpg [opzioni] [files] (-h per l'aiuto)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1827,7 +1827,7 @@ msgstr "" "firma, controlla, cifra o decifra\n" "l'operazione predefinita dipende dai dati di input\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1835,565 +1835,565 @@ msgstr "" "\n" "Algoritmi gestiti:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "A chiave pubblica: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cifrari: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compressione: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uso: gpg [opzioni] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "comandi in conflitto\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "non stato trovato il segno = nella definizione del gruppo \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "ATTENZIONE: il proprietario \"%s\" di %s insicuro\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "ATTENZIONE: i permessi \"%s\" di %s sono insicuri\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "elemento della configurazione sconosciuto \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostra in quali portachiavi sono contenute le chiavi elencate" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Manca la firma corrispondente nel portachiavi segreto\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "" "NOTA: il vecchio file `%s' con le opzioni predefinite stato ignorato\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s normalmente non deve essere usato!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossibile fare il parsing dell'URI del keyserver\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non un set di caratteri valido\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossibile impostare exec-path a %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENZIONE: %s ha la precedenza su %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "Non permesso usare %s con %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "Non ha senso usare %s con %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "nella modalit --pgp2 puoi fare solo firme in chiaro o separate\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "nella modalit --pgp2 non puoi firmare e cifrare contemporaneamente\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "devi usare dei file (e non una pipe) quando lavori con --pgp2 attivo.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" "nella modalit --pgp2 richiesto il cifrario IDEA per cifrare un messaggio\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non valido\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non valido\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non valido\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non valido\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve essere maggiore di 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve essere maggiore di 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve essere tra 1 e 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level non valido; deve essere 0, 1, 2 o 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level non valido; deve essere 1, 2 o 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: l'uso del modo S2K semplice (0) fortemente scoraggiato\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non valido; deve essere 0, 1 o 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "preferenze predefinite non valide\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "preferenze personali del cifrario non valide\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "preferenze personali del digest non valide\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "preferenze personali di compressione non valide\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s non funziona ancora con %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "non possibile usare l'algoritmo di cifratura \"%s\" in modalit %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "non possibile usare l'algoritmo di digest \"%s\" in modalit %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "non possibile usare l'algoritmo di compressione \"%s\" in modalit %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ATTENZIONE: sono stati indicati dei destinatari (-r) senza usare la\n" "crittografia a chiave pubblica\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nomefile]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nomefile]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifratura fallita: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nomefile]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "non possibile usare %s in modalit %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nomefile]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nomefile]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "non possibile usare %s in modalit %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nomefile]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nomefile]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nomefile]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [comandi]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "invio al keyserver fallito: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "ricezione dal keyserver fallita: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "esportazione della chiave fallita: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "ricerca nel keyserver fallita: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aggiornamento del keyserver fallito: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "rimozione dell'armatura fallita: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo di hash non valido `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nomefile]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Vai avanti e scrivi il messaggio...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "l'URL della politica di certificazione indicato non valido\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "l'URL della politica di firma indicato non valido\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL della politica di firma indicato non valido\n" @@ -7649,21 +7649,21 @@ msgstr "impossibile connettersi a `%s': %s\n" msgid "unknown validation model `%s'\n" msgstr "destinatario predefinito `%s' sconosciuto\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "scrittura in `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossibile chiudere `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 7d08bfd3a..e7554177a 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.3.92\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-11-23 11:14+0900\n" "Last-Translator: IIDA Yosiaki \n" "Language-Team: Japanese \n" @@ -96,7 +96,7 @@ msgstr " msgid "ssh keys greater than %d bits are not supported\n" msgstr "ݸ%dϥݡȤƤޤ\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -105,12 +105,12 @@ msgstr " #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "%sפޤ: %s\n" @@ -290,7 +290,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -378,164 +378,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Х򸫤Ĥ ޤǤ𤯤\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Ȥ: gpg [ץ] [ե] (إפ -h)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr ": Υץ󡦥ե%sפޤ\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "ץ󡦥ե%s: %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "%sפ饪ץɤ߽Фޤ\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "%sפκ顼: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "Υågpg-agent̵Ǥ\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "PINμ顼: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "%sפǿѥ쥳ɤθ顼: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "%sפ̩񤭹ߤޤ\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d)%sǼԤޤ: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "ǥ쥯ȥ꡼%sפǤޤ: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "%sפɽФ顼: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "̩ι˼Ԥޤ: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: å: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "Υågpg-agent̵Ǥ\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFOĶѿν񼰤ޤ\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -787,17 +787,17 @@ msgstr " msgid "problem with the agent\n" msgstr "Ȥ˾㳲: Ȥ0x%lxֵ\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "פѶػߤˤǤޤ: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ٹ: ĥ%sפΰǤʤͭ\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ٹ: ĥ%sפΰǤʤ\n" @@ -1253,7 +1253,7 @@ msgstr "̵ msgid "--output doesn't work for this command\n" msgstr "Υޥɤ--outputϵǽޤ\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "%sפޤ\n" @@ -1546,7 +1546,7 @@ msgstr " msgid "key %s: secret key without public key - skipped\n" msgstr "%s: Τʤ̩Ǥ - ȤФޤ\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1554,131 +1554,131 @@ msgstr "" "@ޥ:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[ե]|̾" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[ե]|ꥢ̾" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "ʬΥ̾" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "ǡŹ沽" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "Ź沽ˤоΰŹˡΤߤ" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "ǡ ()" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "̾򸡾" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "ΰ" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "Ƚ̾ΰ" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "̾θȰ" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "Ȼΰ" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "̩ΰ" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "Ф" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "ؤ鸰" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "̩ؤ鸰" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "˽̾" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "Ū˽̾" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "ؤν̾Խ" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "񤭽Ф" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "С˸񤭽Ф" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "С鸰ɤ߹" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "Сθ򸡺" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "С鸰" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "ɹ/ʻ" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "ɾ֤ɽ" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "ɤΥǡѹ" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "ɤPINѹ" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "ѥǡ١򹹿" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|르ꥺ [ե]|åɽ" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1689,52 +1689,52 @@ msgstr "" "ץ:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "ASCII" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|̾|̾Ѥ˰Ź沽" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "" "̾ˤΥ桼id\n" "" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "" "|N|̥٥N\n" "(0󰵽)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "ƥȡ⡼ɤ" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "%sפ饪ץɤ߽Фޤ\n" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "̵ѹ" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "˳ǧ" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "̩OpenPGPο" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "PGP 2.xߴΥå" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1743,7 +1743,7 @@ msgstr "" "(ޥɤȥץΰϡ\n" "ޥ˥奢롦ڡ)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1763,15 +1763,15 @@ msgstr "" " --list-keys [̾] ɽ\n" " --fingerprint [̾] ɽ\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Х򸫤Ĥ ޤǤ𤯤\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Ȥ: gpg [ץ] [ե] (إפ -h)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1781,7 +1781,7 @@ msgstr "" "̾Ź沽\n" "ϡϥǡ˰¸\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1789,551 +1789,551 @@ msgstr "" "\n" "ݡȤƤ륢르ꥺ:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr ": " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Źˡ: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "ϥå: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr ": " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "Ȥ: gpg [ץ] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "Ω륳ޥ\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "=椬롼%s˸Ĥޤ\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤͭ\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤͭ\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤͭ\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤ\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤ\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤ\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤ̥ǥ쥯ȥ꡼ͭ\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤ̥ǥ쥯ȥ꡼ͭ\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤ̥ǥ쥯ȥ꡼ͭ\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "ٹ: homedir %sפΰǤʤ̥ǥ쥯ȥ꡼\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "ٹ: ե%sפΰǤʤ̥ǥ쥯ȥ꡼\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "ٹ: ĥ%sפΰǤʤ̥ǥ쥯ȥ꡼\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "̤Τιܡ%s\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "̩ؤб̾ޤ\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "ꤵ줿СURL̵Ǥ\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "̩ȸΰȿž" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "̩ؤб̾ޤ\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr ": Ρäץ󡦥ե%sפϡ̵뤵ޤ\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr ": %sϻȤޤ!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "СURLǽ\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ̵ʸСץǤ\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "̵ʸСץǤ\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ̵ɹߥץǤ\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "̵ɹߥץǤ\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ̵ʽФץǤ\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "̵ʽФץǤ\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ̵ʰץǤ\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "̵ʰץǤ\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "ꤵ줿СURL̵Ǥ\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%sפϡͭʸǤϤޤ\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ̵ʸڥץǤ\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "̵ʸڥץǤ\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path%sǽ\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ̵ʸڥץǤ\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "ٹ: ץΥե뤬Ǥ뤳Ȥޤ!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ٹ: %s%sͥ\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s%sȤȤ˻ȤȤϤǤޤ!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s%sȤȤ˻ȤäƤ̵̣Ǥ!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%sפ̩֤񤭹ߤޤ\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤʬΥ̾ꥢ̾Ǥޤ\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2⡼ɤǤϽ̾ȰŹ沽ƱˤǤޤ\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2ꤷ顢(ѥפǤʤ) եꤻͤФʤޤ\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2⡼ɤΥåŹ沽ǤϡIDEAŹˡɬפǤ\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "򤵤줿Ź楢르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "򤵤줿󥢥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "򤵤줿̥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "򤵤줿󥢥르ꥺϡ̵Ǥ\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-neededͤɬפǤ\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed1礭ͤɬפǤ\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth1255ϰϤǤʤФʤޤ\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "̵default-cert-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "̵min-cert-level0123ǤʤФʤޤ\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr ": ñS2K⡼(0)λѤˤ϶ȿФޤ\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "̵S2K⡼ɡ013ǤʤФʤޤ\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "̵ʴ\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "̵ʸĿѰŹˡ\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "̵ʸĿ\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "̵ʸĿѰ̤\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s%sǵǽޤ\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "Ź楢르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "󥢥르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "̥르ꥺ%sפ%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "ѥǡ١ν˼Ԥޤ: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "ٹ: ŹȤ鷺ˡ (-r) ꤷƤޤ\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [ե̾]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [ե̾]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "%sפоΰŹ˼Ԥޤ: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [ե̾]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [ե̾]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--symmetric --encrypt--s2k-mode 0ǻȤȤϤǤޤ\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "--symmetric --encrypt%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [ե̾]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [ե̾]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [ե̾]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--symmetric --sign --encrypt--s2k-mode 0ǻȤȤϤǤޤ\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "--symmetric --sign --encrypt%s⡼ɤǻȤȤϤǤޤ\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [ե̾]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [ե̾]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [ե̾]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key 桼id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key 桼id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key 桼id [ޥ]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "Сؤ˼Ԥޤ: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Сμ˼Ԥޤ: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "νФ˼Ԥޤ: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "Сθ˼Ԥޤ: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Сβ˼Ԥޤ: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "˼Ԥޤ: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "̵ʥϥå塦르ꥺ%sפǤ\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[ե̾]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "ϤޤåǤäƤ ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "줿ݥꥷURL̵Ǥ\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "줿̾ݥꥷURL̵Ǥ\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "ꤵ줿СURL̵Ǥ\n" @@ -7424,21 +7424,21 @@ msgstr " msgid "unknown validation model `%s'\n" msgstr "̤ΤΥץ%s\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "%sפ˥Ǥޤ: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/nb.po b/po/nb.po index 138030cf6..0148735f3 100644 --- a/po/nb.po +++ b/po/nb.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.3\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2006-06-13 20:31+0200\n" "Last-Translator: Trond Endrestl \n" "Language-Team: Norwegian Bokml \n" @@ -96,7 +96,7 @@ msgstr "ugyldig passfrase" msgid "ssh keys greater than %d bits are not supported\n" msgstr "" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -105,12 +105,12 @@ msgstr "kan ikke opprette #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "kan ikke pne %s: %s\n" @@ -290,7 +290,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -378,162 +378,162 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Vennligst rapporter feil til .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Bruksmte: gpg [valg] [filer] (-h for hjelp)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MERK: ingen standard valgfil %s\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "valgfil %s: %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "leser valg fra %s\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kan ikke opprette katalogen %s: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke opprette %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "feil ved henting av ny PIN: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "feil ved sking etter tillitspost i %s: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "oppdatering mislyktes: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmelig nkkel til %s\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "katalogen %s ble opprettet\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) mislyktes in %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "kan ikke opprette katalogen %s: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "feil ved lesing av %s: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "oppdatering av hemmelig mislyktes: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: hoppet over: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -779,17 +779,17 @@ msgstr "" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ADVARSEL: utrygt eierskap p utvidelsen %s\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ADVARSEL: utrygge rettigheter p utvidelsen %s\n" @@ -1243,7 +1243,7 @@ msgstr "Ugyldig kommando (pr msgid "--output doesn't work for this command\n" msgstr "--output virker ikke for denne kommandoen\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "kan ikke pne %s\n" @@ -1542,7 +1542,7 @@ msgstr "bruker undern msgid "key %s: secret key without public key - skipped\n" msgstr "nkkel %s: hemmelig nkkel uten offentlig nkkel - hoppet over\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1550,131 +1550,131 @@ msgstr "" "@Kommandoer:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fil]|lage en signatur" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fil]|lage en klartekstsignatur" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "lage en adskilt signatur" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "kryptere data" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "kryptering med bare symmetrisk cipher" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "dekryptere data (standard)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "bekrefte en signatur" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "liste nkler" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "liste nkler og signaturer" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "vise og sjekke nkkelsignaturer" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "liste nkler og fingeravtrykk" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "liste hemmelige nkler" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "generere et nytt nkkelpar" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "fjerne nkler fra det offentlige nkkelknippet" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "fjerne nkler fra det hemmelige nkkelknippet" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "signere en nkkel" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "signere en nkkel lokalt" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "signere eller redigere en nkkel" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "generere et opphevingssertifikat" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "eksportere nkler" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "eksportere nkler til en nkkelserver" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importere nkler fra en nkkelserver" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "ske etter nkler p en nkkelserver" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "oppdatere alle nklene fra en nkkelserver" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importere/flette nkler" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "vis kortets status" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "endre data p et kort" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "endre PIN p et kort" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "oppdatere tillitsdatabasen" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [filer]|skrive meldingsdigester" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1685,48 +1685,48 @@ msgstr "" "Valg:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "lage ASCII-beskyttet output" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NAVN|kryptere for NAVN" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "bruke denne brukeriden for signering eller dekryptering" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|sette kompresjonsniv til N (0 slr av kompresjon)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "bruk kanonisk tekstmodus" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "leser valg fra %s\n" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "ikke gjr noen endringer" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "spr fr overskriving" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "bruk streng OpenPGP-oppfrsel" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "generere PGP 2.x-kompatible meldinger" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1734,7 +1734,7 @@ msgstr "" "@\n" "(Se mansiden for en komplett liste over alle kommandoene og valgene)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1754,15 +1754,15 @@ msgstr "" " --list-keys [navn] vise nkler\n" " --fingerprint [navn] vise fingeravtrykk\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Vennligst rapporter feil til .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Bruksmte: gpg [valg] [filer] (-h for hjelp)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1772,7 +1772,7 @@ msgstr "" "signere, sjekke, kryptere eller dekryptere\n" "standard operasjon avhenger av inputdata\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1780,77 +1780,77 @@ msgstr "" "\n" "Stttede algoritmer:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Offentlig nkkel: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cipher: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Kompresjon: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "bruksmte: gpg [valg] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "motstridende kommandoer\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "fant ingen =-tegn i gruppedefinisjonen %s\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ADVARSEL: utrygt eierskap p hjemmekatalogen %s\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ADVARSEL: utrygt eierskap p konfigurasjonsfilen %s\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ADVARSEL: utrygt eierskap p utvidelsen %s\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ADVARSEL: utrygge rettigheter p hjemmekatalogen %s\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ADVARSEL: utrygge rettigheter p konfigurasjonsfilen %s\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ADVARSEL: utrygge rettigheter p utvidelsen %s\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "ADVARSEL: utrygt eierskap p katalogene p nivene over hjemmekatalogen %" "s\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1858,20 +1858,20 @@ msgstr "" "ADVARSEL: utrygt eierskap p katalogene p nivene over konfigurasjonsfilen " "%s\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "ADVARSEL: utrygt eierskap p katalogene p nivene over utvidelsen %s\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "ADVARSEL: utrygge rettigheter p katalogene p nivene over hjemmekatalogen " "%s\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1879,456 +1879,456 @@ msgstr "" "ADVARSEL: utrygge rettigheter p katalogene p nivene over " "konfigurasjonsfilen %s\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "ADVARSEL: utrygge rettigheter p katalogene p nivene over utvidelsen %s\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "ukjent konfigurasjonspunkt %s\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "vise navnet til nkkelknippene i nkkellister" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "MERK: den gamle valgfila %s ble ignorert\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "MERK: %s er ikke for vanlig bruk!\n" # Tenk litt p denne du, Trond. -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s er ikke en gyldig signaturutgelse\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "%s er ikke et gyldig tegnsett\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "kunne ikke parse nkkelserverens URL\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ugyldige valg for nkkelserver\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "ugyldige valg for nkkelserver\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ugyldige importvalg\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "ugyldige importvalg\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ugyldige eksportvalg\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "ugyldige eksportvalg\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ugyldige listevalg\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "ugyldige listevalg\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 msgid "show all notations during signature verification" msgstr "" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 msgid "show user ID validity during signature verification" msgstr "" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 msgid "show only the primary user ID in signature verification" msgstr "" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "ugyldige valg for bekreftelse\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunne ikke sette exec-path til %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ugyldig auto-key-locate-liste\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "ADVARSEL: programmet kan opprette en corefil!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ADVARSEL: %s overstyrere %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s er ikke tillatt sammen med %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er ikke fornuftig med %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "du kan bare lage adskilte eller klare signaturer i --pgp2-modus\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "du kan ikke signere og kryptere samtidig i --pgp2-modus\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "du m bruke filer (og ikke en pipe) nr --pgp2 er psltt\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "kryptering en melding i --pgp2-modus krever IDEA-algoritmen\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "valgt krypteringsalgoritme er ugyldig\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "valg digestalgoritme er ugyldig\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "valgt kompresjonsalgoritme er ugyldig\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "valgt sertifikasjondigestalgoritme er ugyldig\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed m vre strre enn 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-neede m vre strre enn 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth m vre i intervallet fra 1 til 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ugyldig default-cert-level; m vre 0, 1, 2 eller 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ugyldig min-cert-level; m vre 0, 1, 2 eller 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "MERK: enkel S2K-modus (0) er sterkt frardet\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K-modus; m vre 0, 1 eller 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "ugyldig standard preferanser\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "ugyldig personlig cipherpreferanser\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "ugyldig personlig digestpreferanser\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "ugyldig personlig kompresjonspreferanser\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s virker ikke enn med %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "du kan ikke bruke cipheralgoritmen %s i %s-modus\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "du kan ikke bruke digestalgoritmen %s i %s-modus\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "du kan ikke bruke kompresjonsalgoritmen %s i %s-modus\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "klarte ikke initialisere tillitsdatabasen: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ADVARSEL: mottakere (-r) angitt uten bruke offentlig nkkelkryptering\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [filnavn]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [filnavn]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av %s mislyktes: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [filnavn]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnavn]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "du kan ikke bruke --symmtric --encrypt i %s-modus\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [filnavn]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnavn]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnavn]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "du kan ikke bruke --symmetric --sign --encrypt i %s-modus\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnavn]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [filnavn]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [filnavn]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key brukerid" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key brukerid" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key brukerid [kommandoer]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "sending til nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "mottak fra nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "nkkeleksport mislyktes: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "sk p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "refresh p nkkelserver mislyktes: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ugyldig hashalgoritme %s\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[filnavn]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Sett i gang og tast inn meldingen din ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "den angitte URLen for sertifikasjonspolicyen er ugyldig\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "den angitte URLen for signaturpolicy er ugyldig\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angitte URLen for den foretrukkede nkkelserveren er ugyldig\n" @@ -7294,21 +7294,21 @@ msgstr "kan ikke opprette msgid "unknown validation model `%s'\n" msgstr "ukjent valg %s\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "kan ikke aksere %s: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/pt.po b/po/pt.po index 34149d709..7469f25de 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2002-09-13 18:26+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -95,7 +95,7 @@ msgstr "frase secreta incorrecta" msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritmo de proteco %d%s no suportado\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -104,12 +104,12 @@ msgstr "imposs #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" @@ -289,7 +289,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -378,164 +378,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Por favor comunique bugs para .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opes] [ficheiros] (-h para ajuda)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: ficheiro de opes por omisso `%s' inexistente\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opes `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "a ler opes de `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "erro ao criar `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: impossvel criar directoria: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossvel criar %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "o gpg-agent no est disponvel nesta sesso\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro na criao da frase secreta: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar para `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizao falhou: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "a escrever chave privada para `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directoria criada\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de dados de confiana: leitura falhou (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossvel criar directoria: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignorado: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "o gpg-agent no est disponvel nesta sesso\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "varivel de ambiente GPG_AGENT_INFO invlida\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -787,17 +787,17 @@ msgstr "cancelado pelo utilizador\n" msgid "problem with the agent\n" msgstr "problema com o agente: o agente returnou 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossvel desactivar core dumps: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" @@ -1284,7 +1284,7 @@ msgstr "Comando inv msgid "--output doesn't work for this command\n" msgstr "--output no funciona para este comando\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -1589,7 +1589,7 @@ msgstr "usando chave secund msgid "key %s: secret key without public key - skipped\n" msgstr "chave %08lX: chave secreta sem chave pblica - ignorada\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1597,132 +1597,132 @@ msgstr "" "@Comandos:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[ficheiro]|fazer uma assinatura" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[ficheiro]|fazer uma assinatura em texto puro" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "fazer uma assinatura separada" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "cifrar dados" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "cifrar apenas com cifra simtrica" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "decifrar dados (aco por omisso)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verificar uma assinatura" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "listar as chaves" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "listar as chaves e as assinaturas" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "verificar as assinaturas das chaves" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "listar as chaves e as impresses digitais" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "listar as chaves secretas" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "remover chaves do porta-chaves pblico" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "remover chaves do porta-chaves secreto" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "assinar uma chave" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "assinar uma chave localmente" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "assinar ou editar uma chave" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "gerar um certificado de revogao" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exportar chaves" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exportar chaves para um servidor de chaves" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importar chaves de um servidor de chaves" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "procurar chaves num servidor de chaves" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "actualizar todas as chaves a partir de um servidor de chaves" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importar/fundir chaves" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "actualizar a base de dados de confiana" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [ficheiros]|imprimir \"digests\" de mensagens" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1733,52 +1733,52 @@ msgstr "" "Opes:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "criar sada com armadura ascii" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOME|cifrar para NOME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "" "usar este identificador de utilizador para\n" "assinar ou decifrar" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "" "|N|estabelecer nvel de compresso N\n" "(0 desactiva)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "usar modo de texto cannico" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FICHEIRO|carregar mdulo de extenso FICHEIRO" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "no fazer alteraes" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "perguntar antes de sobrepr" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1786,7 +1786,7 @@ msgstr "" "@\n" "(Veja a pgina man para uma lista completa de comandos e opes)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1806,15 +1806,15 @@ msgstr "" " --list-keys [nomes] mostrar chaves\n" " --fingerprint [nomes] mostrar impresses digitais\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Por favor comunique bugs para .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uso: gpg [opes] [ficheiros] (-h para ajuda)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1824,7 +1824,7 @@ msgstr "" "assina, verifica, cifra ou decifra\n" "a operao por omisso depende dos dados de entrada\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1832,563 +1832,563 @@ msgstr "" "\n" "Algoritmos suportados:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Chave pblica: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cifra: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Disperso: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compresso: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uso: gpg [opes] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "comandos em conflito\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "nenhum sinal = encontrada na definio de grupo \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "AVISO: permisses pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "criado um novo ficheiro de configurao `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostrar em que porta-chave a chave est" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: o ficheiro antigo de opes por omisso `%s' foi ignorado\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no para uso normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "no consegui processar a URI do servidor de chaves\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opes de importao invlidas\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "opes de importao invlidas\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "opes de exportao invlidas\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "no foi possvel alterar o exec-path para %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opes de exportao invlidas\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um ficheiro core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sobrepe %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "s pode fazer assinaturas separadas ou em texto puro no modo --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "no pode assinar e cifrar ao mesmo tempo no modo --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "deve utilizar ficheiros (e no um 'pipe') quando trabalho no modo --pgp2.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "cifrar uma mensagem no modo --pgp2 necessita da cifra IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado invlido\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado invlido\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" de certificao selecionado invlido\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nvel de verificao por omisso invlido: deve ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nvel de verificao por omisso invlido: deve ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) no recomendvel\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K invlido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "preferncias por omisso invlidas\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "preferncias pessoais de cifra invlidas\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "preferncias pessoais de 'digest' invlidas\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "preferncias pessoais de compresso invlidas\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "no pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "no pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "no pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar a base de dados de confiana: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: destinatrios (-r) dados sem utilizar uma cifra de chave pblica\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nome_do_ficheiro]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "decifragem falhou: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "no pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nome_do_ficheiro]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_ficheiro]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "no pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nome_do_ficheiro]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_ficheiro]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_ficheiro]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id-utilizador" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizador" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizador [comandos]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizao da chave secreta falhou: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "criao de armadura falhou: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de disperso invlido `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nome_do_ficheiro]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Digite a sua mensagem ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "a URL de poltica de certificao dada invlida\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica de assinatura dada invlida\n" @@ -7616,21 +7616,21 @@ msgstr "imposs msgid "unknown validation model `%s'\n" msgstr "destinatrio por omisso desconhecido `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "a escrever para `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossvel fechar `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 2be01605a..b24ec90e2 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2007-08-16 11:35+0200\n" "Last-Translator:\n" "Language-Team: ?\n" @@ -99,7 +99,7 @@ msgstr "frase secreta incorreta" msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritmo de proteo %d no suportado\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, fuzzy, c-format @@ -108,12 +108,12 @@ msgstr "imposs #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" @@ -294,7 +294,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -382,162 +382,162 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Por favor comunique bugs para .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opes] [arquivos] (-h para ajuda)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: arquivo de opes padro `%s' inexistente\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de opes `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "lendo opes de `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, fuzzy, c-format msgid "error creating `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: impossvel criar diretrio: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossvel criar %s: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "Certificado de revogao vlido" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "erro na criao da frase secreta: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "atualizao falhou: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escrevendo certificado privado para `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: diretrio criado\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "banco de dados de confiabilidade: leitura falhou (n=%d): %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossvel criar diretrio: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "atualizao da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves ignoradas\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, fuzzy, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -785,17 +785,17 @@ msgstr "" msgid "problem with the agent\n" msgstr "" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "impossvel desativar core dumps: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "%s: novo arquivo de opes criado\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "%s: novo arquivo de opes criado\n" @@ -1287,7 +1287,7 @@ msgstr "Comando inv msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "impossvel abrir `%s'\n" @@ -1588,7 +1588,7 @@ msgstr "usando chave secund msgid "key %s: secret key without public key - skipped\n" msgstr "chave %08lX: chave secreta sem chave pblica - ignorada\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1596,138 +1596,138 @@ msgstr "" "@Comandos:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[arquivo]|fazer uma assinatura" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[arquivo]|fazer uma assinatura em texto puro" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "fazer uma assinatura separada" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "criptografar dados" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "" "criptografar apenas com criptografia\n" "simtrica" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "descriptografar dados (padro)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verificar uma assinatura" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "listar as chaves" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "listar as chaves e as assinaturas" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "verificar as assinaturas das chaves" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "listar as chaves e as impresses digitais" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "listar as chaves secretas" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:390 +#: g10/gpg.c:387 #, fuzzy msgid "remove keys from the public keyring" msgstr "remover a chave do chaveiro pblico" -#: g10/gpg.c:392 +#: g10/gpg.c:389 #, fuzzy msgid "remove keys from the secret keyring" msgstr "remover a chave do chaveiro secreto" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "assinar uma chave" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "assinar uma chave localmente" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "assinar ou editar uma chave" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "gerar um certificado de revogao" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exportar chaves" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exportar chaves para um servidor" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importar chaves de um servidor" -#: g10/gpg.c:402 +#: g10/gpg.c:399 #, fuzzy msgid "search for keys on a key server" msgstr "exportar chaves para um servidor" -#: g10/gpg.c:404 +#: g10/gpg.c:401 #, fuzzy msgid "update all keys from a keyserver" msgstr "importar chaves de um servidor" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importar/fundir chaves" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "atualizar o banco de dados de confiabilidade" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [arquivos]|imprimir \"digests\" de mensagens" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1738,58 +1738,58 @@ msgstr "" "Opes:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "criar sada com armadura ascii" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NOME|criptografar para NOME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "" "usar este identificador de usurio para\n" "assinar ou descriptografar" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "" "|N|estabelecer nvel de compresso N\n" "(0 desabilita)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "usar modo de texto cannico" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|ARQUIVO|carregar mdulo de extenso ARQUIVO" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "no fazer alteraes" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" msgstr "" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1809,15 +1809,15 @@ msgstr "" " --list-keys [nomes] mostrar chaves\n" " --fingerprint [nomes] mostrar impresses digitais\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Por favor comunique bugs para .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Uso: gpg [opes] [arquivos] (-h para ajuda)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1827,7 +1827,7 @@ msgstr "" "assina, verifica, criptografa ou descriptografa\n" "a operao padro depende dos dados de entrada\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1835,573 +1835,573 @@ msgstr "" "\n" "Algoritmos suportados:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "" -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "" -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "" -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 #, fuzzy msgid "Compression: " msgstr "Comentrio: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "uso: gpg [opes] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "comandos conflitantes\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "%s: novo arquivo de opes criado\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "alterna entre listagem de chave secreta e pblica" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no chaveiro secreto\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, fuzzy, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOTA: arquivo de opes padro `%s' inexistente\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOTA: %s no para uso normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "impossvel escrever para o chaveiro: %s\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 #, fuzzy msgid "invalid import options\n" msgstr "armadura invlida" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 #, fuzzy msgid "invalid export options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "armadura invlida" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no um conjunto de caracteres vlido\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "chaveiro invlido" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVISO: `%s' um arquivo vazio\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um arquivo core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no permitido com %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "escrevendo certificado privado para `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 #, fuzzy msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado no vlido\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 #, fuzzy msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "modo S2K invlido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 #, fuzzy msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "modo S2K invlido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) no recomendvel\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K invlido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 #, fuzzy msgid "invalid default preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 #, fuzzy msgid "invalid personal cipher preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 #, fuzzy msgid "invalid personal digest preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 #, fuzzy msgid "invalid personal compress preferences\n" msgstr "lista preferncias" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s no faz sentido com %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "o algoritmo de criptografia selecionado no vlido\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar o banco de dados de confiabilidade: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nome_do_arquivo]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "descriptografia falhou: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nome_do_arquivo]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nome_do_arquivo]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [nome_do_arquivo]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 #, fuzzy msgid "--sign --symmetric [filename]" msgstr "--symmetric [nome_do_arquivo]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nome_do_arquivo]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nome_do_arquivo]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id-usurio" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id-usurio" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-usurio [comandos]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "enumerao de chaves secretas falhou: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A gerao de chaves falhou: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record falhou: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "enumerao de chaves secretas falhou: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "criao de armadura falhou: %s\n" # "hash" poderia ser "espalhamento", mas no fica claro -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritmo de hash invlido `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nome_do_arquivo]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "V em frente e digite sua mensagem ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 #, fuzzy msgid "the given certification policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 #, fuzzy msgid "the given signature policy URL is invalid\n" msgstr "a URL de poltica dada invlida\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de poltica dada invlida\n" @@ -7571,21 +7571,21 @@ msgstr "imposs msgid "unknown validation model `%s'\n" msgstr "destinatrio padro desconhecido `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "escrevendo para `%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "impossvel abrir `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/ro.po b/po/ro.po index ef6c03bbc..c528897a3 100644 --- a/po/ro.po +++ b/po/ro.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2005-05-31 22:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -98,7 +98,7 @@ msgstr "fraz msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritm rezumat %d nu este suportat\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -107,12 +107,12 @@ msgstr "nu pot crea `%s': %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nu pot deschide `%s': %s\n" @@ -293,7 +293,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -381,164 +381,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "Raportai bug-uri la .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Folosire: gpg [opiuni] [fiiere] (-h pentru ajutor)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOT: nici un fiier opiuni implicit `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "fiier opiuni `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "citesc opiuni din `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "eroare la creearea `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nu pot crea directorul `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nu pot crea `%s': %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent nu este disponibil n aceast sesiune\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "eroare la obinere noului PIN: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eroare trimitere la `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizarea a euat: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scriu cheia secret n `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "director `%s' creat\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) a euat n %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nu pot crea director: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "eroare la citire `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizarea secretului a euat: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: srit: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nu este disponibil n aceast sesiune\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabila de mediu GPG_AGENT_INFO anormal\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -793,17 +793,17 @@ msgstr "anulat msgid "problem with the agent\n" msgstr "problem cu agentul: agentul returneaz 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nu pot deactiva generarea fiierelor core: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "AVERTISMENT: proprietate nesigur (unsafe) pentru extensia `%s'\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "AVERTISMENT: permisiuni nesigure (unsafe) pentru extensia `%s'\n" @@ -1260,7 +1260,7 @@ msgstr "Comand msgid "--output doesn't work for this command\n" msgstr "--output nu merge pentru aceast comand\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nu pot deschide `%s'\n" @@ -1563,7 +1563,7 @@ msgstr "folosim subcheia %s msgid "key %s: secret key without public key - skipped\n" msgstr "cheia %s: cheie secret fr cheie public - srit\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1571,131 +1571,131 @@ msgstr "" "@Comenzi:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fiier]|creaz o semntur" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fiier]|creaz o semntur text n clar" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "creaz o semntur detaat" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "cifreaz datele" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "cifreaz numai cu cifru simetric" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "decripteaz datele (implicit)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verific o semntur" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "enumer chei" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "enumer chei i semnturi" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "enumer i verific semnturile cheii" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "enumer chei i amprente" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "enumer chei secrete" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "genereaz o nou perechi de chei" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "terge chei de pe inelul de chei public" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "terge chei de pe inelul de chei secret" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "semneaz o cheie" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "semneaz o cheie local" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "semneaz sau editeaz o cheie" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "genereaz un certificat de revocare" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "export chei" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "export chei pentru un server de chei" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "import chei de la un server de chei" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "caut pentru chei pe un server de chei" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "actualizeaz toate cheile de la un server de chei" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "import/combin chei" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "afieaz starea cardului" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "schimb data de pe card" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "schimb PIN-ul unui card" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "actualizeaz baza de date de ncredere" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [fiiere]|afieaz rezumate mesaje" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1706,48 +1706,48 @@ msgstr "" "Opiuni:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "creaz ieire n armur ascii" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NUME|cifrare pentru NUME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "folosete acest id-utilizator pentru a semna sau decripta" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|seteaz nivel de compresie N (0 deactiveaz)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "folosete modul text canonic" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FIIER|ncarc modulul extensie FIIER" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "nu face nici o schimbare" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "ntreab nainte de a suprascrie" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "folosete comportament strict OpenPGP" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "genereaz mesaje compatibile cu PGP 2.x" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1755,7 +1755,7 @@ msgstr "" "@\n" "(Arat pagina man pentru o list complet a comenzilor i opiunilor)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1775,15 +1775,15 @@ msgstr "" " --list-keys [nume] arat chei\n" " --fingerprint [nume] arat amprente\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "Raportai bug-uri la .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Folosire: gpg [opiuni] [fiiere] (-h pentru ajutor)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1793,7 +1793,7 @@ msgstr "" "sign, check, encrypt sau decrypt\n" "operaiunea implicit depinde de datele de intrare\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1801,81 +1801,81 @@ msgstr "" "\n" "Algoritmuri suportate:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Cifru: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Compresie: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "folosire: gpg [opiuni] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "comenzi n conflict\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "nu am gsit nici un semn = n definiia grupului `%s'\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "" "AVERTISMENT: proprietate nesigur (unsafe) pentru directorul home `%s'\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "" "AVERTISMENT: proprietate nesigur (unsafe) pentru fiier configurare `%s'\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "AVERTISMENT: proprietate nesigur (unsafe) pentru extensia `%s'\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "" "AVERTISMENT: permisiuni nesigure (unsafe) pentru directorul home `%s'\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "" "AVERTISMENT: permisiuni nesigure (unsafe) pentru fiier configurare `%s'\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "AVERTISMENT: permisiuni nesigure (unsafe) pentru extensia `%s'\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru " "directorul home `%s'\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1883,21 +1883,21 @@ msgstr "" "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru fiier " "configurare `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru " "extensia `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru " "directorul home `%s'\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1905,471 +1905,471 @@ msgstr "" "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru fiier " "configurare `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru " "extensia `%s'\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "articol configurare necunoscut `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "Nici o semntur corespunztoare n inelul secret\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "arat cruia dintre inelele de chei i aparine o cheie enumerat" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nici o semntur corespunztoare n inelul secret\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "NOT: fisier opiuni implicite vechi `%s' ignorat\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "NOT: %s nu este pentru o folosire normal!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' nu este un set de carectere valid\n" # -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "nu am putut interpreta URL-ul serverului de chei\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opiuni server de chei invalide\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "opiuni server de chei invalide\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opiuni import invalide\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "opiuni import invalide\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opiuni export invalide\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "opiuni export invalide\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opiuni enumerare invalide\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "opiuni enumerare invalide\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nu este expirare de semntur valid\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opiuni verificare invalide\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "opiuni verificare invalide\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nu pot seta cale-execuie ca %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opiuni verificare invalide\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "AVERTISMENT: programul ar putea crea un fiier core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTISMENT: %s nlocuiete %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s nu este permis cu %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nu are sens cu %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nu va rula cu memorie neprotejat (insecure) pentru c %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "putei crea doar semnturi detaate sau n clar ct vreme suntei n modul " "--pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "" "nu putei semna i cifra n acelai timp ct vreme suntei n modul --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "" "trebuie s folosii fiiere (i nu un pipe) cnd lucrai cu modul --pgp2 " "activat.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "cifrarea unui mesaj n modul --pgp2 necesit un cifru IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "algoritm cifrare selectat este invalid\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "algoritm rezumat selectat este invalid\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "algoritm compresie selectat este invalid\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "algoritm rezumat certificare selectat este invalid\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed trebuie s fie mai mare dect 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed trebuie s fie mai mare dect 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth trebuie s fie n intervalul de la 1 la 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level invalid; trebuie s fie 0, 1, 2 sau 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level invalid; trebuie s fie 0, 1, 2 sau 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "NOT: modul S2K simplu (0) este contraindicat cu insisten\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mod S2K invalid; trebuie s fie 0, 1 sau 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "preferine implicite invalide\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "preferine cifrare personale invalide\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "preferine rezumat personale invalide\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "preferine compresie personale invalide\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s nu merge nc cu %s!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "nu putei folosi algoritmul de cifrare `%s' ct vreme n modul %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "nu putei folosi algorimul de rezumat `%s' ct vreme n modul %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "nu putei folosi algoritmul de compresie `%s' ct vreme n modul %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "am euat s iniializez TrustDB:%s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVERTISMENT: destinatari (-r) furnizai fr a folosi cifrare cu cheie " "public\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [nume_fiier]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [nume_fiier]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "cifrarea simetric a lui `%s' a euat: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [nume_fiier]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [nume_fiier]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nu putei folosi --symmetric --encrypt cu --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "nu putei folosi --symmetric --encrypt ct vreme n modul %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [nume_fiier]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [nume_fiier]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [nume_fiier]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nu putei folosi --symmetric --sign --encrypt cu --s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "nu putei folosi --symmetric --sign --encrypt ct vreme n modul %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [nume_fiier]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [nume_fiier]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [nume_fiier]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id-utilizator" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id-utilizator" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id-utilizator [comenzi]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "trimitere server de chei euat: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepie server de chei euat: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "export cheie euat: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "cutare server de chei euat: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizare server de chei euat: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminarea armurii a euat: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "punerea armurii a euat: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "algoritm hash invalid `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[nume_fiier]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Dai-i drumul i scriei mesajul ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "URL-ul politicii de certificare furnizat este invalid\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "URL-ul politicii de semnturi furnizat este invalid\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" @@ -7516,21 +7516,21 @@ msgstr "nu m msgid "unknown validation model `%s'\n" msgstr "opiune necunoscut `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "nu pot accesa `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index abd704cf8..ffbbe60ad 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 2.0.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2006-11-07 19:31+0300\n" "Last-Translator: Maxim Britov \n" "Language-Team: Russian \n" @@ -88,7 +88,7 @@ msgstr "Фраза-пароль" msgid "ssh keys greater than %d bits are not supported\n" msgstr "не поддерживаются ssh ключи превышающие %d бит\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -97,12 +97,12 @@ msgstr "не могу создать `%s': %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "не могу открыть `%s': %s\n" @@ -276,7 +276,7 @@ msgstr "запуск в режиме сервера (foreground)" msgid "run in daemon mode (background)" msgstr "запуск в режиме демона (background)" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -359,17 +359,17 @@ msgstr "разрешить эмуляцию ssh-агента" msgid "|FILE|write environment settings also to FILE" msgstr "|FILE|сохранить состояние в файл" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 msgid "Please report bugs to <" msgstr "О найденных ошибках сообщайте <" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Использование: gpg-agent [параметры] (-h для подсказки)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -377,145 +377,145 @@ msgstr "" "Синтаксис: gpg-agent [параметры] [команда [аргументы]]\n" "Управление закрытыми ключами для GnuPG\n" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "запрошен недупустимый уровень отладки `%s'\n" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, fuzzy, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "libksba слишком устаревшая (требуется %s, имеется %s)\n" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "ЗАМЕЧАНИЕ: файл конфигурации `%s' не обнаружен\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "файл конфигурации `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "параметры конфигурации из файла `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "ошибка создания `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "не могу создать каталог `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "имя сокета слишком длинное\n" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, c-format msgid "can't create socket: %s\n" msgstr "не могу создать сокет: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "имя сокета слишком длинное\n" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "нет gpg-agent доступого для данной сессии\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "ошибка при получении нового PIN: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "ошибка связывния сокета с `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, c-format msgid "listen() failed: %s\n" msgstr "" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, c-format msgid "listening on socket `%s'\n" msgstr "слушаем сокет `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "создан каталог `%s'\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, c-format msgid "can't use `%s' as home directory\n" msgstr "невозможно использовать `%s' как домашний каталог\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "ошибка чтения из %s: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, c-format msgid "%s %s stopped\n" msgstr "%s %s: остановлен\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "нет gpg-agent доступого для данной сессии\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "неправильная переменная окружения GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -767,17 +767,17 @@ msgstr "прервано пользователем\n" msgid "problem with the agent\n" msgstr "проблема с агентом\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "не могу отключить создание файла дампа образа памяти: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "ВНИМАНИЕ: небезопасный владелец %s \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "ВНИМАНИЕ: небезопасные права доступа %s \"%s\"\n" @@ -1233,7 +1233,7 @@ msgstr "Недопустимая команда (список команд: \"h msgid "--output doesn't work for this command\n" msgstr "--output не работает для данной команды\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "не могу открыть `%s'\n" @@ -1527,7 +1527,7 @@ msgstr "использую подклключ %s вместо главного msgid "key %s: secret key without public key - skipped\n" msgstr "ключ %s: секретный ключ без открытого ключа - пропущен\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1535,131 +1535,131 @@ msgstr "" "@Команды:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[файл]|создать подпись к файлу" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[файл]|создать прозрачную подпись к файлу" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "создать отделенную подпись" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "зашифровать данные" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "зашифровать только симметричным шифром" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "расшифровать данные (по умолчанию)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "проверить подпись" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "вывести список ключей" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "вывести список ключей и подписей" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "вывести и проверить подписи ключей" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "вывести список ключей и их отпечатков" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "вывести список секретных ключей" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "создать новую пару ключей" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "удалить ключи из таблицы открытых ключей" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "удалить ключи из таблицы закрытых ключей" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "подписать ключ" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "подписать ключ локально" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "подписать или редактировать ключ" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "создать сертификат отзыва" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "экспортировать ключи" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "экспортировать ключи на сервер ключей" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "импортировать ключи с сервера ключей" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "искать ключи на сервере ключей" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "обновить все ключи с сервера ключей" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "импортировать/объединить ключи" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "показать состояние карты" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "изменить данные на карте" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "сменить PIN карты" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "обновить таблицу доверий" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [файлы]|вывести хэши файлов" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "запуск в режиме сервера" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1670,48 +1670,48 @@ msgstr "" "Параметры:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "вывод в ASCII формате" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NAME|зашифровать для получателя NAME" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "использовать данный User ID для подписывания и расшифрования" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|установить уровень сжатия N (0 без сжатия)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "использовать канонический текстовый режим" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FILE|взять параметры из FILE" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "не делать никаких изменений" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "спросить перед перезаписью" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "строго следовать стандарту OpenPGP" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "создает сообщение совместимым с PGP 2.x" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1719,7 +1719,7 @@ msgstr "" "@\n" "(См. документацию для более полного ознакомления с командами и параметрами)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1739,15 +1739,15 @@ msgstr "" " --list-keys [имена] показать ключи\n" " --fingerprint [имена] показать отпечатки\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "О найденных ошибка сообщайте .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Использование: gpg [параметры] [файлы] (-h для подсказки)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1757,7 +1757,7 @@ msgstr "" "Подписи и их проверка, зашифрование и расшифрование\n" "действие по умолчанию зависит от входных данных\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1765,96 +1765,96 @@ msgstr "" "\n" "Поддерживаются следующие алгоритмы:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "С открытым ключом: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Симметричные шифры: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Хэш-функции: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Алгоритмы сжатия: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "использование: gpg [параметры] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "несовместимые команды\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "отсутствует знак = в определении группы `%s'\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "ВНИМАНИЕ: небезопасный владелец домашнего каталога `%s'\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "ВНИМАНИЕ: небезопасный владелец файла конфигурации `%s'\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "ВНИМАНИЕ: небезопасный владелец файла модуля расширения `%s'\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "ВНИМАНИЕ: небезопасные права доступа у домашнего каталога `%s'\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "ВНИМАНИЕ: небезопасные права доступа у файла конфигурации `%s'\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "ВНИМАНИЕ: небезопасные права доступа у файла модуля расширения `%s'\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасный владелец каталога содержащего домашний каталог `%s'\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасный владелец каталога содержащего файл конфигурации `%s'\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасный владелец каталога содержащего модуль расширения `%s'\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасные права доступа у каталога содержащего домашний каталог " "`%s'\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1862,461 +1862,461 @@ msgstr "" "ВНИМАНИЕ: небезопасные права доступа у каталога содержащего файл " "конфигурации `%s'\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "ВНИМАНИЕ: небезопасные права доступа у каталогу содержащего файл модуля " "расширения `%s'\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "неизвестный параметр в файле конфигурации `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "отображать Фото ID при распечатке ключей" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "показывать ссылку на политики при распечатке подписей" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "показывать все примечания в списке подписей" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" "показывать добавленные пользователем примечания при распечатке подписей" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "показываеть предпочитаемый сервер ключей с списке подписей" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "показывать действительность Used ID при распечатке ключей" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "показывать отозванные и просроченные User ID при распечатке ключей" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "показывать отозванные и просроченные ключи при распечатке списка" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "печатать имя таблиц ключей в списке ключей" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "печатать даты истечения в списке подписей" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libcrypt слишком старой версии (требуется %s, обнаружено %s)\n" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "ЗАМЕЧАНИЕ: старый файл конфигурации по умолчанию `%s' проигнорирован\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "ЗАМЕЧАНИЕ: %s не предназначен для обычного применения!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' недопустимая таблица символов\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "не могу проанализировать URL сервера ключей\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недопустимые параметры импорта\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "недопустимые параметры импорта\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недопустимые параметры экспорта\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "недопустимые параметры экспорта\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недопустимый список параметров\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "недопустимый список параметров\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "показывать Фото ID при проверке подписи" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "показывать ссылку на политики при проверке подписи" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 msgid "show all notations during signature verification" msgstr "показывать все примечания в процессе проверки подписей" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "показывать добавленные пользователем примечания при проверке подписей" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "печатать предпочитаемые серверы ключей при проверке подписей" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 msgid "show user ID validity during signature verification" msgstr "печатать действительность UserID при проверке подписей" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "показывать отозванные и просроченные User ID при проверке подписей" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "показывать отозванные и просроченные User ID при проверке подписей" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недопустимые параметры проверки \n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "недопустимые параметры проверки\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не могу определить путь запуска для %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недопустимый список auto-key-locate\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "недопустимый список auto-key-locate\n" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "ВНИМАНИЕ: возможно создание файла дампа памяти программы!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ВНИМАНИЕ: %s заместит %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не допускается использовать с %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s не имеет смысла совместно с %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "не будет работать с небезопасной памятью из-за %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "можно сделать только отделенную или прозрачную подпись в режиме --pgp2\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Нельзя одновременно подписать и зашифровать в режиме --pgp2\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Следует использовать файлы (а не каналы (pipe)) в режиме --pgp2.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "для зашифрования сообщения в режиме --pgp2 требуется шифр IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "выбран неверный алгоритм шифрования\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "выбран неверный алгоритм сжатия\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция для сертификации\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed должен быть больше 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed должен быть больше 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth должен быть в диапазоне от 1 до 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "недопустимый default-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "недопустимый min-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "ЗАМЕЧАНИЕ: простой режим S2K (0) строго не рекомендуется\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "недопустимый режим S2K; должно быть 0, 1 или 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "недопустимые предпочтения по умолчанию\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "недопустимые персональные предпочтения шифра\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "недопустимые персональные предпочтения хэш-функции\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "недопустимые персональные предпочтения алгоритмов сжатия\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s пока не работает совместно с %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "нельзя использовать шифрование `%s' в режиме %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "нельзя использовать хэш-функцию `%s' в режиме %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "нельзя использовать сжатие `%s' в режиме %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "сбой инициализации таблицы доверий: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым " "ключом\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [файл]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [файл]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "симметричное шифрование `%s' не удалось: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [файл]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [файл]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "нельзя использовать --symmetric --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --encrypt в режиме %s\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [файл]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [файл]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [файл]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --sign --encrypt в режиме %s\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [файл]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [файл]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [файл]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [команды]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "сбой при отправке на сервер ключей: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "сбой при получении с сервера ключей: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "сбой при экспорте ключа: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "сбой при поиске на сервере ключей: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "сбой при обновлении с сервера ключей: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "ошибка преобразования из ASCII формата: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "ошибка преобразования в ASCII формат: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "недопустимая хэш-функция `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[файл]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Набирайте Ваше сообщение ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "заданный URL политики сертификации неверен\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "заданный URL политики подписи неверен\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "заданный URL предпочитаемого сервера ключей неправилен\n" @@ -7381,21 +7381,21 @@ msgstr "не могу зашифровать для `%s': %s\n" msgid "unknown validation model `%s'\n" msgstr "неизвестный параметр `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "ВНИМАНИЕ: выполняемся с подделанным системным временем: " -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, c-format msgid "can't sign using `%s': %s\n" msgstr "невозможно подписать используя `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "данная команды всё еще не реализована\n" diff --git a/po/sk.po b/po/sk.po index e57bc347e..52c240bfc 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer \n" "Language-Team: Slovak \n" @@ -91,7 +91,7 @@ msgstr "nespr msgid "ssh keys greater than %d bits are not supported\n" msgstr "ochrann algoritmus %d%s nie je podporovn\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -100,12 +100,12 @@ msgstr "nem #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "nemem otvori `%s': %s\n" @@ -285,7 +285,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -373,7 +373,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy @@ -382,157 +382,157 @@ msgstr "" "Chyby oznmte, prosm, na adresu .\n" "Pripomienky k prekladu .\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Pouitie: gpg [monosti] [sbory] (-h pre pomoc)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZNMKA: neexistuje implicitn sbor s monosami `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "sbor s monosami `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "tam monosti z `%s'\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "chyba pri vytvran `%s': %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemem vytvori adresr `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: nemem vytvori: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent nie je v tomto seden dostupn\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "chyba pri vytvran hesla: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba pri posielan na `%s': %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizcia zlyhala: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisujem tajn k do `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: adresr vytvoren\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "databza dvery: procedra read() (n=%d) zlyhala: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nemem vytvori adresr: %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "chyba pri tan `%s': %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizcia tajnho ka zlyhala: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: preskoen: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nie je v tomto seden dostupn\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "zl formt premennej prostredia GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -784,17 +784,17 @@ msgstr "zru msgid "problem with the agent\n" msgstr "problm s agentom: agent vracia 0x%lx\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "nemem vypn vytvranie core sborov: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" @@ -1280,7 +1280,7 @@ msgstr "Neplatn msgid "--output doesn't work for this command\n" msgstr "--output pre tento prkaz nefunguje\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "nemono otvori `%s'\n" @@ -1588,7 +1588,7 @@ msgstr "pou msgid "key %s: secret key without public key - skipped\n" msgstr "k %08lX: tajn k bez verejnho ka - preskoen\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1596,132 +1596,132 @@ msgstr "" "@Prkazy:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[sbor]|vytvori podpis" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[sbor]|vytvori podpis v itatenom dokumente" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "vytvori podpis oddelen od dokumentu" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "ifrova dta" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "ifrovanie len so symetrickou ifrou" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "deifrova dta (implicitne)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "verifikova podpis" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "vypsa zoznam kov" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "vypsa zoznam kov a podpisov" -#: g10/gpg.c:386 +#: g10/gpg.c:383 #, fuzzy msgid "list and check key signatures" msgstr "skontrolova podpisy kov" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "vypsa zoznam kov a fingerprintov" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "vypsa zoznam tajnch kov" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "vytvori nov pr kov" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "odstrni k zo sboru verejnch kov" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "odstrni k zo sboru tajnch kov" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "podpsa k" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "podpsa k loklne" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "podpsa alebo modifikova k" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "vytvori revokan certifikt" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exportova ke" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exportova ke na server kov" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importova ke zo servera kov" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "vyhada ke na serveri kov" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "aktualizova vetky ke zo servera kov" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importova/zli ke" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "aktualizova databzu dvery" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [sbory]|vyp hash" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1732,52 +1732,52 @@ msgstr "" "Monosti:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "vytvor vstup zakdovan pomocou ASCII" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|MENO|ifrova pre MENO" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "" "poui toto id uvatea na podpsanie\n" " alebo deifrovanie" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "" "|N|nastavi rove komprimcie N (0 - iadna\n" " komprimcia)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "poui knonick textov md" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|SBOR|nahra rozirujci modul SBOR" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "nevykona iadne zmeny" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "vyiada potvrdenie pred prepsanm" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1786,7 +1786,7 @@ msgstr "" "(Pouite manulov strnky pre kompletn zoznam vetkch prkazov a " "monost)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1806,17 +1806,17 @@ msgstr "" " --list-keys [men] vypsa ke\n" " --fingerprint [men] vypsa fingerprinty\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Chyby oznmte, prosm, na adresu .\n" "Pripomienky k prekladu .\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Pouitie: gpg [monosti] [sbory] (-h pre pomoc)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1826,7 +1826,7 @@ msgstr "" "podpsa, overi, ifrova alebo deifrova\n" "implicitn opercie zvisia od vstupnch dt\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1834,569 +1834,569 @@ msgstr "" "\n" "Podporovan algoritmy:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Verejn ke: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "ifry: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Kompresia: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "pouitie: gpg [monosti] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "konfliktn prkazy\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, fuzzy, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no = podpis njden v defincii skupiny \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "VAROVANIE: vlastnctvo pre %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VAROVANIE: prstupov prva pre %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "VAROVANIE: vlastnctvo adresra %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "VAROVANIE: vlastnctvo adresra %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "VAROVANIE: vlastnctvo adresra %s nastaven nebezpene \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "VAROVANIE: prstupov prva adresra %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "" "VAROVANIE: prstupov prva adresra %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "VAROVANIE: prstupov prva adresra %s nie s nastaven bezpene \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, fuzzy, c-format msgid "unknown configuration item `%s'\n" msgstr "neznma poloka konfigurcie \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "uk v ktorom sbore kov je vypsan k" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "V sbore tajnch kov chba zodpovedajci podpis\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "POZNMKA: star implicitn sbor s monosami `%s ignorovan'\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "POZNMKA: %s nie je pre normlne pouitie!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, fuzzy, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, fuzzy, c-format msgid "`%s' is not a valid character set\n" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 #, fuzzy msgid "could not parse keyserver URL\n" msgstr "nemono poui URI servera kov - chyba analzy URI\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 #, fuzzy msgid "invalid keyserver options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatn parameter pre import\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "neplatn parameter pre import\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatn parameter pre import\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 #, fuzzy msgid "invalid list options\n" msgstr "neplatn parameter pre import\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nie je platn znakov sada\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 #, fuzzy msgid "invalid verify options\n" msgstr "neplatn parameter pre export\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nemono nastavi exec-path na %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatn parameter pre export\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "VAROVANIE: program me vytvori sbor core!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVANIE: %s prepe %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie je dovolen pouva %s s %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedva s %s zmysel!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "zapisujem tajn k do `%s'\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "v mde --pgp2 mete vytvra len oddelen podpisy alebo podpisy itaten " "ako text\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "v mde --pgp2 nemono sasne ifrova a podpisova\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "v mde --pgp2 muste poui sbor (nie rru).\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "ifrovanie sprv v mde --pgp2 vyaduje algoritmus IDEA\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 #, fuzzy msgid "selected compression algorithm is invalid\n" msgstr "vybran ifrovac algoritmus je neplatn\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "vybran hashovac algoritmus je neplatn\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "poloka completes-needed mus by via ako 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "poloka marginals-needed mus by via ako 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 #, fuzzy msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "poloka max-cert-depth mus by v rozmedz od 1 do 255\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "neplatn implicitn rove certifikcie; mus by 0, 1, 2 alebo 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "neplatn minimlna rove certifikcie; mus by 0, 1, 2 alebo 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNMKA: jednoduch md S2K (0) je drazne nedoporuovan\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatn md S2K; mus by 0, 1 alebo 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "neplatn defaultn predvoby\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "neplatn uvatesk predvoby pre ifrovanie\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "neplatn uvatesk predvoby pre hashovanie\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "neplatn uvatesk predvoby pre kompresiu\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ete nepracuje s %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, fuzzy, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "nemete poui ifrovac algoritmus \"%s\" v mde %s\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, fuzzy, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "nemete poui hashovac algoritmus \"%s\" v mde %s\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, fuzzy, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "nemete poui kompresn algoritmus \"%s\" v mde %s\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemem inicializova databzu dvery: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVANIE: dan adrest (-r) bez pouitia ifrovania s verejnm kom\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [meno sboru]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [meno sboru]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, fuzzy, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "deifrovanie zlyhalo: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [meno sboru]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 #, fuzzy msgid "--symmetric --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "" "pouitie %s nie je v mde %s dovolen\n" "\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [meno sboru]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 #, fuzzy msgid "--symmetric --sign --encrypt [filename]" msgstr "--sign --encrypt [meno sboru]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "pouitie %s nie je v mde %s dovolen\n" "\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [meno sboru]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [meno sboru]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [meno sboru]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key id uvatea" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key id uvatea" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key id uvatea [prkazy]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "nepodarilo posla k na server: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "nepodarilo sa prija k zo servera: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "nepodaril sa export ka: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "nepodarilo sa njs server: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aktualizcia servera zlyhala: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekdovanie z ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "kdovanie do ASCII formtu zlyhalo: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "neplatn hashovac algoritmus `%s'\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[meno sboru]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Zanite psa svoju sprvu ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "zadan URL pre certifikan politiku je neplatn\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "zadan URL pre podpisov politiku je neplatn\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 #, fuzzy msgid "the given preferred keyserver URL is invalid\n" msgstr "zadan URL pre podpisov politiku je neplatn\n" @@ -7625,21 +7625,21 @@ msgstr "nem msgid "unknown validation model `%s'\n" msgstr "neznmy implicitn adrest `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, fuzzy, c-format msgid "importing common certificates `%s'\n" msgstr "zapisujem do '%s'\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "nemem zavrie `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index 168825e3e..f35f0019b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg trunk\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2007-11-12 16:08+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -111,7 +111,7 @@ msgstr "Lösenfras" msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh-nycklar större än %d bitar stöds inte\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -120,12 +120,12 @@ msgstr "kan inte skapa \"%s\": %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "kan inte öppna \"%s\": %s\n" @@ -311,7 +311,7 @@ msgstr "kör i serverläge (förgrund)" msgid "run in daemon mode (background)" msgstr "kör i demonläge (bakgrund)" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -395,17 +395,17 @@ msgstr "aktivera ssh-agent-emulering" msgid "|FILE|write environment settings also to FILE" msgstr "|FIL|skriv miljöinställningar även till FIL" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 msgid "Please report bugs to <" msgstr "Rapportera fel till <" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Användning: gpg-agent [flaggor] (-h för hjälp)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -413,144 +413,144 @@ msgstr "" "Syntax: gpg-agent [flaggor] [kommando [argument]]\n" "Hantering av hemliga nycklar för GnuPG\n" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "ogiltig debug-level \"%s\" angiven\n" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "%s är för gammal (behöver %s, har %s)\n" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "OBS: inställningsfilen \"%s\" saknas\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "inställningsfil \"%s\": %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "läser inställningar från \"%s\"\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "Fel när \"%s\" skapades: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan inte skapa katalog: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "namnet på uttaget är för långt\n" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, c-format msgid "can't create socket: %s\n" msgstr "kan inte skapa uttag: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "namnet på uttaget \"%s\" är för långt\n" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 msgid "a gpg-agent is already running - not starting a new one\n" msgstr "en gpg-agent är redan igång - startar inte en till\n" # Jag har valt att inte översätta nonce. Nonce är data eller information som endast används en gång -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 msgid "error getting nonce for the socket\n" msgstr "fel vid hämtning av nonce för uttaget\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "fel när \"%s\" bands till uttag: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, c-format msgid "listen() failed: %s\n" msgstr "listen() misslyckades: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, c-format msgid "listening on socket `%s'\n" msgstr "lyssnar på uttaget \"%s\"\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "katalogen \"%s\" skapades\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat() misslyckades för \"%s\": %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, c-format msgid "can't use `%s' as home directory\n" msgstr "kan inte använda \"%s\" som hemkatalog\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "fel vid läsning av nonce på fd %d: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "hanteraren 0x%lx för fd %d startad\n" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "hanteraren 0x%lx för fd %d avslutad\n" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "ssh-hanteraren 0x%lx för fd %d startad\n" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "ssh-hanteraren 0x%lx för fd %d avslutad\n" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select misslyckades: %s - väntar 1 s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, c-format msgid "%s %s stopped\n" msgstr "%s %s stoppad\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "ingen gpg-agent kör i den här sessionen\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "miljövariabeln GPG_AGENT_INFO är felformaterad\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -807,18 +807,18 @@ msgstr "avbruten av användaren\n" msgid "problem with the agent\n" msgstr "problem med agenten\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "kan inte stänga av minnesutskrifter: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "Varning: osäkert ägarskap på %s \"%s\"\n" # Extension är vad? FIXME -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "Varning: osäkra rättigheter på %s \"%s\"\n" @@ -1281,7 +1281,7 @@ msgid "--output doesn't work for this command\n" msgstr "--output kan inte användas för detta kommando\n" # se förra kommentaren -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "kan inte öppna \"%s\"\n" @@ -1581,7 +1581,7 @@ msgstr "använder undernyckeln %s istället för primära nyckeln %s\n" msgid "key %s: secret key without public key - skipped\n" msgstr "nyckel %s: hemlig nyckel utan publik nyckel - hoppades över\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1589,133 +1589,133 @@ msgstr "" "@Kommandon:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[fil]|skapa en signatur" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[fil]|skapa en klartextsignatur" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "skapa signatur i en separat fil" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "kryptera data" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "kryptering endast med symmetriskt chiffer" # gnupg dekrypterar data om inget kommando anges dvs. kommandot "decrypt" behöver inte användas. -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "dekryptera data (standard)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "validera en signatur" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "lista nycklar" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "lista nycklar och signaturer" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "lista och kontrollera nyckelsignaturer" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "lista nycklar och fingeravtryck" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "lista hemliga nycklar" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "ta bort nycklar från den publika nyckelringen" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "ta bort nycklar från den hemliga nyckelringen" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "signera en nyckel" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "signera en nyckel lokalt" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "signera eller redigera en nyckel" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "generera ett spärrcertifikat" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "exportera nycklar" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "exportera nycklar till en nyckelserver" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "importera nycklar från en nyckelserver" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "sök efter nycklar hos en nyckelserver" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "uppdatera alla nycklar nycklar från en nyckelserver" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "importera/slå samman nycklar" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "skriv ut kortstatus" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "ändra data på ett kort" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "ändra PIN-kod för ett kort" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "uppdatera tillitsdatabasen" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [filer]|skriv ut kontrollsummor" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "kör i serverläge" # Här bruksanvisning för kommandoraden. Resultatet har jag översatt med "inställningar", eftersom flaggorna även kan förekomma i en inställningsfil. -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1726,50 +1726,50 @@ msgstr "" "Flaggor:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "skapa utdata med ett ascii-skal" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|NAMN|kryptera för NAMN" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "använd denna användaridentitet för att signera eller dekryptera" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|ställ in komprimeringsnivån till N (0 för att inaktivera)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "använd \"ursprunglig text\"-läget" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FIL|läs inställningar från FIL" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "gör inga ändringar" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "fråga innan överskrivning" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "använd strikt OpenPGP-beteende" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "generera PGP 2.x-kompatibla meddelanden" # inställningar istället för flaggor? # Nej, här är det bruksanvisningen för kommandoraden. -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1777,7 +1777,7 @@ msgstr "" "@\n" "(Se manualsidan för en fullständig lista över alla kommandon och flaggor)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1797,18 +1797,18 @@ msgstr "" "--list-keys [namn] visa nycklar\n" "--fingerprint [namn] visa fingeravtryck\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Rapportera fel till \n" "Skicka synpunkter på översättningen till \n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Användning: gpg [flaggor] [filer] (-h för hjälp)" # Om inget kommando anges (decrypt/encrypt etc) väljs åtgärd efter indata. -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1818,7 +1818,7 @@ msgstr "" "signera, kontrollera, kryptera eller dekryptera\n" "standardåtgärden beror på inmatningsdata\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1826,78 +1826,78 @@ msgstr "" "\n" "Algoritmer som stöds:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "Publik nyckel: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Chiffer: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Kontrollsumma: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Komprimering: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "Använda bibliotek:" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "användning: gpg [flaggor] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "motstridiga kommandon\n" # Vad betyder detta? -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "no = signatur hittad i gruppdefinitionen \"%s\"\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "VARNING: osäkert ägarskap på hemkatalogen \"%s\"\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "VARNING: osäkert ägarskap på konfigurationsfilen \"%s\"\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "VARNING: osäkert ägarskap på tillägget \"%s\"\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "VARNING: osäkra rättigheter på hemkatalogen \"%s\"\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "VARNING: osäkra rättigheter på konfigurationsfilen \"%s\"\n" # Extension är vad? FIXME -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "VARNING: osäkra rättigheter på tillägget \"%s\"\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för hemkatalogen \"%s\"\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -1905,19 +1905,19 @@ msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för konfigurationsfilen \"%" "s\"\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för tillägget \"%s\"\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för hemkatalogen \"%s\"\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" @@ -1925,470 +1925,470 @@ msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för konfigurationsfilen " "\"%s\"\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för tillägget \"%s\"\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "okänd konfigurationspost \"%s\"\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "visa foto-id under nyckellistning" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "visa policy-url:er under signaturlistningar" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "visa alla notationer under signaturlistningar" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "visa IETF-standardnotationer under signaturlistningar" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "visa användarangivna notationer under signaturlistningar" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "visa url:er till föredragna nyckelservrar under signaturlistningar" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "visa giltighet för användaridentitet vid nyckellistningar " -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "visa spärrade och utgångna användaridentiteter i nyckellistningar" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "visa spärrade och utgångna undernycklar i nyckellistningar" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "visa nyckelringens namn i nyckellistningar" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "visa utgångsdatum under signaturlistningar" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt är för gammalt (behöver %s, har %s)\n" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "OBS: den gamla inställningsfilen \"%s\" används inte\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "OBS: %s är inte för normal användning!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "\"%s\" är inte ett giltigt utgångsdatum för en signatur\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "\"%s\" är ingen giltig teckentabell\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "kunde inte tolka url till nyckelserver\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ogiltiga importeringsflaggor\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "ogiltiga importflaggor\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ogiltiga exportflaggor\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "ogiltiga exportinställningar\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ogiltiga listflaggor\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "ogiltiga listflaggor\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "visa foto-id under signaturvalidering" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "visa policy-url:er under signaturvalidering" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 msgid "show all notations during signature verification" msgstr "visa alla notationer under signaturvalidering" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "visa IETF-standardnotationer under signaturvalidering" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "visa användarangivna notationer under signaturvalidering" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "visa url:er till föredragna nyckelserver under signaturvalidering" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 msgid "show user ID validity during signature verification" msgstr "visa giltighet för användaridentitet vid signaturvalidering" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "visa spärrade och utgångna användaridentiteter i signaturvalidering" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 msgid "show only the primary user ID in signature verification" msgstr "visa endast primär användaridentitet i signaturvalidering" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "validera signaturer med PKA-data" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "öka tillit på signaturer med giltigt PKA-data" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ogiltiga flaggor för validering\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "ogiltiga flaggor för validering\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunde inte ställa in exec-path till %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ogiltig auto-key-locate-lista\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "ogiltig auto-key-locate-lista\n" # Programmet skapar en avbildning (image) av minnet för att lättare kunna spåra fel. -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "VARNING: programmet kan komma att skapa en minnesavbild!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VARNING: %s gäller istället för %s\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s är inte tillåten tillsammans med %s!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "det är ingen poäng att använda %s tillsammans med %s!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kommer inte att köra med osäkert minne på grund av %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "" "du kan bara göra signaturer i en separat fil eller klartextsignaturer\n" "i --pgp2-läge\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "du kan inte signera och kryptera samtidigt i --pgp2-läge\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "du måste använda filer (och inte rör) i --pgp2-läge\n" # IDEA-algoritmen är patenterat i flera länder och finns därför inte med i GnuPG som standard. -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "kryptering av meddelanden i --pgp2-läge kräver IDEA-chiffret\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "den valda chifferalgoritmen är ogiltig\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "vald sammandragsalgoritm är ogiltig\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "vald komprimeringsalgoritm är ogiltig\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "vald algoritm för certifieringssammandrag är felaktig\n" # antalet betrodda signaturer som behövs (1-3) för att du ska lita på en nyckel du inte själv verifierat. -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "variabeln \"completes-needed\" måste ha ett värde som är större än 0\n" # antalet delvis betrodda signaturer som behövs (1-3) för att du ska lita på en nyckel du inte själv verifierat. -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "variabeln \"marginals-needed\" måste vara större än 1\n" # Hur djupt GnuPG ska leta i Web-of-trust. -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth måste vara inom intervallet från 1 till 255\n" # Det är nivån för hurväl du har kontrollerat att nyckeln tillhör innehavaren. -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "ogiltigt standardvärde för certifieringsnivån; måste vara 0, 1, 2 eller 3\n" # Det är nivån för hurväl du har kontrollerat att nyckeln tillhör innehavaren. -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ogiltigt minimivärde för certifieringsnivån; måste vara 1, 2 eller 3\n" # S2K har med krypteringen av hemliga nyckeln att göra -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "OBS: enkelt S2K-läge (0) rekommenderas inte\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ogiltigt S2K-läge; måste vara 0, 1 eller 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "ogiltiga standardinställningar\n" # Du kan ange de algoritmer du föredrar i prioritetsordning. Då avgör inte enbart standard (symmetrisk kryptering) eller mottagarens preferenser (kryptering till öppen nyckel). -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "ogiltig inställning av personligt chiffer\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "ogiltig inställning av föredragna kontrollsummealgoritmer\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "ogiltig inställning av föredragna kompressionsalgoritmer\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s fungerar ännu inte med %s\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "du får inte använda chifferalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "" "du får inte använda sammandragsalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "" "du får inte använda komprimeringsalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VARNING: mottagare (-r) angivna utan att använda publik nyckel-kryptering\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [filnamn]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [filnamn]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "symmetrisk kryptering av \"%s\" misslyckades: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [filnamn]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [filnamn]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "du kan inte använda --symmetric --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "du kan inte använda --symmetric --encrypt i %s-läget\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [filnamn]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [filnamn]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [filnamn]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "du kan inte använda --symmetric --sign --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "" "du kan inte använda --symmetric --sign --encrypt när du är i %s-läget\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [filnamn]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [filnamn]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [filnamn]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key användaridentitet" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key användaridentitet" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key användaridentitet [kommandon]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "sändning till nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "hämtning från nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "export av nyckeln misslyckades: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "sökning på nyckelservern misslyckades: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "uppdatering av nyckeln från en nyckelserver misslyckades: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "misslyckades med att ta bort ASCII-skalet: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "misslyckades med att skapa ASCII-skal: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "ogiltig kontrollsummealgoritm \"%s\"\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[filnamn]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "Skriv ditt meddelande här ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "den angivna URL som beskriver certifieringsspolicy är ogiltig\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "den angivna URL som beskriver signaturpolicy är ogiltig\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "den angivna föredragna nyckelserver-url:n är ogiltig\n" @@ -7561,21 +7561,21 @@ msgstr "OBSERVERA: kommer inte att kunna kryptera till \"%s\": %s\n" msgid "unknown validation model `%s'\n" msgstr "okänd valideringsmodell \"%s\"\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "VARNING: kör med falsk systemtid: " -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "importerar vanliga certifikat \"%s\"\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, c-format msgid "can't sign using `%s': %s\n" msgstr "kan inte signera med \"%s\": %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "det här kommandot har ännu inte implementerats\n" diff --git a/po/tr.po b/po/tr.po index 66276a587..1605acdd9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.9.94\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2006-11-04 03:45+0200\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish \n" @@ -91,7 +91,7 @@ msgstr "Anahtar Parolası" msgid "ssh keys greater than %d bits are not supported\n" msgstr "%d bitlikten daha büyük SSH anahtarları desteklenmiyor\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -100,12 +100,12 @@ msgstr "\"%s\" oluşturulamıyor: %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "`%s' açılamıyor: %s\n" @@ -279,7 +279,7 @@ msgstr "sunucu olarak (önalanda) çalışır" msgid "run in daemon mode (background)" msgstr "artalan süreci olarak çalışır" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -362,17 +362,17 @@ msgstr "ssh-agent öykünümü etkinleşir" msgid "|FILE|write environment settings also to FILE" msgstr "|DOSYA|ortam ayarlarını ayrıca DOSYAya da yazar" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 msgid "Please report bugs to <" msgstr "Yazılım hatalarını lütfen <" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Kullanımı: gpg [seçenekler] (yardım için -h)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -380,145 +380,145 @@ msgstr "" "Sözdizimi: gpg-agent [seçenekler] [komut [arg ...]]\n" "GnuPG için gizli anahtar yönetimi\n" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "belirtilen hata seviyesi `%s' geçersiz\n" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, fuzzy, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "libksba çok eski (gereken %s, sizinki %s)\n" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "BİLGİ: \"%s\" öntanımlı seçenek dosyası yok\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "seçenek dosyası \"%s\": %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "\"%s\"den seçenekler okunuyor\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "`%s' oluşturulurken hata: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "`%s' dizini oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "soketin ismi çok uzun\n" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, c-format msgid "can't create socket: %s\n" msgstr "soket oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, fuzzy, c-format msgid "socket name `%s' is too long\n" msgstr "soketin ismi çok uzun\n" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "bu oturumda çalışan gpg-agent yok\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "yeni PIN alınırken hata: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "soket `%s'e bağlanırken hata: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, c-format msgid "listen() failed: %s\n" msgstr "soket dinleme başarısız: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, c-format msgid "listening on socket `%s'\n" msgstr "`%s' soketi dinlemede\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "dizin `%s' oluşturuldu\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "%s için stat() başarısız oldu: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, c-format msgid "can't use `%s' as home directory\n" msgstr "`%s' ev dizini olarak kullanılamıyor\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "%s okunurken hata: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "tutamak 0x%lx, fd %d için başlatıldı\n" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "tutamak 0x%lx, fd %d için sonlandırıldı\n" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "ssh tutamağı 0x%lx, fd %d için başlatıldı\n" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "ssh tutamağı 0x%lx, fd %d için sonlandırıldı\n" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select başarısız: %s - 1s bekliyor\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, c-format msgid "%s %s stopped\n" msgstr "%s %s durdu\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 msgid "no gpg-agent running in this session\n" msgstr "bu oturumda çalışan gpg-agent yok\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO çevre değişkeni hatalı\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -772,17 +772,17 @@ msgstr "kullanıcı tarafından iptal edildi\n" msgid "problem with the agent\n" msgstr "aracı ile sorun var\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "\"core\" oluşumu iptal edilemedi: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "UYARI: %s üzerinde sahiplik güvensiz: \"%s\"\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "UYARI: %s üzerinde izinler güvensiz: \"%s\"\n" @@ -1238,7 +1238,7 @@ msgstr "Komut geçersiz (\"help\" komutunu deneyin)\n" msgid "--output doesn't work for this command\n" msgstr "--output seçeneği bu komutla çalışmaz\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "`%s' açılamadı\n" @@ -1537,7 +1537,7 @@ msgstr "yardımcı anahtar %s, asıl anahtar %s yerine kullanılıyor\n" msgid "key %s: secret key without public key - skipped\n" msgstr "anahtar %s: genel anahtarsız gizli anahtar - atlandı\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1545,131 +1545,131 @@ msgstr "" "@Komutlar:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[dosya]|bir imza yapar" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[dosya]|açıkça okunabilen bir imza yapar" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "bağımsız bir imza yapar" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "veriyi şifreler" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "sadece simetrik şifre ile şifreler" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "veri şifresini açar (öntanımlı)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "bir imzayı doğrular" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "anahtarları listeler" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "anahtarları ve imzaları listeler" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "anahtar imzalarını listeler ve sınar" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "anahtarları ve parmak izlerini listeler" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "gizli anahtarları listeler" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "anahtarları genel anahtarlıktan kaldırır" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "anahtarları gizli anahtarlıktan kaldırır" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "bir anahtarı imzalar" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "bir anahtarı yerel olarak imzalar" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "bir anahtarı düzenler ve imzalar" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "bir yürürlükten kaldırma sertifikası üretir" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "anahtarları gönderir" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "anahtarları bir anahtar sunucusuna gönderir" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "anahtarları bir anahtar sunucusundan indirir" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "bir anahtar sunucusunda anahtarları arar" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "anahtarları bir anahtar sunucusundan günceller" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "anahtarları indirir/katıştırır" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "kart durumunu basar" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "kart üzerindeki veriyi değiştirir" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "bir kartın PIN'ini değiştirir" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "güvence veritabanını günceller" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|algo [dosyalar]|ileti özümlemelerini gösterir" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "sunucu kipinde çalışır" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1680,48 +1680,48 @@ msgstr "" "Seçenekler:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "ascii zırhlı çıktı oluşturur" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|İSİM|İSİM için şifreleme yapar" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "imzalamak ya da şifre çözmek için bu kullanıcı kimliği kullanılır" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|sıkıştırma seviyesi N olarak ayarlanır (0 ise sıkıştırma yapılmaz)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "kurallı metin kipini kullanır" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|DOSYA|seçenekler DOSYAdan okunur" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "hiçbir değişiklik yapmaz" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "üzerine yazmadan önce sorar" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "kesin OpenPGP davranışı etkin olur" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "PGP 2.x uyumlu iletiler üretilir" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1729,7 +1729,7 @@ msgstr "" "@\n" "(Tüm komut ve seçeneklerin komple listesi için man sayfalarına bakın)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1749,17 +1749,17 @@ msgstr "" " --list-keys [isimler] anahtarları listeler\n" " --fingerprint [isimler] parmak izlerini gösterir\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "Yazılım hatalarını lütfen adresine,\n" "çeviri hatalarını ise adresine bildiriniz.\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "Kullanımı: gpg [seçenekler] [dosyalar] (yardım için -h)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1769,7 +1769,7 @@ msgstr "" "imzalama, kontrol, şifreleme veya çözme\n" "öntanımlı işlem girilen veriye bağımlıdır\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1777,556 +1777,556 @@ msgstr "" "\n" "Desteklenen algoritmalar:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "GenAnah: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "Şifre: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "Sıkıştırma: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "kullanımı: gpg [seçenekler] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "çelişen komutlar\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "grup tanımı '%s' içinde = işareti yok\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "UYARI: '%s' evdizininde güvensiz iyelik\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasında güvensiz iyelik\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "UYARI: '%s' eklentisinde güvensiz iyelik\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "UYARI: UYARI: '%s' evdizininde güvensiz izinler\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasında güvensiz izinler\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "UYARI: '%s' eklentisinde güvensiz izinler\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "UYARI: '%s' evdizinindeki ilgili dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasını içeren dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "UYARI: '%s' eklentisini içeren dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "UYARI: '%s' evdizinindeki ilgili dizinin izinleri güvensiz\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasını içeren dizinin izinleri güvensiz\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "UYARI: '%s' eklentisini içeren dizinin izinleri güvensiz\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "yapılandırma öğesi '%s' bilinmiyor\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "anahtarların listelenmesi sırasında foto kimliklerini gösterir" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "imza listelemesi sırasında poliçe URLleri gösterilir" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "imza listelemesi sırasında tüm simgelemi gösterir" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "imza listelemesi sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "imza listelemesi sırasında kullanıcı kanaklı simgelemleri gösterir" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "" "imza listelemesi sırasında tercih edilen anahtar sunucusu adresi gösterilir" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "anahtar listelemesi sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" "anahtar listelerinde yürürlükten kaldırılmış ve zamanaşımına uğramış " "kullanıcı kimlikleri gösterilir" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" "anahtar listelerinde yürürlükten kaldırılmış ve zamanaşımına uğramış " "yardımcı anahtarlar gösterilir" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "anahtar listelerinde anahtarlık ismini gösterir" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "imza listelemesi sırasında zamanaşımı tarihleri gösterilir" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt çok eski (%s lazım, sizinki %s)\n" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "BİLGİ: eski öntanımlı seçenekler dosyası `%s' yoksayıldı\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "BİLGİ: %s normal kullanım için değil!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "'%s' geçerli bir imza zamanaşımı değil\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "anahtar sunucusunun adresi çözümlenemedi\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: geçersiz içselleştirme seçenekleri\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "içselleştirme seçenekleri geçersiz\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d geçersiz dışsallaştırma seçenekleri\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "dışsallaştırma seçenekleri geçersiz\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: liste seçenekleri geçersiz\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "liste seçenekleri geçersiz\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "imza doğrulaması sırasında foto kimliklerini gösterir" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "imza doğrulaması sırasında poliçe adreslerini gösterir" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 msgid "show all notations during signature verification" msgstr "imza doğrulaması sırasında tüm simgelemi gösterir" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "imza doğrulaması sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kaynaklı simgelemleri gösterir" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "" "imza doğrulaması sırasında tercih edilen anahtar sunucusu adresleri " "gösterilir" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 msgid "show user ID validity during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" "imza doğrulamasında yürürlükten kaldırılan ve zamanaşımına uğrayan kullanıcı " "kimlikleri gösterilir" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "" "imza doğrulamasında yürürlükten kaldırılan ve zamanaşımına uğrayan kullanıcı " "kimlikleri gösterilir" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "imzaları PKA verisi ile doğrular" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "imzaların güvenilirliğini geçerli PKA verisi ile yükseltir" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "çalıştırılabilirlerin patikası %s yapılamıyor\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "UYARI: program bir \"core\" dosyası oluşturabilir!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "UYARI: %s %s'i aşıyor\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ile %s birlikte kullanılmaz!\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s, %s ile etkisiz olur!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%s olmasından dolayı güvensiz bellekle çalıştırılmayacak\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "--pgp2 kipindeyken sadece ayrık veya sade imzalar yapabilirsiniz\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "--pgp2 kipinde aynı anda hem imzalama hem de şifreleme yapamazsınız\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "--pgp2 ile çalışırken veri yolu yerine dosyaları kullanmalısınız.\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "--pgp2 kipinde ileti şifrelemesi IDEA şifresi gerektirir\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "seçilen özümleme algoritması geçersiz\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "seçilen sertifikalama özümleme algoritması geçersiz\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "\"completes-needed\" 0 dan büyük olmalı\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "\"marginals-needed\" 1 den büyük olmalı\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "\"max-cert-depth\" 1 ile 255 arasında olmalı\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "öntanımlı sertifika seviyesi geçersiz; 0, 1, 2, ya da 3 olabilir\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "asgari sertifika seviyesi geçersiz; 1, 2, ya da 3 olabilir\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "BİLGİ: basit S2K kipi (0) kesinlikle tavsiye edilmez\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "S2K kipi geçersiz; 0, 1 veya 3 olmalı\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "öntanımlı tercihler geçersiz\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "kişisel şifre tercihleri geçersiz\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "kişisel özümleme tercihleri geçersiz\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "kişisel sıkıştırma tercihleri geçersiz\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s, %s ile henüz çalışmıyor\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' şifreleme algoritması kullanılamaz\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' özümleme algoritması kullanılamaz\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "%2$s kipindeyken '%1$s' sıkıştırma algoritması kullanılamaz\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "\"TrustDB\" güvence veritabanı başlangıç aşamasında başarısız: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "UYARI: alıcılar (-r) genel anahtar şifrelemesi kullanılmadan belirtilmiş\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [dosyaismi]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [dosyaismi]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "`%s' için simetrik şifreleme başarısız: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [dosyaismi]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [dosyaismi]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--s2k-mode 0 ile --symmetric --encrypt kullanamazsınız\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "%s kipindeyken --symmetric --encrypt kullanamazsınız\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [dosyaismi]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [dosyaismi]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [dosyaismi]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--s2k-mode 0 ile --symmetric --sign --encrypt kullanamazsınız\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "%s kipindeyken --symmetric --sign --encrypt kullanamazsınız.\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [DOSYA]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [dosyaismi]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [dosyaismi]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key kullanıcı-kimliği" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key kullanıcı-kimliği" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key kullanıcı-kimliği [komutlar]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "anahtar sunucusuna gönderim başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "anahtar sunucusundan alım başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "anahtar ihracı başarısızlığa uğradı: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "anahtar sunucusunda arama başarısız: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "anahtar sunucusunda tazeleme başarısız: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "zırhın kaldırılması başarısız: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "zırhlama başarısız: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "`%s' çittirim algoritması geçersiz\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[dosyaismi]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "İletinizi yazın ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "belirtilen sertifika güvence adresi geçersiz\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "belirtilen imza güvence adresi geçersiz\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "belirtilen anahtar sunucusu adresi geçersiz\n" @@ -7462,21 +7462,21 @@ msgstr "`%s'e şifrelenemez: %s\n" msgid "unknown validation model `%s'\n" msgstr "`%s' seçeneği bilinmiyor\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "UYARI: sahte sistem zamanıyla çalışıyor: " -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "ortak sertifikalar `%s' ithal ediliyor\n" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, c-format msgid "can't sign using `%s': %s\n" msgstr "`%s' kullanarak imzalanamıyor: %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "bu komut henüz gerçeklenmedi\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 285302337..03f2f2f7a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.4\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2006-07-02 10:58+0800\n" "Last-Translator: Meng Jie \n" "Language-Team: Chinese (simplified) \n" @@ -98,7 +98,7 @@ msgstr "错误的密码" msgid "ssh keys greater than %d bits are not supported\n" msgstr "不支持保护散列 %d\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -107,12 +107,12 @@ msgstr "无法建立‘%s’:%s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "无法打开‘%s’: %s\n" @@ -292,7 +292,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -380,7 +380,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy @@ -389,157 +389,157 @@ msgstr "" "请向 报告程序缺陷。\n" "请向 反映简体中文翻译的问题。\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "用法: gpg [选项] [文件] (用 -h 求助)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "注意:没有默认配置文件‘%s’\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "配置文件‘%s’:%s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "从‘%s’读取选项\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "建立‘%s’时发生错误:%s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "无法建立‘%s’:%s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent 在此次舍话中无法使用\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "获取新 PIN 时出错:%s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在‘%s’中寻找信任度记录时出错:%s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失败:%s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在将私钥写至`%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "已创建目录‘%s’\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) 在 %s 中出错:%s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "读取‘%s’时出错:%s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私钥失败:%s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s:已跳过:%s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent 在此次舍话中无法使用\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO 环境变量格式错误\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -790,17 +790,17 @@ msgstr "用户取消\n" msgid "problem with the agent\n" msgstr "代理程序有问题――正在停用代理程序\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "无法禁用核心内存转储:%s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "警告:扩展模块‘%s’所有权不安全\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "警告:扩展模块‘%s’权限不安全\n" @@ -1253,7 +1253,7 @@ msgstr "无效的指令(尝试“help”)\n" msgid "--output doesn't work for this command\n" msgstr "--output 在这个命令中不起作用\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "无法打开‘%s’\n" @@ -1540,7 +1540,7 @@ msgstr "使用子钥 %s 而非主钥 %s\n" msgid "key %s: secret key without public key - skipped\n" msgstr "密钥 %s:无相应公钥的私钥――已跳过\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1548,131 +1548,131 @@ msgstr "" "@指令:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[文件名]|生成一份签名" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[文件名]|生成一份明文签名" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "生成一份分离的签名" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "加密数据" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "仅使用对称加密" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "解密数据(默认)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "验证签名" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "列出密钥" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "列出密钥和签名" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "列出并检查密钥签名" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "列出密钥和指纹" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "列出私钥" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "生成一副新的密钥对" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "从公钥钥匙环里删除密钥" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "从私钥钥匙环里删除密钥" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "为某把密钥添加签名" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "为某把密钥添加本地签名" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "编辑某把密钥或为其添加签名" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "生成一份吊销证书" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "导出密钥" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "把密钥导出到某个公钥服务器上" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "从公钥服务器上导入密钥" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "在公钥服务器上搜寻密钥" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "从公钥服务器更新所有的本地密钥" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "导入/合并密钥" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "打印卡状态" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "更改卡上的数据" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "更改卡的 PIN" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "更新信任度数据库" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|算法 [文件]|使用指定的散列算法打印报文散列值" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1683,48 +1683,48 @@ msgstr "" "选项:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "输出经 ASCII 封装" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|某甲|为收件者“某甲”加密" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "使用这个用户标识来签名或解密" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|设定压缩等级为 N (0 表示不压缩)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "使用标准的文本模式" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "从‘%s’读取选项\n" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "不做任何改变" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "覆盖前先询问" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "行为严格遵循 OpenPGP 定义" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "生成与 PGP 2.x 兼容的报文" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1732,7 +1732,7 @@ msgstr "" "@\n" "(请参考在线说明以获得所有命令和选项的完整清单)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1752,17 +1752,17 @@ msgstr "" " --list-keys [某甲] 显示密钥\n" " --fingerprint [某甲] 显示指纹\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "" "请向 报告程序缺陷。\n" "请向 反映简体中文翻译的问题。\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "用法: gpg [选项] [文件] (用 -h 求助)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1772,7 +1772,7 @@ msgstr "" "签名、检查、加密或解密\n" "默认的操作依输入数据而定\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1780,544 +1780,544 @@ msgstr "" "\n" "支持的算法:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "公钥:" -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "对称加密:" -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "散列:" -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "压缩:" -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "用法:gpg [选项] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "冲突的指令\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "在‘%s’组定义里找不到等号(=)\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "警告:用户目录‘%s’所有权不安全\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "警告:配置文件‘%s’所有权不安全\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "警告:扩展模块‘%s’所有权不安全\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "警告:用户目录‘%s’权限不安全\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "警告:配置文件‘%s’权限不安全\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "警告:扩展模块‘%s’权限不安全\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "警告:用户目录‘%s’的关闭目录所有权不安全\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "警告:配置文件‘%s’的关闭目录所有权不安全\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "警告:扩展模块‘%s’的关闭目录所有权不安全\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "警告:用户目录‘%s’的关闭目录权限不安全\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "警告:配置文件‘%s’的关闭目录权限不安全\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "警告:扩展模块‘%s’的关闭目录权限不安全\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "未知的配置项‘%s’\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "列出密钥时显示用户标识" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "列出签名时显示策略 URL" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 msgid "show all notations during signature listings" msgstr "列出签名时显示 IETF 标准注记" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "列出签名时显示 IETF 标准注记" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "列出签名时显示用户提供的注记" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 msgid "show preferred keyserver URLs during signature listings" msgstr "列出密钥时显示首选公钥服务器 URL" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "列出密钥时显示用户标识的有效性" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "列出密钥时显示已吊销或已过期的用户标识" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "列出密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 msgid "show the keyring name in key listings" msgstr "列出密钥时显示钥匙环的名称" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 msgid "show expiration dates during signature listings" msgstr "列出签名时显示过期日期" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "注意:旧式的默认配置文件‘%s’已被忽略\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "注意:一般情况下不会用到 %s!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "‘%s’不是一个有效的签名过期日期\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "‘%s’不是一个有效的字符集\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "无法解析公钥服务器 URL\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d:无效的公钥服务器选项\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "无效的公钥服务器选项\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d:无效的导入选项\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "无效的导入选项\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d:无效的导出选项\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "无效的导出选项\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d:无效的列表选项\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "无效的列表选项\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "验证签名时显示照片标识" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "验证签名时显示策略 URL" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 msgid "show all notations during signature verification" msgstr "验证签名时显示所有注记" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "验证签名时显示 IETF 标准注记" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "验证签名时显示用户提供的注记" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 msgid "show preferred keyserver URLs during signature verification" msgstr "验证签名时显示首选公钥服务器 URL" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 msgid "show user ID validity during signature verification" msgstr "验证签名时显示用户标识的有效性" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "使用 PKA 数据验证签名的有效性" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "提升带有有效 PKA 数据的签名的信任度" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d:无效的校验选项\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "无效的校验选项\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "无法把运行路径设成 %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d:无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "无效的 auto-key-locate 清单\n" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "警告:程序可能会创建核心内存转储!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告:%s 会使得 %s 失效\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不可与 %s 并用\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 与 %s 并用无意义!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "不会在内存不安全的情况下运行,原因是 %s\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "您只有在 --pgp2 模式下才能做分离式或明文签名\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "您在 --pgp2 模式下时,不能同时签名和加密\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "启用 --pgp2 时您应该只使用文件,而非管道\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密报文需要 IDEA 算法\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "所选的对称加密算法无效\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "所选的散列算法无效\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "所选的压缩算法无效\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "所选的证书散列算法无效\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "需要的完全可信签名数一定要大于 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "需要的勉强可信签名数一定要大于 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "最大验证深度一定要介于 1 和 255 之间\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "无效的默认验证级别;一定要是 0,1,2 或 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "无效的最小验证级别;一定要是 1,2 或 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "注意:强烈不建议使用简单的 S2K 模式(0)\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "无效的 S2K 模式;必须是 0,1 或 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "无效的默认首选项\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "无效的个人对称加密算法首选项\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "无效的个人散列算法首选项\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "无效的个人压缩算法首选项\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 尚不能和 %s 并用\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’对称加密算法\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’散列算法\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "您不能在 %s 模式下使用‘%s’压缩算法\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "初始化信任度数据库失败:%s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告:给定了收件人(-r)但并未使用公钥加密\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [文件名]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [文件名]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "对称加密‘%s’失败:%s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [文件名]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [文件名]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric -encrypt\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [文件名]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [文件名]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [文件名]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "使用 --symmetric --sign --encrypt 时不能使用 --s2k-mode 0\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric --sign -encrypt\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [文件名]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [文件名]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [文件名]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key 用户标识" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key 用户标识" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key 用户标识 [指令]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "上传至公钥服务器失败:%s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "从公钥服务器接收失败:%s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "导出密钥失败:%s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "搜寻公钥服务器失败:%s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "从公钥服务器更新失败:%s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "解开 ASCII 封装失败:%s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "进行 ASCII 封装失败:%s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "无效的‘%s’散列算法\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[文件名]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "请开始键入您的报文……\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "给定的的验证策略 URL 无效\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "给定的签名策略 URL 无效\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "给定的首选公钥服务器 URL 无效\n" @@ -7326,21 +7326,21 @@ msgstr "无法连接至‘%s’:%s\n" msgid "unknown validation model `%s'\n" msgstr "未知的选项 '%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "无法存取‘%s’:%s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 86cc8876d..8f9817d64 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2007-11-27 09:11+0100\n" +"POT-Creation-Date: 2007-12-03 15:04+0100\n" "PO-Revision-Date: 2005-07-29 09:49+0800\n" "Last-Translator: Jedi \n" "Language-Team: Chinese (traditional) \n" @@ -96,7 +96,7 @@ msgstr "錯誤的密語" msgid "ssh keys greater than %d bits are not supported\n" msgstr "保護摘要 %d 未被支援\n" -#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1059 g10/keygen.c:3141 +#: agent/command-ssh.c:688 g10/exec.c:478 g10/gpg.c:1056 g10/keygen.c:3141 #: g10/keygen.c:3174 g10/keyring.c:1202 g10/keyring.c:1506 g10/openfile.c:275 #: g10/openfile.c:368 g10/sign.c:798 g10/sign.c:1107 g10/tdbio.c:536 #, c-format @@ -105,12 +105,12 @@ msgstr "無法建立 `%s': %s\n" #: agent/command-ssh.c:700 g10/card-util.c:680 g10/card-util.c:749 #: g10/dearmor.c:60 g10/dearmor.c:107 g10/decrypt.c:70 g10/encode.c:194 -#: g10/encode.c:504 g10/gpg.c:1060 g10/import.c:193 g10/keygen.c:2630 +#: g10/encode.c:504 g10/gpg.c:1057 g10/import.c:193 g10/keygen.c:2630 #: g10/keyring.c:1532 g10/openfile.c:192 g10/openfile.c:353 #: g10/plaintext.c:503 g10/sign.c:780 g10/sign.c:975 g10/sign.c:1091 #: g10/sign.c:1247 g10/tdbdump.c:139 g10/tdbdump.c:147 g10/tdbio.c:540 -#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1943 -#: sm/gpgsm.c:1980 sm/gpgsm.c:2018 sm/qualified.c:66 +#: g10/tdbio.c:603 g10/verify.c:99 g10/verify.c:162 sm/gpgsm.c:1944 +#: sm/gpgsm.c:1981 sm/gpgsm.c:2019 sm/qualified.c:66 #, c-format msgid "can't open `%s': %s\n" msgstr "無法開啟 `%s': %s\n" @@ -290,7 +290,7 @@ msgstr "" msgid "run in daemon mode (background)" msgstr "" -#: agent/gpg-agent.c:121 g10/gpg.c:471 g10/gpgv.c:70 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:121 g10/gpg.c:468 g10/gpgv.c:70 kbx/kbxutil.c:88 #: scd/scdaemon.c:107 sm/gpgsm.c:342 tools/gpg-connect-agent.c:66 #: tools/gpgconf.c:72 tools/symcryptrun.c:164 msgid "verbose" @@ -378,164 +378,164 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:282 agent/preset-passphrase.c:94 agent/protect-tool.c:146 +#: agent/gpg-agent.c:283 agent/preset-passphrase.c:94 agent/protect-tool.c:146 #: scd/scdaemon.c:207 sm/gpgsm.c:570 tools/gpg-connect-agent.c:171 #: tools/gpgconf.c:94 tools/symcryptrun.c:204 #, fuzzy msgid "Please report bugs to <" msgstr "請向 回報程式瑕疵.\n" -#: agent/gpg-agent.c:285 +#: agent/gpg-agent.c:286 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "用法: gpg [選項] [檔案] (或用 -h 求助)" -#: agent/gpg-agent.c:287 +#: agent/gpg-agent.c:288 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:322 g10/gpg.c:966 scd/scdaemon.c:247 sm/gpgsm.c:732 +#: agent/gpg-agent.c:323 g10/gpg.c:963 scd/scdaemon.c:247 sm/gpgsm.c:732 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:521 agent/protect-tool.c:1066 kbx/kbxutil.c:428 -#: scd/scdaemon.c:342 sm/gpgsm.c:873 sm/gpgsm.c:876 tools/symcryptrun.c:997 +#: agent/gpg-agent.c:522 agent/protect-tool.c:1066 kbx/kbxutil.c:428 +#: scd/scdaemon.c:342 sm/gpgsm.c:874 sm/gpgsm.c:877 tools/symcryptrun.c:997 #, c-format msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:620 g10/gpg.c:2072 scd/scdaemon.c:423 sm/gpgsm.c:964 +#: agent/gpg-agent.c:621 g10/gpg.c:1999 scd/scdaemon.c:423 sm/gpgsm.c:965 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "請注意: 沒有預設選項檔 `%s'\n" -#: agent/gpg-agent.c:625 agent/gpg-agent.c:1205 g10/gpg.c:2076 -#: scd/scdaemon.c:428 sm/gpgsm.c:968 tools/symcryptrun.c:930 +#: agent/gpg-agent.c:626 agent/gpg-agent.c:1206 g10/gpg.c:2003 +#: scd/scdaemon.c:428 sm/gpgsm.c:969 tools/symcryptrun.c:930 #, c-format msgid "option file `%s': %s\n" msgstr "選項檔 `%s': %s\n" -#: agent/gpg-agent.c:633 g10/gpg.c:2083 scd/scdaemon.c:436 sm/gpgsm.c:975 +#: agent/gpg-agent.c:634 g10/gpg.c:2010 scd/scdaemon.c:436 sm/gpgsm.c:976 #, c-format msgid "reading options from `%s'\n" msgstr "從 `%s' 讀取選項\n" -#: agent/gpg-agent.c:965 g10/plaintext.c:140 g10/plaintext.c:145 +#: agent/gpg-agent.c:966 g10/plaintext.c:140 g10/plaintext.c:145 #: g10/plaintext.c:162 #, c-format msgid "error creating `%s': %s\n" msgstr "建立 `%s' 時發生錯誤: %s\n" -#: agent/gpg-agent.c:1297 agent/gpg-agent.c:1409 agent/gpg-agent.c:1413 -#: agent/gpg-agent.c:1454 agent/gpg-agent.c:1458 g10/exec.c:172 +#: agent/gpg-agent.c:1298 agent/gpg-agent.c:1420 agent/gpg-agent.c:1424 +#: agent/gpg-agent.c:1465 agent/gpg-agent.c:1469 g10/exec.c:172 #: g10/openfile.c:429 scd/scdaemon.c:921 #, c-format msgid "can't create directory `%s': %s\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1311 scd/scdaemon.c:935 +#: agent/gpg-agent.c:1312 scd/scdaemon.c:935 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1334 scd/scdaemon.c:958 +#: agent/gpg-agent.c:1337 scd/scdaemon.c:958 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "無法建立 `%s': %s\n" -#: agent/gpg-agent.c:1343 +#: agent/gpg-agent.c:1346 #, c-format msgid "socket name `%s' is too long\n" msgstr "" -#: agent/gpg-agent.c:1355 +#: agent/gpg-agent.c:1366 #, fuzzy msgid "a gpg-agent is already running - not starting a new one\n" msgstr "gpg-agent 在此階段無法使用\n" -#: agent/gpg-agent.c:1366 scd/scdaemon.c:978 +#: agent/gpg-agent.c:1377 scd/scdaemon.c:978 #, fuzzy msgid "error getting nonce for the socket\n" msgstr "取得新的個人識別碼 (PIN) 時出錯: %s\n" -#: agent/gpg-agent.c:1371 scd/scdaemon.c:981 +#: agent/gpg-agent.c:1382 scd/scdaemon.c:981 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在 `%s' 中尋找信任記錄時出錯: %s\n" -#: agent/gpg-agent.c:1383 scd/scdaemon.c:990 +#: agent/gpg-agent.c:1394 scd/scdaemon.c:990 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失敗: %s\n" -#: agent/gpg-agent.c:1389 scd/scdaemon.c:997 +#: agent/gpg-agent.c:1400 scd/scdaemon.c:997 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在將私鑰寫至 `%s'\n" -#: agent/gpg-agent.c:1417 agent/gpg-agent.c:1464 g10/openfile.c:432 +#: agent/gpg-agent.c:1428 agent/gpg-agent.c:1475 g10/openfile.c:432 #, c-format msgid "directory `%s' created\n" msgstr "目錄 `%s' 已建立\n" -#: agent/gpg-agent.c:1470 +#: agent/gpg-agent.c:1481 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) 失敗於 %s: %s\n" -#: agent/gpg-agent.c:1474 +#: agent/gpg-agent.c:1485 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1591 scd/scdaemon.c:1013 +#: agent/gpg-agent.c:1602 scd/scdaemon.c:1013 #, fuzzy, c-format msgid "error reading nonce on fd %d: %s\n" msgstr "讀取 `%s' 時發生錯誤: %s\n" -#: agent/gpg-agent.c:1613 +#: agent/gpg-agent.c:1624 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1618 +#: agent/gpg-agent.c:1629 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1638 +#: agent/gpg-agent.c:1649 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1643 +#: agent/gpg-agent.c:1654 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1760 scd/scdaemon.c:1135 +#: agent/gpg-agent.c:1771 scd/scdaemon.c:1135 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私鑰失敗: %s\n" -#: agent/gpg-agent.c:1873 scd/scdaemon.c:1202 +#: agent/gpg-agent.c:1884 scd/scdaemon.c:1202 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: 已跳過: %s\n" -#: agent/gpg-agent.c:1896 +#: agent/gpg-agent.c:1907 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent 在此階段無法使用\n" -#: agent/gpg-agent.c:1907 common/simple-pwquery.c:329 +#: agent/gpg-agent.c:1918 common/simple-pwquery.c:329 #: tools/gpg-connect-agent.c:1953 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "被變造的 GPG_AGENT_INFO 環境變數\n" -#: agent/gpg-agent.c:1920 common/simple-pwquery.c:341 +#: agent/gpg-agent.c:1931 common/simple-pwquery.c:341 #: tools/gpg-connect-agent.c:1964 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -786,17 +786,17 @@ msgstr "由使用者取消了\n" msgid "problem with the agent\n" msgstr "代理程式的問題 - 正在停用代理程式\n" -#: common/sysutils.c:103 +#: common/sysutils.c:104 #, c-format msgid "can't disable core dumps: %s\n" msgstr "無法讓系統停止傾印核心檔: %s\n" -#: common/sysutils.c:198 +#: common/sysutils.c:199 #, fuzzy, c-format msgid "Warning: unsafe ownership on %s \"%s\"\n" msgstr "警告: 延伸模組 `%s' 的所有權並不安全\n" -#: common/sysutils.c:230 +#: common/sysutils.c:231 #, fuzzy, c-format msgid "Warning: unsafe permissions on %s \"%s\"\n" msgstr "警告: 延伸模組 `%s' 的權限並不安全\n" @@ -1248,7 +1248,7 @@ msgstr "無效的指令 (試試看 \"help\")\n" msgid "--output doesn't work for this command\n" msgstr "--output 在這個命令中沒有作用\n" -#: g10/decrypt.c:166 g10/gpg.c:3931 g10/keyring.c:376 g10/keyring.c:663 +#: g10/decrypt.c:166 g10/gpg.c:3858 g10/keyring.c:376 g10/keyring.c:663 #, c-format msgid "can't open `%s'\n" msgstr "無法開啟 `%s'\n" @@ -1539,7 +1539,7 @@ msgstr "正在使用次鑰 %s 來替換主鑰 %s\n" msgid "key %s: secret key without public key - skipped\n" msgstr "金鑰 %s: 祇有私鑰而沒有公鑰 - 已跳過\n" -#: g10/gpg.c:370 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 +#: g10/gpg.c:367 kbx/kbxutil.c:71 sm/gpgsm.c:244 tools/gpgconf.c:56 msgid "" "@Commands:\n" " " @@ -1547,131 +1547,131 @@ msgstr "" "@指令:\n" " " -#: g10/gpg.c:372 +#: g10/gpg.c:369 msgid "|[file]|make a signature" msgstr "|[檔案]|建立一份簽章" -#: g10/gpg.c:373 +#: g10/gpg.c:370 msgid "|[file]|make a clear text signature" msgstr "|[檔案]|建立一份明文簽章" -#: g10/gpg.c:374 sm/gpgsm.c:248 +#: g10/gpg.c:371 sm/gpgsm.c:248 msgid "make a detached signature" msgstr "建立一份分離式簽章" -#: g10/gpg.c:375 sm/gpgsm.c:249 +#: g10/gpg.c:372 sm/gpgsm.c:249 msgid "encrypt data" msgstr "加密資料" -#: g10/gpg.c:377 sm/gpgsm.c:250 +#: g10/gpg.c:374 sm/gpgsm.c:250 msgid "encryption only with symmetric cipher" msgstr "僅使用對稱式編密法來加密" -#: g10/gpg.c:379 sm/gpgsm.c:251 +#: g10/gpg.c:376 sm/gpgsm.c:251 msgid "decrypt data (default)" msgstr "資料解密 (預設)" -#: g10/gpg.c:381 sm/gpgsm.c:252 +#: g10/gpg.c:378 sm/gpgsm.c:252 msgid "verify a signature" msgstr "驗證某份簽章" -#: g10/gpg.c:383 sm/gpgsm.c:254 +#: g10/gpg.c:380 sm/gpgsm.c:254 msgid "list keys" msgstr "列出金鑰" -#: g10/gpg.c:385 +#: g10/gpg.c:382 msgid "list keys and signatures" msgstr "列出金鑰和簽章" -#: g10/gpg.c:386 +#: g10/gpg.c:383 msgid "list and check key signatures" msgstr "列出並檢查金鑰簽章" -#: g10/gpg.c:387 sm/gpgsm.c:258 +#: g10/gpg.c:384 sm/gpgsm.c:258 msgid "list keys and fingerprints" msgstr "列出金鑰和指紋" -#: g10/gpg.c:388 sm/gpgsm.c:256 +#: g10/gpg.c:385 sm/gpgsm.c:256 msgid "list secret keys" msgstr "列出私鑰" -#: g10/gpg.c:389 +#: g10/gpg.c:386 msgid "generate a new key pair" msgstr "產生一份新的金鑰對" -#: g10/gpg.c:390 +#: g10/gpg.c:387 msgid "remove keys from the public keyring" msgstr "從公鑰鑰匙圈裡移去金鑰" -#: g10/gpg.c:392 +#: g10/gpg.c:389 msgid "remove keys from the secret keyring" msgstr "從私鑰鑰匙圈裡移去金鑰" -#: g10/gpg.c:393 +#: g10/gpg.c:390 msgid "sign a key" msgstr "簽署某把金鑰" -#: g10/gpg.c:394 +#: g10/gpg.c:391 msgid "sign a key locally" msgstr "僅在本地簽署某把金鑰" -#: g10/gpg.c:395 +#: g10/gpg.c:392 msgid "sign or edit a key" msgstr "簽署或編輯某把金鑰" -#: g10/gpg.c:396 +#: g10/gpg.c:393 msgid "generate a revocation certificate" msgstr "產生一份撤銷憑證" -#: g10/gpg.c:398 +#: g10/gpg.c:395 msgid "export keys" msgstr "匯出金鑰" -#: g10/gpg.c:399 sm/gpgsm.c:261 +#: g10/gpg.c:396 sm/gpgsm.c:261 msgid "export keys to a key server" msgstr "把金鑰匯出至某個金鑰伺服器上" -#: g10/gpg.c:400 sm/gpgsm.c:262 +#: g10/gpg.c:397 sm/gpgsm.c:262 msgid "import keys from a key server" msgstr "從某個金鑰伺服器上匯入金鑰" -#: g10/gpg.c:402 +#: g10/gpg.c:399 msgid "search for keys on a key server" msgstr "在某個金鑰伺服器上搜尋金鑰" -#: g10/gpg.c:404 +#: g10/gpg.c:401 msgid "update all keys from a keyserver" msgstr "從某個金鑰伺服器上更新所有的金鑰" -#: g10/gpg.c:408 +#: g10/gpg.c:405 msgid "import/merge keys" msgstr "匯入/合併金鑰" -#: g10/gpg.c:411 +#: g10/gpg.c:408 msgid "print the card status" msgstr "列印卡片狀態" -#: g10/gpg.c:412 +#: g10/gpg.c:409 msgid "change data on a card" msgstr "變更卡片上的資料" -#: g10/gpg.c:413 +#: g10/gpg.c:410 msgid "change a card's PIN" msgstr "變更某張卡片的個人識別碼 (PIN)" -#: g10/gpg.c:422 +#: g10/gpg.c:419 msgid "update the trust database" msgstr "更新信任資料庫" -#: g10/gpg.c:429 +#: g10/gpg.c:426 msgid "|algo [files]|print message digests" msgstr "|演算法 [檔案]|印出訊息摘要" -#: g10/gpg.c:432 sm/gpgsm.c:266 +#: g10/gpg.c:429 sm/gpgsm.c:266 msgid "run in server mode" msgstr "" -#: g10/gpg.c:434 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 +#: g10/gpg.c:431 g10/gpgv.c:68 kbx/kbxutil.c:81 sm/gpgsm.c:281 #: tools/gpg-connect-agent.c:64 tools/gpgconf.c:69 tools/symcryptrun.c:157 msgid "" "@\n" @@ -1682,48 +1682,48 @@ msgstr "" "選項:\n" " " -#: g10/gpg.c:436 sm/gpgsm.c:283 +#: g10/gpg.c:433 sm/gpgsm.c:283 msgid "create ascii armored output" msgstr "建立以 ASCII 封裝過的輸出" -#: g10/gpg.c:438 sm/gpgsm.c:295 +#: g10/gpg.c:435 sm/gpgsm.c:295 msgid "|NAME|encrypt for NAME" msgstr "|名字|以「名字」作為加密對象" -#: g10/gpg.c:449 sm/gpgsm.c:333 +#: g10/gpg.c:446 sm/gpgsm.c:333 msgid "use this user-id to sign or decrypt" msgstr "使用這個使用者 ID 來簽署或解密" -#: g10/gpg.c:450 sm/gpgsm.c:336 +#: g10/gpg.c:447 sm/gpgsm.c:336 msgid "|N|set compress level N (0 disables)" msgstr "|N|設定壓縮等級為 N (0 表示不壓縮)" -#: g10/gpg.c:455 sm/gpgsm.c:338 +#: g10/gpg.c:452 sm/gpgsm.c:338 msgid "use canonical text mode" msgstr "使用標準的文字模式" -#: g10/gpg.c:469 sm/gpgsm.c:341 +#: g10/gpg.c:466 sm/gpgsm.c:341 #, fuzzy msgid "|FILE|write output to FILE" msgstr "從 `%s' 讀取選項\n" -#: g10/gpg.c:482 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 +#: g10/gpg.c:479 kbx/kbxutil.c:90 sm/gpgsm.c:352 tools/gpgconf.c:74 msgid "do not make any changes" msgstr "不要做任何改變" -#: g10/gpg.c:483 +#: g10/gpg.c:480 msgid "prompt before overwriting" msgstr "覆寫前先詢問" -#: g10/gpg.c:526 +#: g10/gpg.c:523 msgid "use strict OpenPGP behavior" msgstr "使用嚴謹的 OpenPGP 行為" -#: g10/gpg.c:527 +#: g10/gpg.c:524 msgid "generate PGP 2.x compatible messages" msgstr "產生 PGP 2.x 相容性訊息" -#: g10/gpg.c:556 sm/gpgsm.c:400 +#: g10/gpg.c:553 sm/gpgsm.c:400 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -1731,7 +1731,7 @@ msgstr "" "@\n" "(請參照線上說明頁面來取得所有命令和選項的完整清單)\n" -#: g10/gpg.c:559 sm/gpgsm.c:403 +#: g10/gpg.c:556 sm/gpgsm.c:403 msgid "" "@\n" "Examples:\n" @@ -1751,15 +1751,15 @@ msgstr "" " --list-keys [名字] 顯示金鑰\n" " --fingerprint [名字] 顯示指紋\n" -#: g10/gpg.c:755 g10/gpgv.c:95 +#: g10/gpg.c:752 g10/gpgv.c:95 msgid "Please report bugs to .\n" msgstr "請向 回報程式瑕疵.\n" -#: g10/gpg.c:772 +#: g10/gpg.c:769 msgid "Usage: gpg [options] [files] (-h for help)" msgstr "用法: gpg [選項] [檔案] (或用 -h 求助)" -#: g10/gpg.c:775 +#: g10/gpg.c:772 msgid "" "Syntax: gpg [options] [files]\n" "sign, check, encrypt or decrypt\n" @@ -1769,7 +1769,7 @@ msgstr "" "簽署, 檢查, 加密或解密\n" "預設的操作會依輸入資料而定\n" -#: g10/gpg.c:786 sm/gpgsm.c:583 +#: g10/gpg.c:783 sm/gpgsm.c:583 msgid "" "\n" "Supported algorithms:\n" @@ -1777,551 +1777,551 @@ msgstr "" "\n" "已被支援的演算法:\n" -#: g10/gpg.c:789 +#: g10/gpg.c:786 msgid "Pubkey: " msgstr "公鑰: " -#: g10/gpg.c:796 g10/keyedit.c:2321 +#: g10/gpg.c:793 g10/keyedit.c:2321 msgid "Cipher: " msgstr "編密法: " -#: g10/gpg.c:803 +#: g10/gpg.c:800 msgid "Hash: " msgstr "雜湊: " -#: g10/gpg.c:810 g10/keyedit.c:2365 +#: g10/gpg.c:807 g10/keyedit.c:2365 msgid "Compression: " msgstr "壓縮: " -#: g10/gpg.c:817 sm/gpgsm.c:603 +#: g10/gpg.c:814 sm/gpgsm.c:603 msgid "Used libraries:" msgstr "" -#: g10/gpg.c:925 +#: g10/gpg.c:922 msgid "usage: gpg [options] " msgstr "用法: gpg [選項] " -#: g10/gpg.c:1095 sm/gpgsm.c:768 +#: g10/gpg.c:1092 sm/gpgsm.c:768 msgid "conflicting commands\n" msgstr "指令彼此矛盾\n" -#: g10/gpg.c:1113 +#: g10/gpg.c:1110 #, c-format msgid "no = sign found in group definition `%s'\n" msgstr "在群組定義 `%s' 裡找不到 = 記號\n" -#: g10/gpg.c:1310 +#: g10/gpg.c:1307 #, c-format msgid "WARNING: unsafe ownership on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的所有權並不安全\n" -#: g10/gpg.c:1313 +#: g10/gpg.c:1310 #, c-format msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的所有權並不安全\n" -#: g10/gpg.c:1316 +#: g10/gpg.c:1313 #, c-format msgid "WARNING: unsafe ownership on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的所有權並不安全\n" -#: g10/gpg.c:1322 +#: g10/gpg.c:1319 #, c-format msgid "WARNING: unsafe permissions on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的權限並不安全\n" -#: g10/gpg.c:1325 +#: g10/gpg.c:1322 #, c-format msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的權限並不安全\n" -#: g10/gpg.c:1328 +#: g10/gpg.c:1325 #, c-format msgid "WARNING: unsafe permissions on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的權限並不安全\n" -#: g10/gpg.c:1334 +#: g10/gpg.c:1331 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1337 +#: g10/gpg.c:1334 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1340 +#: g10/gpg.c:1337 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1346 +#: g10/gpg.c:1343 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgstr "警告: 家目錄 `%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1349 +#: g10/gpg.c:1346 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" msgstr "警告: 組態檔案 `%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1352 +#: g10/gpg.c:1349 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgstr "警告: 延伸模組 `%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1495 +#: g10/gpg.c:1492 #, c-format msgid "unknown configuration item `%s'\n" msgstr "未知的組態項目 `%s'\n" -#: g10/gpg.c:1590 +#: g10/gpg.c:1587 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:1592 +#: g10/gpg.c:1589 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:1594 +#: g10/gpg.c:1591 #, fuzzy msgid "show all notations during signature listings" msgstr "在私鑰圈裡沒有一致的簽章\n" -#: g10/gpg.c:1596 +#: g10/gpg.c:1593 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:1600 +#: g10/gpg.c:1597 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:1602 +#: g10/gpg.c:1599 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "給定的偏好金鑰伺服器 URL 無效\n" -#: g10/gpg.c:1604 +#: g10/gpg.c:1601 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:1606 +#: g10/gpg.c:1603 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:1608 +#: g10/gpg.c:1605 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:1610 +#: g10/gpg.c:1607 #, fuzzy msgid "show the keyring name in key listings" msgstr "在私鑰清單和公鑰清單間切換" -#: g10/gpg.c:1612 +#: g10/gpg.c:1609 #, fuzzy msgid "show expiration dates during signature listings" msgstr "在私鑰圈裡沒有一致的簽章\n" -#: g10/gpg.c:1875 +#: g10/gpg.c:1802 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: g10/gpg.c:2030 +#: g10/gpg.c:1957 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "請注意: 舊有的預設選項檔 `%s' 已被忽略\n" -#: g10/gpg.c:2290 g10/gpg.c:2955 g10/gpg.c:2967 +#: g10/gpg.c:2217 g10/gpg.c:2882 g10/gpg.c:2894 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "請注意: 一般情況下不會用到 %s!\n" -#: g10/gpg.c:2471 g10/gpg.c:2483 +#: g10/gpg.c:2398 g10/gpg.c:2410 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2565 +#: g10/gpg.c:2492 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' 不是一個有效的字元集\n" -#: g10/gpg.c:2588 g10/gpg.c:2783 g10/keyedit.c:4084 +#: g10/gpg.c:2515 g10/gpg.c:2710 g10/keyedit.c:4084 msgid "could not parse keyserver URL\n" msgstr "無法剖析金鑰伺服器 URI\n" -#: g10/gpg.c:2600 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: 無效的金鑰伺服器選項\n" -#: g10/gpg.c:2603 +#: g10/gpg.c:2530 msgid "invalid keyserver options\n" msgstr "無效的金鑰伺服器選項\n" -#: g10/gpg.c:2610 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: 無效的匯入選項\n" -#: g10/gpg.c:2613 +#: g10/gpg.c:2540 msgid "invalid import options\n" msgstr "無效的匯入選項\n" -#: g10/gpg.c:2620 +#: g10/gpg.c:2547 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: 無效的匯出選項\n" -#: g10/gpg.c:2623 +#: g10/gpg.c:2550 msgid "invalid export options\n" msgstr "無效的匯出選項\n" -#: g10/gpg.c:2630 +#: g10/gpg.c:2557 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: 無效的清單選項\n" -#: g10/gpg.c:2633 +#: g10/gpg.c:2560 msgid "invalid list options\n" msgstr "無效的清單選項\n" -#: g10/gpg.c:2641 +#: g10/gpg.c:2568 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:2643 +#: g10/gpg.c:2570 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:2645 +#: g10/gpg.c:2572 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2647 +#: g10/gpg.c:2574 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2651 +#: g10/gpg.c:2578 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:2653 +#: g10/gpg.c:2580 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "給定的偏好金鑰伺服器 URL 無效\n" -#: g10/gpg.c:2655 +#: g10/gpg.c:2582 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2657 +#: g10/gpg.c:2584 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:2659 +#: g10/gpg.c:2586 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' 不是一個有效的簽章使用期限\n" -#: g10/gpg.c:2661 +#: g10/gpg.c:2588 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2663 +#: g10/gpg.c:2590 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2670 +#: g10/gpg.c:2597 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:2673 +#: g10/gpg.c:2600 msgid "invalid verify options\n" msgstr "無效的驗證選項\n" -#: g10/gpg.c:2680 +#: g10/gpg.c:2607 #, c-format msgid "unable to set exec-path to %s\n" msgstr "無法把執行檔路徑設成 %s\n" -#: g10/gpg.c:2855 +#: g10/gpg.c:2782 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:2858 +#: g10/gpg.c:2785 msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:2944 sm/gpgsm.c:1360 +#: g10/gpg.c:2871 sm/gpgsm.c:1361 msgid "WARNING: program may create a core file!\n" msgstr "警告: 程式可能會傾印出核心檔!\n" -#: g10/gpg.c:2948 +#: g10/gpg.c:2875 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告: %s 會使得 %s 失效\n" -#: g10/gpg.c:2957 +#: g10/gpg.c:2884 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不被允許跟 %s 併用\n" -#: g10/gpg.c:2960 +#: g10/gpg.c:2887 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 跟 %s 放在一起沒有意義!\n" -#: g10/gpg.c:2975 +#: g10/gpg.c:2902 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "因為 %s 而不會在不安全的記憶體中執行\n" -#: g10/gpg.c:2989 +#: g10/gpg.c:2916 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" msgstr "妳祇有在 --pgp2 模式下纔能做出分離式或明文簽章\n" -#: g10/gpg.c:2995 +#: g10/gpg.c:2922 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "妳在 --pgp2 模式下時, 不能同時簽署和加密\n" -#: g10/gpg.c:3001 +#: g10/gpg.c:2928 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "啟用 --pgp2 時妳祇應該使用檔案, 而非管道\n" -#: g10/gpg.c:3014 +#: g10/gpg.c:2941 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "在 --pgp2 模式下加密訊息需要 IDEA 編密法\n" -#: g10/gpg.c:3080 g10/gpg.c:3104 sm/gpgsm.c:1432 +#: g10/gpg.c:3007 g10/gpg.c:3031 sm/gpgsm.c:1433 msgid "selected cipher algorithm is invalid\n" msgstr "所選的編密演算法無效\n" -#: g10/gpg.c:3086 g10/gpg.c:3110 sm/gpgsm.c:1440 +#: g10/gpg.c:3013 g10/gpg.c:3037 sm/gpgsm.c:1441 msgid "selected digest algorithm is invalid\n" msgstr "所選的摘要演算法無效\n" -#: g10/gpg.c:3092 +#: g10/gpg.c:3019 msgid "selected compression algorithm is invalid\n" msgstr "所選的壓縮演算法無效\n" -#: g10/gpg.c:3098 +#: g10/gpg.c:3025 msgid "selected certification digest algorithm is invalid\n" msgstr "所選的憑證摘要演算法無效\n" -#: g10/gpg.c:3113 +#: g10/gpg.c:3040 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 一定要大於 0\n" -#: g10/gpg.c:3115 +#: g10/gpg.c:3042 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 一定要大於 1\n" -#: g10/gpg.c:3117 +#: g10/gpg.c:3044 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 一定要介於 1 和 255 之間\n" -#: g10/gpg.c:3119 +#: g10/gpg.c:3046 msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "無效的 default-cert-level; 一定要是 0, 1, 2 或 3\n" -#: g10/gpg.c:3121 +#: g10/gpg.c:3048 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "無效的 min-cert-level; 一定要是 1, 2 或 3\n" -#: g10/gpg.c:3124 +#: g10/gpg.c:3051 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "請注意: 強烈不建議使用單純的 S2K 模式 (0)\n" -#: g10/gpg.c:3128 +#: g10/gpg.c:3055 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "無效的 S2K 模式; 一定要是 0, 1 或 3\n" -#: g10/gpg.c:3135 +#: g10/gpg.c:3062 msgid "invalid default preferences\n" msgstr "無效的預設偏好\n" -#: g10/gpg.c:3144 +#: g10/gpg.c:3071 msgid "invalid personal cipher preferences\n" msgstr "無效的個人編密法偏好\n" -#: g10/gpg.c:3148 +#: g10/gpg.c:3075 msgid "invalid personal digest preferences\n" msgstr "無效的個人摘要偏好\n" -#: g10/gpg.c:3152 +#: g10/gpg.c:3079 msgid "invalid personal compress preferences\n" msgstr "無效的個人壓縮偏好\n" -#: g10/gpg.c:3185 +#: g10/gpg.c:3112 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 還沒辦法跟 %s 一起運作\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3159 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "妳不該將編密演算法 `%s' 用於 %s 模式中\n" -#: g10/gpg.c:3237 +#: g10/gpg.c:3164 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "妳不該將摘要演算法 `%s' 用於 %s 模式中\n" -#: g10/gpg.c:3242 +#: g10/gpg.c:3169 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "妳不該將壓縮演算法 `%s' 用於 %s 模式中\n" -#: g10/gpg.c:3334 +#: g10/gpg.c:3261 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "信任資料庫啟始失敗: %s\n" -#: g10/gpg.c:3345 +#: g10/gpg.c:3272 msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告: 給定的收件者 (-r) 未使用公鑰加密\n" -#: g10/gpg.c:3366 +#: g10/gpg.c:3293 msgid "--store [filename]" msgstr "--store [檔名]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3300 msgid "--symmetric [filename]" msgstr "--symmetric [檔名]" -#: g10/gpg.c:3375 +#: g10/gpg.c:3302 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "`%s' 的對稱式加密失敗: %s\n" -#: g10/gpg.c:3385 +#: g10/gpg.c:3312 msgid "--encrypt [filename]" msgstr "--encrypt [檔名]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3325 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [檔名]" -#: g10/gpg.c:3400 +#: g10/gpg.c:3327 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "妳不能在 --s2k-mode 0 中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3403 +#: g10/gpg.c:3330 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "妳不能在 %s 模式中使用 --symmetric --encrypt\n" -#: g10/gpg.c:3421 +#: g10/gpg.c:3348 msgid "--sign [filename]" msgstr "--sign [檔名]" -#: g10/gpg.c:3434 +#: g10/gpg.c:3361 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [檔名]" -#: g10/gpg.c:3449 +#: g10/gpg.c:3376 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [檔名]" -#: g10/gpg.c:3451 +#: g10/gpg.c:3378 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "妳不能在 --s2k-mode 0 中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3454 +#: g10/gpg.c:3381 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "妳不能在 %s 模式中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:3474 +#: g10/gpg.c:3401 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [檔名]" -#: g10/gpg.c:3483 +#: g10/gpg.c:3410 msgid "--clearsign [filename]" msgstr "--clearsign [檔名]" -#: g10/gpg.c:3508 +#: g10/gpg.c:3435 msgid "--decrypt [filename]" msgstr "--decrypt [檔名]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3443 msgid "--sign-key user-id" msgstr "--sign-key 使用者ID" -#: g10/gpg.c:3520 +#: g10/gpg.c:3447 msgid "--lsign-key user-id" msgstr "--lsign-key 使用者ID" -#: g10/gpg.c:3541 +#: g10/gpg.c:3468 msgid "--edit-key user-id [commands]" msgstr "--edit-key 使用者ID [指令]" -#: g10/gpg.c:3626 +#: g10/gpg.c:3553 #, c-format msgid "keyserver send failed: %s\n" msgstr "送至金鑰伺服器時失敗: %s\n" -#: g10/gpg.c:3628 +#: g10/gpg.c:3555 #, c-format msgid "keyserver receive failed: %s\n" msgstr "從金鑰伺服器接收時失敗: %s\n" -#: g10/gpg.c:3630 +#: g10/gpg.c:3557 #, c-format msgid "key export failed: %s\n" msgstr "金鑰匯出時失敗: %s\n" -#: g10/gpg.c:3641 +#: g10/gpg.c:3568 #, c-format msgid "keyserver search failed: %s\n" msgstr "從金鑰伺服器中搜尋時失敗: %s\n" -#: g10/gpg.c:3651 +#: g10/gpg.c:3578 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "從金鑰伺服器更新時失敗: %s\n" -#: g10/gpg.c:3702 +#: g10/gpg.c:3629 #, c-format msgid "dearmoring failed: %s\n" msgstr "解開封裝失敗: %s\n" -#: g10/gpg.c:3710 +#: g10/gpg.c:3637 #, c-format msgid "enarmoring failed: %s\n" msgstr "進行封裝失敗: %s\n" -#: g10/gpg.c:3800 +#: g10/gpg.c:3727 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "無效的 `%s' 雜湊演算法\n" -#: g10/gpg.c:3917 +#: g10/gpg.c:3844 msgid "[filename]" msgstr "[檔名]" -#: g10/gpg.c:3921 +#: g10/gpg.c:3848 msgid "Go ahead and type your message ...\n" msgstr "請開始鍵入妳的訊息 ...\n" -#: g10/gpg.c:4233 +#: g10/gpg.c:4160 msgid "the given certification policy URL is invalid\n" msgstr "給定的的憑證原則 URL 無效\n" -#: g10/gpg.c:4235 +#: g10/gpg.c:4162 msgid "the given signature policy URL is invalid\n" msgstr "給定的簽章原則 URL 無效\n" -#: g10/gpg.c:4268 +#: g10/gpg.c:4195 msgid "the given preferred keyserver URL is invalid\n" msgstr "給定的偏好金鑰伺服器 URL 無效\n" @@ -7366,21 +7366,21 @@ msgstr "無法連接至 `%s': %s\n" msgid "unknown validation model `%s'\n" msgstr "未知的選項 `%s'\n" -#: sm/gpgsm.c:1377 +#: sm/gpgsm.c:1378 msgid "WARNING: running with faked system time: " msgstr "" -#: sm/gpgsm.c:1473 +#: sm/gpgsm.c:1474 #, c-format msgid "importing common certificates `%s'\n" msgstr "" -#: sm/gpgsm.c:1491 +#: sm/gpgsm.c:1492 #, fuzzy, c-format msgid "can't sign using `%s': %s\n" msgstr "無法存取 `%s': %s\n" -#: sm/gpgsm.c:1690 +#: sm/gpgsm.c:1691 msgid "this command has not yet been implemented\n" msgstr ""