diff options
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in.in | 81 | ||||
-rw-r--r-- | po/be.po | 193 | ||||
-rw-r--r-- | po/ca.po | 198 | ||||
-rw-r--r-- | po/cs.po | 198 | ||||
-rw-r--r-- | po/da.po | 193 | ||||
-rw-r--r-- | po/de.po | 209 | ||||
-rw-r--r-- | po/el.po | 198 | ||||
-rw-r--r-- | po/eo.po | 198 | ||||
-rw-r--r-- | po/es.po | 198 | ||||
-rw-r--r-- | po/et.po | 198 | ||||
-rw-r--r-- | po/fi.po | 198 | ||||
-rw-r--r-- | po/fr.po | 198 | ||||
-rw-r--r-- | po/gl.po | 198 | ||||
-rw-r--r-- | po/hu.po | 198 | ||||
-rw-r--r-- | po/id.po | 198 | ||||
-rw-r--r-- | po/it.po | 198 | ||||
-rw-r--r-- | po/ja.po | 198 | ||||
-rw-r--r-- | po/nb.po | 198 | ||||
-rw-r--r-- | po/pl.po | 198 | ||||
-rw-r--r-- | po/pt.po | 198 | ||||
-rw-r--r-- | po/pt_BR.po | 193 | ||||
-rw-r--r-- | po/ro.po | 198 | ||||
-rw-r--r-- | po/ru.po | 948 | ||||
-rw-r--r-- | po/sk.po | 198 | ||||
-rw-r--r-- | po/sv.po | 198 | ||||
-rw-r--r-- | po/tr.po | 208 | ||||
-rw-r--r-- | po/zh_CN.po | 198 | ||||
-rw-r--r-- | po/zh_TW.po | 198 |
28 files changed, 3173 insertions, 3010 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 53efc5e16..2ed49e62d 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -1,5 +1,5 @@ # Makefile for PO directory in any package using GNU gettext. -# Copyright (C) 1995-1997, 2000-2004 by Ulrich Drepper <[email protected]> +# Copyright (C) 1995-1997, 2000-2006 by Ulrich Drepper <[email protected]> # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public @@ -8,10 +8,11 @@ # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # -# Origin: gettext-0.14 +# Origin: gettext-0.15 PACKAGE = @PACKAGE@ VERSION = @VERSION@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SHELL = /bin/sh @SET_MAKE@ @@ -22,18 +23,28 @@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ datadir = @datadir@ -localedir = $(datadir)/locale +localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -MKINSTALLDIRS = @MKINSTALLDIRS@ -mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) - -GMSGFMT = @GMSGFMT@ -MSGFMT = @MSGFMT@ -XGETTEXT = @XGETTEXT@ +mkinstalldirs = $(SHELL) @install_sh@ -d +mkdir_p = @mkdir_p@ + +GMSGFMT_ = @GMSGFMT@ +GMSGFMT_no = @GMSGFMT@ +GMSGFMT_yes = @GMSGFMT_015@ +GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) +MSGFMT_ = @MSGFMT@ +MSGFMT_no = @MSGFMT@ +MSGFMT_yes = @MSGFMT_015@ +MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) +XGETTEXT_ = @XGETTEXT@ +XGETTEXT_no = @XGETTEXT@ +XGETTEXT_yes = @XGETTEXT_015@ +XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit @@ -46,7 +57,7 @@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) -DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ +DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) @@ -79,6 +90,12 @@ all: all-@USE_NLS@ all-yes: stamp-po all-no: +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, stamp-po is a nop (i.e. a phony target). + # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, @@ -88,10 +105,13 @@ all-no: # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot - test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) - @echo "touch stamp-po" - @echo timestamp > stamp-poT - @mv stamp-poT stamp-po + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch stamp-po" && \ + echo timestamp > stamp-poT && \ + mv stamp-poT stamp-po; \ + } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source @@ -100,11 +120,16 @@ stamp-po: $(srcdir)/$(DOMAIN).pot # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ - --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' + --msgid-bugs-address="$$msgid_bugs_address" test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ @@ -143,7 +168,7 @@ install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ - $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ @@ -156,13 +181,13 @@ install-data: install-data-@USE_NLS@ fi install-data-no: all install-data-yes: all - $(mkinstalldirs) $(DESTDIR)$(datadir) + $(mkdir_p) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ + $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ @@ -202,19 +227,19 @@ installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ - $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: - $(mkinstalldirs) $(DESTDIR)$(datadir) + $(mkdir_p) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ + $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ @@ -289,11 +314,14 @@ dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. -dist2: $(DISTFILES) +dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + dists="$$dists $(DOMAIN).pot stamp-po"; \ + fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ @@ -305,9 +333,9 @@ dist2: $(DISTFILES) if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ - cp -p $$file $(distdir); \ + cp -p $$file $(distdir) || exit 1; \ else \ - cp -p $(srcdir)/$$file $(distdir); \ + cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done @@ -354,10 +382,9 @@ $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: -Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@ +Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ - && CONFIG_FILES=$(subdir)/[email protected] CONFIG_HEADERS= \ - $(SHELL) ./config.status + && $(SHELL) ./config.status $(subdir)/[email protected] po-directories force: @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2003-10-30 16:35+0200\n" "Last-Translator: Ales Nyakhaychyk <[email protected]>\n" "Language-Team: Belarusian <[email protected]>\n" @@ -133,7 +133,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n" @@ -283,160 +283,154 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Калі ласка, паведамляйце пра памылкі на <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Выкарыстаньне: gpg [выбары] [файлы] (-h для даведкі)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "запіс у stdout\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: тэчка створана\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "немагчыма адкрыць %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: немагчыма стварыць тэчку: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, c-format msgid "%s %s stopped\n" msgstr "" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4136,7 +4130,7 @@ msgstr "збой падпісаньня: %s\n" msgid "Signature expires at %s\n" msgstr "Подпіс створаны ў %.*s з выкарыстаньнем %s ID ключа %08lX\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4348,7 +4342,7 @@ msgstr "%s: немагчыма стварыць тэчку: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "" @@ -5355,26 +5349,26 @@ msgstr "" msgid "okay, we are the anonymous recipient.\n" msgstr "" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "" @@ -5533,12 +5527,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6050,7 +6044,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "" @@ -6083,10 +6077,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Калі ласка, паведамляйце пра памылкі на <[email protected]>.\n" -#: kbx/kbxutil.c:108 -msgid ".\n" -msgstr "" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6117,47 +6107,52 @@ msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n" msgid "reading public key failed: %s\n" msgstr "грамадскі ключ ня знойдзены" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "збой падпісаньня: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6165,112 +6160,112 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "памылка стварэньня \"%s\": %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "паказаць ключы й адбіткі пальцаў" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "выдаліць ключы са зьвязку сакрэтных ключоў" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "стварыць новую пару ключоў" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "%s: немагчыма стварыць хэш-табліцу: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "стварыць новую пару ключоў" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "" @@ -6321,16 +6316,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6501,35 +6496,35 @@ msgstr "DSA патрабуе выкарыстаньня 160-і бітавага msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no [не]" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "невядомая вэрсыя" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "паказаць ключы й адбіткі пальцаў" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "паказаць ключы й адбіткі пальцаў" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7027,12 +7022,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "нерэчаісны хэш-альгарытм \"%s\"\n" -#: sm/verify.c:507 +#: sm/verify.c:510 msgid " aka" msgstr "" @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.0\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2005-02-04 02:04+0100\n" "Last-Translator: Jordi Mallach <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -155,7 +155,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: no s'ha pogut crear la taula de dispersió: %s\n" @@ -312,161 +312,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Si us plau, informeu sobre els errors a <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, 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:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, 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:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "fitxer d'opcions «%s»: %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "s'estan llegint opcions de «%s»\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "error en crear «%s»: %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no es pot crear el directori «%s»: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error mentre s'enviava a «%s»: %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "ha fallat l'actualització: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: s'ha creat el directori\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, 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:1342 +#: agent/gpg-agent.c:1373 #, 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:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, 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:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claus es descarta\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent no està disponible en aquesta sessió\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "la variable d'entorn GPG_AGENT_INFO és malformada\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4516,7 +4510,7 @@ msgstr "Aquesta signatura caduca el %s\n" # Amb «it» es refereix a les dates? ivb # Això vaig entendre jo. jm -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4766,7 +4760,7 @@ msgstr "no s'ha pogut crear «%s»: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "mai " @@ -5843,26 +5837,26 @@ msgstr "el destinatari és anònim; es provarà la clau secreta %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "d'acord, som el destinatari anònim.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "la codificació antiga del DEK no està suportada\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "l'algoritme de xifratge %d%s és desconegut o està desactivat\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "NOTA: no s'ha trobat l'algoritme de xifratge %d en les preferències\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTA: la clau secreta %08lX caduca el %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOTA: aquesta clau ha estat revocada!" @@ -6036,12 +6030,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6608,7 +6602,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "la línia d'entrada %u és massa llarga o hi falta un fí de línia\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "heu trobat un bug... (%s:%d)\n" @@ -6641,11 +6635,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Si us plau, informeu sobre els errors a <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6676,47 +6665,52 @@ msgstr "no s'ha pogut reconstruir la memòria cau de l'anell: %s\n" msgid "reading public key failed: %s\n" msgstr "no s'ha pogut eliminar el bloc de claus: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "l'enviament al servidor de claus ha fallat: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6724,113 +6718,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "error en crear «%s»: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "s'ha produït un error en llegir el bloc de claus: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "error: l'empremta digital és invàlida\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "«%s» ja està comprimida\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "genera un nou parell de claus" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "no s'ha pogut inicialitzar la base de dades de confiança: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "La generació de claus ha fallat: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "La generació de claus ha fallat: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "signatura %s, algorisme de resum %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "" @@ -6883,16 +6877,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7075,30 +7069,30 @@ msgstr "DSA requereix l'ús d'un algoritme de dispersió de 160 bits\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[no establert]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "error: l'empremta digital és invàlida\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "error: l'empremta digital és invàlida\n" @@ -7114,7 +7108,7 @@ msgstr "error: l'empremta digital és invàlida\n" # Se't passava l'argument «*». printf(3), hieroglyph(7). ivb # Ah! Prova-ho, no casque alguna cosa :P ivb # Ah, ja veig! Moltes gràcies! Aquest msgstr ha quedat curiós :) jm -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7611,12 +7605,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Signatura correcta de \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -7974,6 +7968,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "l'algoritme de protecció %d%s no està suportat\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "hi ha un problema amb l'agent: es deshabilitarà el seu ús\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.3.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-11-26 09:12+0200\n" "Last-Translator: Roman Pavlik <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" @@ -133,7 +133,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: nepoda�ilo se vytvo�it hashovac� tabulku: %s\n" @@ -287,7 +287,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -296,154 +296,148 @@ msgstr "" "Chyby oznamte, pros�m, na adresu <[email protected]>.\n" "P�ipom�nky k p�ekladu <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Pou�it�: gpg [mo�nosti] [soubory] (-h pro pomoc)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZN�MKA: neexistuje implicitn� soubor s mo�nostmi `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "soubor s mo�nostmi `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "�tu mo�nosti z `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "chyba p�i vytv��en� `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nemohu vytvo�it adres�� `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nemohu vytvo�it `%s': %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba p�i hled�n� z�znamu d�v�ryhodnosti v `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualizace selhala: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisuji tajn� kl�� do `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "adres�� `%s' vytvo�en\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) selhal v %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "nemohu vytvo�it adres�� `%s': %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualizace tajn�ho kl��e selhala: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: p�esko�eno: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nen� v tomto sezen� dostupn�\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "�patn� form�t prom�nn� prost�ed� GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4317,7 +4311,7 @@ msgstr "Platnost kl��e skon�� v %s\n" msgid "Signature expires at %s\n" msgstr "Platnost podpisu skon�� v %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4559,7 +4553,7 @@ msgstr "nemohu vytvo�it z�lohu souboru `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "POZN�MKA: z�loha kl��e z karty ulo�ena do `%s'\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "nikdy " @@ -5581,26 +5575,26 @@ msgstr "anonymn� adres�t; zkou��m tajn� kl�� %s ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "o.k., my jsme anonymn� adres�t.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "star� k�dov�n� DEK nen� podporov�no\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "�ifrovac� algoritmus %d%s je nezn�m� nebo je zneplatn�n\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "VAROV�N�: v p�edvolb�ch p��jemce nenalezen �ifrovac� algoritmus %s\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "POZN�MKA: platnost tajn�ho kl��e %s skon�ila %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "POZN�MKA: kl�� byl revokov�n" @@ -5768,12 +5762,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6311,7 +6305,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "vstupn� ��dek %u je p��li� dlouh� nebo na konci chyb� znak LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "nalezena chyba v programu ... (%s:%d)\n" @@ -6346,11 +6340,6 @@ msgstr "" "Chyby oznamte, pros�m, na adresu <[email protected]>.\n" "P�ipom�nky k p�ekladu <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6381,47 +6370,52 @@ msgstr "ulo�en� datumu vytvo�en� se nezda�ilo: %s\n" msgid "reading public key failed: %s\n" msgstr "�ten� ve�ejn�ho kl��e se nezda�ilo: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "odpov�� neobsahuje ve�ejn� kl��\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "odpov�� neobsahuje RSA modulus\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "odpov�� neobsahuje ve�ejn� RSA exponent\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "funkce PIN callback zkon�ila chybou: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN pro CHV%d je p��li� kr�tk�; minim�ln� d�lka je %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verifikace CHV%d se nezda�ila: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "p��stup k administr�torsk�m p��kaz�m nen� nakonfigurov�n\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "chyba p�i z�sk�n� CHV z karty\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "karta je trvale uzam�ena!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6430,110 +6424,110 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|PIN administr�tora" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Nov� PIN administr�tora" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Nov� PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "chyba p�i z�sk�n� nov�ho PINu: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "chyba p�i �ten� aplika�n�ch dat\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "chyba p�i �ten� fingerpritnu DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "kl�� ji� existuje\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "existuj�c� kl�� bude p�eps�n\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "generov�n� nov�ho kl��e\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "chyb� �asov� raz�tko vytvo�en�\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "sch�z� RSA modulus nebo nem� velikost %d bit�\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "sch�z� ve�ejn� RSA exponent nebo je del�� ne� %d bit�\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "sch�z� RSA prime %s nebo nem� velikost %d bit�\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "nelze ulo�it kl��: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "pros�m po�kejte ne� bude kl�� vygenerov�n ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "henerov�n� kl��e se nezda�ilo\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "generov�n� kl��e dokon�eno (%d sekund)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "neplatn� struktura OpenPGP kraty (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "podpis %s, hashovac� algoritmus %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "dosud vytvo�en� podpisy: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||Pros�m vlo�te PIN%%0A[podpis hotov: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "ov��en� administr�torsk�ho PIN je nyn� prost�ednictv�m tohoto p��kazu " "zak�z�no\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "p��stup na %s se nezda�il - vadn� OpenPGP karta?\n" @@ -6583,16 +6577,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6766,35 +6760,35 @@ msgstr "DSA po�aduje pou�it� 160-ti bitov�ho hashovac�ho algoritmu\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "ne" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[nen� nastaven]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "Chyba: neplatn� odpov��.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "Chyba: neplatn� odpov��.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7298,12 +7292,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Dobr� podpis od \"%s\"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"%s\"" @@ -7660,6 +7654,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "ochrann� algoritmus %d nen� podporov�n\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "probl�m s agentem - pou��v�n� agenta vypnuto\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.0h\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2003-12-03 16:11+0100\n" "Last-Translator: Birger Langkjer <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" @@ -133,7 +133,7 @@ msgid "" msgstr "" # er det klogt at overs�tte TrustDB? -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" @@ -288,160 +288,154 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Rapport�r venligst fejl til <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Brug: gpg [flag] [filer] (-h for hj�lp)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTITS: ingen standard alternativfil '%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "alternativfil`%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "l�ser indstillinger fra `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, fuzzy, c-format msgid "error creating `%s': %s\n" msgstr "fejl ved l�sning af '%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke oprette %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "fejl ved l�sning af '%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "signering fejlede: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmeligt certifikat til '%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: mappe oprettet\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "kan ikke �bne %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kan ikke oprette mappe: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: udelod: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, fuzzy, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4230,7 +4224,7 @@ msgstr "N�gle udl�ber d. %s\n" msgid "Signature expires at %s\n" msgstr "Denne n�gle er ikke beskyttet.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4451,7 +4445,7 @@ msgstr "kan ikke oprette %s: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "hemmelige n�gler import: %lu\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "" @@ -5491,26 +5485,26 @@ msgstr "" msgid "okay, we are the anonymous recipient.\n" msgstr "" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, fuzzy, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "valgte cifferalgoritme %d er ugyldig\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "hemmelige n�gler import: %lu\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 #, fuzzy msgid "NOTE: key has been revoked" msgstr "n�gle %08lX: n�gle er blevet annulleret!\n" @@ -5676,12 +5670,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6195,7 +6189,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "du fandt en fejl ... (%s:%d)\n" @@ -6228,10 +6222,6 @@ msgstr "sl� fuld fejltjekning til" msgid "Please report bugs to " msgstr "Rapport�r venligst fejl til <[email protected]>.\n" -#: kbx/kbxutil.c:108 -msgid ".\n" -msgstr "" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6263,47 +6253,52 @@ msgstr "ingen standard offentlig n�glering\n" msgid "reading public key failed: %s\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "p�kl�dning af beskyttelse fejlede: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6311,114 +6306,114 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "fejl ved oprettelse af kodes�tning: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "fejl ved l�sning af '%s': %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "fejl i trailerlinie\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "fjern n�gle fra den hemmelige n�glering" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "gener�r et nyt n�glepar" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" # er det klogt at overs�tte TrustDB? -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "kunne ikke initialisere TillidsDB: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "fjernelse af beskyttelse fejlede: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "N�gleoprettelse annulleret.\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s signatur fra: %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "ingen gyldig OpenPGP data fundet.\n" @@ -6471,16 +6466,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6655,35 +6650,35 @@ msgstr "" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "n" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "ukendt version" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "fejl i trailerlinie\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "fejl i trailerlinie\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7180,12 +7175,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "God signatur fra \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.9.90\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" -"PO-Revision-Date: 2006-11-097 23:35+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" +"PO-Revision-Date: 2006-11-21 10:59+0100\n" "Last-Translator: Walter Koch <[email protected]>\n" "Language-Team: German <[email protected]>\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" "Bitte geben Sie eine Passphrase ein, um den empfangenen geheimen Schlüssel%%" "0A %s%%0A im Schlüsselspeicher des gpg-agenten zu schützen" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, c-format msgid "failed to create stream from socket: %s\n" msgstr "Das Erzeugen eines Datenstrom aus dem Socket schlug fehl: %s\n" @@ -275,23 +275,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:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 msgid "Please report bugs to <" msgstr "Fehlerberichte bitte an <" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr ">.\n" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Aufruf: gpg-agent [Optionen] (-h für Hilfe)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -299,23 +293,23 @@ msgstr "" "Syntax: gpg-agent [Optionen] [Befehl [Argumente]]\n" "Verwaltung von geheimen Schlüsseln für GnuPG\n" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" "Kein sicherer Speicher mehr vorhanden, als %lu Byte zugewiesen werden sollten" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "Kein Speicher mehr vorhanden, als %lu Byte zugewiesen werden sollten" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "ungültige Debugebene `%s' angegeben\n" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format @@ -323,114 +317,114 @@ 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" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "Hinweis: Keine voreingestellte Optionendatei '%s' vorhanden\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "Optionendatei '%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "Fehler beim Erstellen von `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Verzeichnis `%s' kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "Der Name des Sockets ist zu lang\n" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, c-format msgid "can't create socket: %s\n" msgstr "Socket kann nicht erzeugt werden: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, 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:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, c-format msgid "listen() failed: %s\n" msgstr "Der listen()-Aufruf ist fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, c-format msgid "listening on socket `%s'\n" msgstr "Es wird auf Socket `%s' gehört\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "Verzeichnis `%s' erzeugt\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "stat()-Aufruf für `%s' fehlgeschlagen: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, 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:1441 +#: agent/gpg-agent.c:1475 #, 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:1446 +#: agent/gpg-agent.c:1480 #, 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:1460 +#: agent/gpg-agent.c:1497 #, 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:1465 +#: agent/gpg-agent.c:1502 #, 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:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "pth_select()-Aufruf fehlgeschlagen: %s - warte 1s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, c-format msgid "%s %s stopped\n" msgstr "%s %s angehalten\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 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:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "fehlerhaft aufgebaute GPG_AGENT_INFO - Umgebungsvariable\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4367,7 +4361,7 @@ msgstr "Key verfällt am %s\n" msgid "Signature expires at %s\n" msgstr "Unterschrift verfällt am %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4607,7 +4601,7 @@ msgstr "Sicherungsdatei '%s' kann nicht erzeugt werden: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "Hinweis: Sicherung des Kartenschlüssels wurde auf `%s' gespeichert\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "niemals " @@ -5609,14 +5603,14 @@ msgid "no valid addressees\n" msgstr "Keine gültigen Adressaten\n" #: g10/pkclist.c:1468 -#, fuzzy, c-format +#, c-format msgid "Note: key %s has no %s feature\n" -msgstr "Schlüssel %s hat keine User-IDs\n" +msgstr "Hinweis: Schlüssel %s besitzt nicht die %s Eigenschaft\n" #: g10/pkclist.c:1493 -#, fuzzy, c-format +#, c-format msgid "Note: key %s has no preference for %s\n" -msgstr "Schlüssel %s hat keine User-IDs\n" +msgstr "Hinweis: Schlüssel %s hat keine Einstellung für %s\n" #: g10/plaintext.c:91 msgid "data not saved; use option \"--output\" to save it\n" @@ -5653,28 +5647,28 @@ msgstr "Ungenannter Empfänger; Versuch mit geheimen Schlüssel %s ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "Alles klar, wir sind der ungenannte Empfänger.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "alte Kodierung des DEK wird nicht unterstützt\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "Verschüsselungsverfahren %d%s ist unbekannt oder abgeschaltet\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" "WARNUNG: Das Verschlüsselungsverfahren %s wurde nicht in den " "Empfängereinstellungen gefunden\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "Hinweis: geheimer Schlüssel %s verfällt am %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "Hinweis: Schlüssel wurde widerrufen" @@ -5848,12 +5842,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "Für DSA muß die Hashlänge ein Vielfaches von 8 Bit sein\n" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "DSA-Schlüssel %s verwendet einen unsicheren (%u Bit-) Hash\n" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "DSA-Schlüssel %s benötigt einen mindestens %u Bit langen Hash\n" @@ -6414,7 +6408,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "Eingabezeile %u ist zu lang oder es fehlt ein LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "Sie haben eine Bug (Programmfehler) gefunden ... (%s:%d)\n" @@ -6446,10 +6440,6 @@ msgstr "Alle Debug Flags setzen" msgid "Please report bugs to " msgstr "Bitte richten sie Berichte über Bugs (Softwarefehler) an " -#: kbx/kbxutil.c:108 -msgid ".\n" -msgstr ".\n" - #: kbx/kbxutil.c:112 msgid "Usage: kbxutil [options] [files] (-h for help)" msgstr "Aufruf: kbxutil [Optionen] [Dateien] (-h für Hilfe)" @@ -6481,47 +6471,52 @@ msgstr "Das Erzeugungsdatum konnte nicht gespeichert werden: %s\n" msgid "reading public key failed: %s\n" msgstr "Lesen des öffentlichen Schlüssels fehlgeschlagen: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "Die Antwort enthält keine öffentliche Schlüssel-Daten\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "Die Antwort enthält das RSA-Modulus nicht\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "Antwort enthält den öffentlichen RSA-Exponenten nicht\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "||Bitte die PIN auf der Tastatur des Kartenleser eingeben" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN-Callback meldete Fehler: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN für CHV%d ist zu kurz; die Mindestlänge beträgt %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "Prüfung des CHV%d fehlgeschlagen: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "Zugriff auf Admin-Befehle ist nicht eingerichtet\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "Fehler beim Holen des CHV-Status' von der Karte\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "Karte ist dauerhaft gesperrt!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "Noch %d Admin-PIN-Versuche, bis die Karte dauerhaft geperrt ist\n" @@ -6529,110 +6524,110 @@ msgstr "Noch %d Admin-PIN-Versuche, bis die Karte dauerhaft geperrt ist\n" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|Admin-PIN" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Neue Admin-PIN" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Neue PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "Fehler beim Abfragen einer neuen PIN: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "Fehler beim Lesen der Anwendungsdaten\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "Fehler beim Lesen des Fingerabdrucks DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "Schlüssel existiert bereits\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "Existierender Schlüssel wird ersetzt werden\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "neue Schlüssel werden erzeugt\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "Erzeugungsdatum fehlt\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "Der RSA Modulus fehlt oder ist nicht %d Bits lang\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "der öffentliche Exponent fehlt oder ist zu groß (mehr als %d Bit)\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "Die RSA Primzahl %s fehlt oder ist nicht %d Bits lang\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "Speichern des Schlüssels fehlgeschlagen: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "Bitte warten, der Schlüssel wird erzeugt ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "Schlüsselerzeugung fehlgeschlagen\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "Schlüsselerzeugung abgeschlossen (%d Sekunden)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "Ungültige Struktur der OpenPGP-Karte (DO 0x93)}\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "Die Hashmethode %s wird von der Karte nicht unterstützt\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "Anzahl bereits erzeugter Signaturen: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||Bitte die PIN eingeben%%0A[Sigs erzeugt: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "Die Überprüfung der Admin PIN is momentan durch einen Befehl verboten " "worden\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "Kann auf %s nicht zugreifen - ungültige OpenPGP-Karte?\n" @@ -6681,18 +6676,18 @@ msgstr "" "Synatx: scdaemon [Optionen] [Befehl [Argumente]]\n" "Smartcard Daemon für GnuPG\n" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" "Bitte die Option `--daemon' nutzen um das Programm im Hintergund " "auszuführen\n" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "Handhabungsroutine für fd %d gestartet\n" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "Handhabungsroutine für den fd %d beendet\n" @@ -6864,31 +6859,31 @@ msgstr "DSA benötigt einen 160-bit Hash Algorithmus\n" msgid "(this is the MD2 algorithm)\n" msgstr "(Dies ist der MD2 Algorithmus)\n" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 msgid "none" msgstr "keine" -#: sm/certdump.c:156 +#: sm/certdump.c:163 msgid "[none]" msgstr "[keine]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 msgid "[Error - invalid encoding]" msgstr "[Fehler - Ungültige Kodierung]" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "[Fehler - Nich genügend Speicher]" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "[Fehler - Kein Name]" -#: sm/certdump.c:597 +#: sm/certdump.c:604 msgid "[Error - invalid DN]" msgstr "[Fehler - Ungültiger DN]" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7386,11 +7381,11 @@ msgstr "[Datum nicht vorhanden]" msgid " using certificate ID %08lX\n" msgstr "mittels Zertifikat ID %08lX\n" -#: sm/verify.c:506 +#: sm/verify.c:509 msgid "Good signature from" msgstr "Korrekte Signatur von" -#: sm/verify.c:507 +#: sm/verify.c:510 msgid " aka" msgstr " alias" @@ -7741,3 +7736,9 @@ msgstr "keine Klasse angegeben\n" #, c-format msgid "class %s is not supported\n" msgstr "Klasse %s wird nicht unterstützt\n" + +#~ msgid ">.\n" +#~ msgstr ">.\n" + +#~ msgid ".\n" +#~ msgstr ".\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.1.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2003-06-27 12:00+0200\n" "Last-Translator: Dokianakis Theofanis <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" @@ -132,7 +132,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: �������� ����������� hashtable: %s\n" @@ -287,161 +287,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "��������� �� ���������� ��� <[email protected]>\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "�����: gpg [��������] [������] (-h ��� �������)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "��������: �� �������������� ������ �������� `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "������ �������� `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "�������� �������� ��� `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "������ ���� �� ���������� ��� `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "�������� ����������� ��������� `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "�������� ����������� ��� %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "������ ��� �������� ���� �� `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "� ��������� �������: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "������� ��� �������� �������� ��� `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: ��������� �������������\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read ������� (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: �������� ����������� ���������: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "� ��������� �������� �������: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ������������: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "� gpg-agent ��� ����� ���������� �� ���� �� ��������\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "��������������� ��������� ������������� GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4441,7 +4435,7 @@ msgstr "�� %s ����� ���� %s\n" msgid "Signature expires at %s\n" msgstr "�������� ����� ���� %s.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4688,7 +4682,7 @@ msgstr "�������� ����������� ��� `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "��������: �� ������� ������ %08lX ����� ���� %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "���� " @@ -5739,26 +5733,26 @@ msgstr "�������� ���������� ������ �������� �������� %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "�������, ������� � �������� ����������.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "������ ������������ ��� DEK ��� �������������\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "� ���������� �������������� %d%s ����� �������� � �����������������\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "��������: � ���������� �������������� %d ��� ����� ���� ��������\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "��������: �� ������� ������ %08lX ����� ���� %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "��������: �� ������ ���� ���������" @@ -5929,12 +5923,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6486,7 +6480,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "������ ������� %u ����� ���� ������ � ��� ������ �� LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "������� ��� bug ... (%s:%d)\n" @@ -6519,11 +6513,6 @@ msgstr "" msgid "Please report bugs to " msgstr "��������� �� ���������� ��� <[email protected]>\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6554,47 +6543,52 @@ msgstr "�������� ������������ ��� cache �����������: %s\n" msgid "reading public key failed: %s\n" msgstr "�������� block �������� �������: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "keyserver �������� �������: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6602,113 +6596,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "������ ��� ���������� ��� ������ ������: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "������ ���� ��� �������� ��� ����� ��������: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: ������ ���� �������� ��� �������� free : %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' ��� �����������\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "���������� ���� ���� ������� ��������" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "�������� ������������� ��� TrustDB: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "�������� block �������� �������: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "� ���������� �������� �������: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s ��������, ���������� ��������� %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "�� �������� ������ OpenPGP ��������.\n" @@ -6761,16 +6755,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6944,35 +6938,35 @@ msgstr "� DSA ������� �� ����� ���� 160 bit ���������� hash\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "���|���" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "�������" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "������: �� ������ ���������\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "������: �� ������ ���������\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7468,12 +7462,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "���� �������� ��� \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " ������ ��� \"" @@ -7830,6 +7824,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "��� ������������� � ���������� ���������� %d%s\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "�������� �� ��� agent - �������������� ��� ������ ��� agent\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.0.6d\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" @@ -132,7 +132,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: malsukcesis krei haktabelon: %s\n" @@ -287,161 +287,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Bonvolu raporti cimojn al <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTO: mankas implicita opcio-dosiero '%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "opcio-dosiero '%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "legas opciojn el '%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "eraro dum kreado de '%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ne povas krei %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eraro dum sendo al '%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skribas sekretan �losilon al '%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: dosierujo kreita\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fido-datenaro: lego malsukcesis (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: ne povas krei dosierujon: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualigo de sekreto malsukcesis: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu �losiloj ignoritaj\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, 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:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "malbona valoro de la media variablo GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4403,7 +4397,7 @@ msgstr "%s eksvalidi�os je %s\n" msgid "Signature expires at %s\n" msgstr "�i tiu �losilo eksvalidi�os je %s.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4645,7 +4639,7 @@ msgstr "ne povas krei '%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTO: sekreta �losilo %08lX eksvalidi�is je %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "" @@ -5694,26 +5688,26 @@ msgstr "nenomita ricevonto; provas per sekreta �losilo %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "bone; ni estas la nenomita ricevonto.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "malnova kodado de DEK ne estas realigita\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "�ifrad-metodo %d%s estas nekonata a� mal�altita\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "NOTO: �ifrad-metodo %d ne trovita en preferoj\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTO: sekreta �losilo %08lX eksvalidi�is je %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 #, fuzzy msgid "NOTE: key has been revoked" msgstr "�losilo %08lX: �losilo estas revokita!\n" @@ -5882,12 +5876,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6421,7 +6415,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "enigata linio %u tro longa, a� mankas linifino\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "vi trovis cimon ... (%s:%d)\n" @@ -6454,11 +6448,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Bonvolu raporti cimojn al <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6489,47 +6478,52 @@ msgstr "malsukcesis rekonstrui �losilaran staplon: %s\n" msgid "reading public key failed: %s\n" msgstr "forvi�o de �losilbloko malsukcesis: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "Kreado de �losiloj malsukcesis: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6537,113 +6531,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "eraro dum legado de �losilbloko: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: eraro dum legado de libera registro: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "'%s' jam densigita\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "krei novan �losilparon" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "forvi�o de �losilbloko malsukcesis: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Kreado de �losiloj malsukcesis: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s-subskribo de: %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "validaj OpenPGP-datenoj ne trovitaj.\n" @@ -6696,16 +6690,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6888,35 +6882,35 @@ msgstr "" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "ne" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "nekonata versio" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "%s: nevalida dosiero-versio %d\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "%s: nevalida dosiero-versio %d\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7411,12 +7405,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Bona subskribo de \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alinome \"" @@ -7772,6 +7766,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "protekto-metodo %d%s ne estas realigita\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problemo kun agento - mal�altas uzadon de agento\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU gnupg 1.4.1\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2005-03-25 16:50+0100\n" "Last-Translator: Jaime Su�rez <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" @@ -154,7 +154,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: fallo en la creaci�n de la tabla hash: %s\n" @@ -308,162 +308,156 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Por favor, informe de posibles \"bugs\" a <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opciones] [ficheros] (-h para ayuda)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, 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:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "fichero de opciones `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "leyendo opciones desde `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "error creando `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "no se puede crear el directorio `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "no se puede crear %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "error enviando a `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizaci�n fallida: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escribiendo clave privada en `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "directorio `%s' creado\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) fall� en %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, 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:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizaci�n de la clave secreta fallida: %s\n" # msgstr "clave %08lX: %d nuevas subclaves\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu claves omitidas\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "el agente gpg no esta disponible en esta sesi�n\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variable de entorno GPG_AGENT_INFO malformada\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4338,7 +4332,7 @@ msgstr "La clave caduca %s\n" msgid "Signature expires at %s\n" msgstr "La firma caduca el %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4580,7 +4574,7 @@ msgstr "no se puede crear fichero de respaldo `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTA: copia de seguridad de la clave guardada en `%s'\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "nunca " @@ -5608,26 +5602,26 @@ msgstr "destinatario an�nimo; probando clave secreta %s ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "de acuerdo, somos el destinatario an�nimo.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "la antigua codificaci�n de la DEK no puede usarse\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "algoritmo de cifrado %d%s desconocido o desactivado\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "NOTA: el cifrado %s no aparece en las preferencias del receptor\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTA: clave secreta %s caduc� el %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOTA: la clave ha sido revocada" @@ -5796,12 +5790,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6343,7 +6337,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "la l�nea %u es demasiado larga o no tiene avance de l�nea (LF)\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "ha encontrado un error... (%s:%d)\n" @@ -6376,11 +6370,6 @@ msgstr "habilita depuraci�n completa" msgid "Please report bugs to " msgstr "Por favor, informe de posibles \"bugs\" a <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6411,47 +6400,52 @@ msgstr "fallo guardando la fecha de creaci�n: %s\n" msgid "reading public key failed: %s\n" msgstr "fallo leyendo la clave\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "la respuesta no incluye la clave p�blica\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "la respuesta no incluye el m�dulo RSA\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "la respuesta no incluye el exponente p�blico RSA\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "la funci�n de manejo del PIN devolvi� un error: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "El PIN para CHV%d es demasiado corto; longitud m�nima %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "la verificaci�n CHV%d fall�: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "el acceso a �rdenes de administrador no est� configurado\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "error recuperando el estatus CHV de la tarjeta\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "�la tarjeta est� bloqueada permanentemente!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6461,108 +6455,108 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|PIN Administrador" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Nuevo PIN Administrador" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Nuevo PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "error obteniendo nuevo PIN: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "error leyendo datos de la aplicaci�n\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "error leyendo huella digital DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "la clave ya existe\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "la clave existente ser� reemplazada\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "generando nueva clave\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, fuzzy, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "exponente p�blico demasiado grande (m�s de 32 bits)\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "fallo al almacenar la clave: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "por favor, espere mientras se genera la clave ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "la generaci�n de la clave fall�\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "generaci�n de clave completada (%d segundos)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "estructura de la tarjeta OpenPGP inv�lida (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "firma %s, algoritmo de resumen %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "firmas creadas hasta ahora: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, fuzzy, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "PIN [firmas hechas: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "no se puede acceder a %s - �tarjeta OpenPGP inv�lida?\n" @@ -6615,16 +6609,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6807,35 +6801,35 @@ msgstr "DSA necesita un algoritmo de hash de 160 bits.\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[no establecido]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "Error: respuesta no v�lida.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "Error: respuesta no v�lida.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7337,12 +7331,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Firma correcta de \"%s\"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"%s\"" @@ -7704,6 +7698,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "el resumen protector %d no puede ser utilizado\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problema con el agente - inhabilitando el uso del agente\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" @@ -132,7 +132,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: paisktabeli loomine eba�nnestus: %s\n" @@ -286,161 +286,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Palun saatke veateated aadressil <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Kasuta: gpg [v�tmed] [failid] (-h n�itab abiinfot)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "M�RKUS: vaikimisi v�tmete fail `%s' puudub\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "v�tmete fail `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "loen v�tmeid failist `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "viga `%s' loomisel: %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kataloogi `%s' ei �nnestu luua: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s ei �nnestu luua: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "viga teate saatmisel serverile `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "uuendamine eba�nnestus: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjutan salajase v�tme faili `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: kataloog on loodud\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: lugemine eba�nnestus (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kataloogi ei �nnestu luua: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salajase v�tme uuendamine eba�nnestus: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: j�tsin vahele: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent ei ole sesses sessioonis kasutatav\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "vigane GPG_AGENT_INFO keskkonnamuutuja\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4384,7 +4378,7 @@ msgstr "%s aegub %s\n" msgid "Signature expires at %s\n" msgstr "Allkiri aegub %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4623,7 +4617,7 @@ msgstr "`%s' ei �nnestu luua: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "M�RKUS: salajane v�ti %08lX aegus %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "mitte kunagi" @@ -5660,26 +5654,26 @@ msgstr "anon��mne saaja; proovin salajast v�tit %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "ok, me oleme anon��mne teate saaja.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "vana DEK kodeerimine ei ole toetatud\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "�ifri algoritm %d%s on tundmatu v�i blokeeritud\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "M�RKUS: �ifri algoritm %d puudub eelistustes\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "M�RKUS: salajane v�ti %08lX aegus %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "M�RKUS: v�ti on t�histatud" @@ -5853,12 +5847,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6390,7 +6384,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "sisendrida %u on liiga pikk v�i seavahetus puudub\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "te leidsite vea ... (%s:%d)\n" @@ -6423,11 +6417,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Palun saatke veateated aadressil <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6458,47 +6447,52 @@ msgstr "v�tmehoidla vahem�lu uuesti loomine eba�nnestus: %s\n" msgid "reading public key failed: %s\n" msgstr "v�tmebloki kustutamine eba�nnestus: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "v�tmeserverile saatmine eba�nnestus: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6506,113 +6500,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "viga parooli loomisel: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "viga v�tmebloki lugemisel: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: viga vaba kirje lugemisel: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' on juba pakitud\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "genereeri uus v�tmepaar" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "TrustDB initsialiseerimine eba�nnestus: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "v�tmebloki kustutamine eba�nnestus: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "V�tme genereerimine eba�nnestus: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s allkiri, s�numil�hendi algoritm %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "ei leia OpenPGP andmeid.\n" @@ -6665,16 +6659,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6848,35 +6842,35 @@ msgstr "DSA n�uab 160 bitist r�sialgoritmi kasutamist\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "ei" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "tundmatu" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "viga: vigane s�rmej�lg\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "viga: vigane s�rmej�lg\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7371,12 +7365,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Korrektne allkiri kasutajalt \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " ka \"" @@ -7733,6 +7727,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "kaitse algoritm %d%s ei ole toetatud\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "probleem agendiga - blokeerin agendi kasutamise\n" @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" @@ -148,7 +148,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: hajautustaulukon luonti ei onnistu: %s\n" @@ -302,7 +302,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -310,154 +310,148 @@ msgid "Please report bugs to <" msgstr "" "Ilmoita ohjelmistovioista (englanniksi) osoitteeseen <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Käyttö: gpg [valitsimet] [tiedostot] (-h näyttää ohjeen)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "HUOM: Ei oletusasetustiedostoa \"%s\"\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "asetustiedosto \"%s\": %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "luetaan asetukset tiedostosta \"%s\"\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "virhe luotaessa \"%s\": %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "hakemiston \"%s\" luominen ei onnistu: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "ei voida luoda kohdetta %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "virhe lähettäessä kohteeseen \"%s\": %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: hakemisto luotu\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: luku epäonnistui (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: hakemistoa ei voi luoda: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "salaisen päivitys epäonnistui: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ohitettu: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, 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:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO-ympäristömuuttuja on väärin muotoiltu\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4424,7 +4418,7 @@ msgstr "%s vanhenee %s\n" msgid "Signature expires at %s\n" msgstr "Allekirjoitus vanhenee %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4668,7 +4662,7 @@ msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "HUOM: salainen avain %08lX vanheni %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "ei koskaan" @@ -5724,26 +5718,26 @@ msgstr "nimetön vastaanottaja; yritän käyttää salaista avainta %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "ok, nimetön vastaanottaja olet sinä.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "vanhaa DEK-koodaus ei tueta\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "salausalgoritmi %d%s on tuntematon tai poistettu käytöstä\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "HUOM: salausalgoritmia %d ei löydy valinnoista\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "HUOM: salainen avain %08lX vanheni %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "HUOM: avain on mitätöity!" @@ -5914,12 +5908,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6467,7 +6461,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "syöterivi %u on liian pitkä tai rivinvaihto puutuu\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "olet löytänyt ohjelmistovian ... (%s:%d)\n" @@ -6501,11 +6495,6 @@ msgid "Please report bugs to " msgstr "" "Ilmoita ohjelmistovioista (englanniksi) osoitteeseen <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6536,47 +6525,52 @@ msgstr "avainrenkaan välimuistin uudelleenluominen epäonnistui: %s\n" msgid "reading public key failed: %s\n" msgstr "avainlohkojen poisto epäonnistui: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6584,114 +6578,114 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "virhe luettaessa avainlohkoa: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: virhe luettaessa vapaata tietuetta: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "\"%s\" on jo pakattu\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "luo uusi avainpari" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "avainlohkojen poisto epäonnistui: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Avaimen luonti epäonnistui: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" # Ensimmäinen %s on binary, textmode tai unknown, ks. alla -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%sallekirjoitus, tiivistealgoritmi %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "kelvollista OpenPGP-dataa ei löytynyt.\n" @@ -6744,16 +6738,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6927,35 +6921,35 @@ msgstr "DSA vaatii 160-bittisen tiivistealgoritmin käyttöä\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "ei" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "tuntematon " -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "virhe: sormenjälki on väärä\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "virhe: sormenjälki on väärä\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7450,12 +7444,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Allekirjoitus täsmää lähettäjään \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " aka \"" @@ -7812,6 +7806,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "suojausalgoritmi %d%s ei ole käytettävissä\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "agentin käytössä on ongelmia - agenttia ei käytetä\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2005-06-28 00:24+0200\n" "Last-Translator: Ga�l Qu�ri <[email protected]>\n" "Language-Team: French <[email protected]>\n" @@ -140,7 +140,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: la cr�ation de la table de hachage a �chou�: %s\n" @@ -297,7 +297,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -306,156 +306,150 @@ msgstr "" "Signaler toutes anomalies � <[email protected]> (en anglais)\n" "et tout probl�me de traduction � <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Utilisation: gpg [options] [fichiers] (-h pour l'aide)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTE: pas de fichier d'options par d�faut `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "fichier d'options `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "lire les options de `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "erreur pendant la cr�ation de `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossible de cr�er le r�pertoire `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossible de cr�er `%s': %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, 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:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "la mise � jour a �chou�: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "�criture de la cl� secr�te dans `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "r�pertoire `%s' cr��\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) �chou� dans %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "impossible de cr�er le r�pertoire `%s': %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "la mise � jour de la cl� secr�te a �chou�: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignor�: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, 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:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "la variable d'environnement GPG_AGENT_INFO est mal d�finie\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4423,7 +4417,7 @@ msgstr "La cl� expire le %s\n" msgid "Signature expires at %s\n" msgstr "La signature expire le %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4671,7 +4665,7 @@ msgstr "impossible de cr�er le fichier de sauvegarde `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTE: sauvegarde de la cl� de la carte dans `%s'\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "jamais " @@ -5732,28 +5726,28 @@ msgstr "destinataire anonyme; essai de la cl� secr�te %s...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "d'accord, nous sommes le destinataire anonyme.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "l'ancien codage de la cl� de chiffrement (DEK) n'est pas support�\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "l'algorithme de chiffrement %d%s est inconnu ou d�sactiv�\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" "AVERTISSEMENT: l'algorithme de chiffrement %s n'a pas �t� trouv�\n" "dans les pr�f�rences du destinataire\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTE: la cl� secr�te %s a expir� le %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOTE: la cl� a �t� r�voqu�e" @@ -5922,12 +5916,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6497,7 +6491,7 @@ msgstr "" "la ligne d'entr�e %u est trop longue ou il manque un caract�re de saut\n" "de ligne\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "vous avez trouv� un bug... (%s:%d)\n" @@ -6532,11 +6526,6 @@ msgstr "" "Signaler toutes anomalies � <[email protected]> (en anglais)\n" "et tout probl�me de traduction � <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6567,49 +6556,54 @@ msgstr "impossible de stocker la date de cr�ation: %s\n" msgid "reading public key failed: %s\n" msgstr "la lecture de la cl� publique a �chou�: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "la r�ponse ne contient pas les donn�es de cl� publique\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "la r�ponse ne contient pas le modulo RSA\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "la r�ponse ne contient pas l'exposant public RSA\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "l'appel du PIN a retourn� une erreur: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" "Le code PIN pour CHV%d est trop court ; la longueur minimale\n" "est %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "la v�rification CHV%d a �chou�: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "l'acc�s aux commandes d'administration n'est pas configur�\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "erreur pendant la r�cup�ration de l'�tat CHV de la carte\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "la carte est irr�m�diablement bloqu�e !\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6619,112 +6613,112 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|code PIN d'administration" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Nouveau code PIN d'administration" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Nouveau code PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "erreur pendant l'obtention du nouveau code PIN: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "erreur pendant la lecture de donn�es d'application\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "erreur pendant la lecture de l'empreinte DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "la cl� existe d�j�\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "la cl� existante sera remplac�e\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "g�n�rer une nouvelle cl�\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "l'horodatage de cr�ation est manquant\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "le module RSA est manquant ou bien sa taille n'est pas %d bits\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "l'exposant public RSA est manquant ou trop �lev� (plus de %d bits)\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" "le nombre premier RSA %s est manquant ou bien sa taille n'est pas\n" "%d bits\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "le stockage de la cl� a �chou�: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "attendez que la cl� se g�n�re...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "la g�n�ration de la cl� a �chou�\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "la g�n�ration de cl� a �t� effectu�e (%d secondes)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "structure de carte OpenPGP invalide (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "signature %s, algorithme de hachage %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "signatures cr��es jusqu'ici: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||Entrez le PIN%%0A[sigs faites: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "la v�rification du code PIN d'administration est actuellement interdite\n" "au travers de cette commande\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "impossible d'acc�der � %s - carte OpenPGP invalide ?\n" @@ -6774,16 +6768,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6957,35 +6951,35 @@ msgstr "DSA n�cessite l'utilisation d'un algorithme de hachage de 160 bits\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "non" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[non positionn�]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "Erreur: r�ponse invalide.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "Erreur: r�ponse invalide.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7498,12 +7492,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Bonne signature de � %s �" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias � %s �" @@ -7862,6 +7856,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "le hachage de protection %d n'est pas support�\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "probl�me avec l'agent - arr�t d'utilisation de l'agent\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.4\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -132,7 +132,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: fallo ao crear unha t�boa hash: %s\n" @@ -289,7 +289,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -298,154 +298,148 @@ msgstr "" "Por favor, informe dos erros no programa a <[email protected]>,\n" "e dos erros na traducci�n a <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opci�ns] [ficheiros] (-h para ve-la axuda)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: non existe o ficheiro de opci�ns por defecto `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de opci�ns `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "lendo as opci�ns de `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "erro ao crear `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "non se pode crea-lo directorio `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "non foi posible crear %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar a `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "a actualizaci�n fallou: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "gravando a chave secreta en `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directorio creado\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, 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:1342 +#: agent/gpg-agent.c:1373 #, 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:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "o segredo da actualizaci�n fallou: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves omitidas\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent non est� dispo�ible nesta sesi�n\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variable de ambiente GPG_AGENT_INFO mal formada\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4427,7 +4421,7 @@ msgstr "%s caduca o %s\n" msgid "Signature expires at %s\n" msgstr "A sinatura caduca o %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4672,7 +4666,7 @@ msgstr "non se pode crear `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTA: a chave secreta %08lX caducou o %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "nunca " @@ -5720,26 +5714,26 @@ msgstr "destinatario an�nimo; tentando a chave secreta %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "vale, n�s somo-lo destinatario an�nimo.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "a codificaci�n vella do DEK non est� soportada\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "o algoritmo de cifrado %d%s � desco�ecido ou est� desactivado\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "NOTA: o algoritmo de cifrado %d non foi atopado nas preferencias\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTA: a chave secreta %08lX caducou o %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOTA: a chave est� revocada" @@ -5911,12 +5905,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6466,7 +6460,7 @@ msgid "input line %u too long or missing LF\n" msgstr "" "a li�a de entrada %u � longa de m�is ou f�ltalle a marca de fin de li�a\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "atopou un erro ... (%s:%d)\n" @@ -6501,11 +6495,6 @@ msgstr "" "Por favor, informe dos erros no programa a <[email protected]>,\n" "e dos erros na traducci�n a <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6536,47 +6525,52 @@ msgstr "fallo ao reconstru�-la cach� de chaveiros: %s\n" msgid "reading public key failed: %s\n" msgstr "fallou o borrado do bloque de chaves: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "o env�o ao servidor de chaves fallou: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6584,113 +6578,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "erro ao le-lo bloque de chaves: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: erro ao ler un rexistro libre: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' xa est� comprimido\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "xerar un novo par de chaves" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "fallou o borrado do bloque de chaves: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "A xeraci�n da chave fallou: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "Sinatura %s, algoritmo de resumo %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "non se atoparon datos OpenPGP v�lidos.\n" @@ -6743,16 +6737,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6935,35 +6929,35 @@ msgstr "DSA require o emprego dun algoritmo hash de 160 bits\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "non|nom" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "desco�ecido" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "erro: pegada dactilar non v�lida\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "erro: pegada dactilar non v�lida\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7458,12 +7452,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Sinatura correcta de \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -7823,6 +7817,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "o algoritmo de protecci�n %d%s non est� soportado\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problema co axente - desactivando o emprego do axente\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-06-19 21:53+0200\n" "Last-Translator: Nagy Ferenc L�szl� <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" @@ -132,7 +132,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: Hasht�bla l�trehoz�sa sikertelen: %s.\n" @@ -286,161 +286,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "A hib�kat (angolul) a <[email protected]> c�mre �rja meg!\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Haszn�lat: gpg [opci�k] [f�jlok] (-h a s�g�hoz)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MEGJEGYZ�S: Nincs alap�rtelmezett opci�s f�jl (%s).\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "\"%s\" opci�s f�jl: %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "Az opci�kat a \"%s\" �llom�nyb�l olvasom.\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "Hiba \"%s\" l�trehoz�sakor: %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "Nem tudom a \"%s\" k�nyvt�rat l�trehozni: %s.\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s nem hozhat� l�tre: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "Hiba %s-ra/-re k�ld�skor: %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "Friss�t�s sikertelen: %s.\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "�rom a titkos kulcsot a %s �llom�nyba.\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: K�nyvt�rat l�trehoztam.\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "Bizalmi adatb�zis: olvas�s sikertelen (n=%d): %s.\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: Nem tudom a k�nyvt�rat l�trehozni: %s.\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "Titkoskulcs-blokk friss�t�se sikertelen: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: kihagyva: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "GPG �gyn�k nem el�rhet� ebben a munkafolyamatban.\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "Nem megfelel� form�j� GPG_AGENT_INFO k�rnyezeti v�ltoz�!\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4396,7 +4390,7 @@ msgstr "%s lej�r: %s\n" msgid "Signature expires at %s\n" msgstr "Az al��r�s lej�r: %s.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4640,7 +4634,7 @@ msgstr "Nem tudom l�trehozni a(z) \"%s\" �llom�nyt: %s.\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "MEGJEGYZ�S: %08lX titkos kulcs %s-kor lej�rt.\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "soha " @@ -5694,26 +5688,26 @@ msgstr "Anonim c�mzett. A %08lX titkos kulcsot pr�b�lom...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "Rendben, mi vagyunk az anonim c�mzett.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "A DEK r�gi k�dol�sa nem t�mogatott.\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "A %d%s rejtjelez� algoritmus ismeretlen vagy tiltott.\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "MEGJEGYZ�S: %d rejtjelez� algoritmus nincs a preferenci�k k�z�tt.\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "MEGJEGYZ�S: %08lX titkos kulcs %s-kor lej�rt.\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "MEGJEGYZ�S: A kulcsot visszavont�k." @@ -5883,12 +5877,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6430,7 +6424,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "A bemeneti sor (%u) t�l hossz�, vagy hi�nyzik a soremel�s.\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "Tal�lt egy programhib�t... (%s:%d)\n" @@ -6463,11 +6457,6 @@ msgstr "" msgid "Please report bugs to " msgstr "A hib�kat (angolul) a <[email protected]> c�mre �rja meg!\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6498,47 +6487,52 @@ msgstr "Nem tudtam �jra�p�teni a kulcskarika cache-�t: %s\n" msgid "reading public key failed: %s\n" msgstr "A kulcsblokk t�rl�se sikertelen: %s.\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "K�ld�s a kulcsszerverre sikertelen: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6546,113 +6540,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "Hiba a jelsz� l�trehoz�sakor: %s.\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "Hiba a kulcsblokk olvas�sakor: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: Hiba szabad rekord olvas�sakor: %s.\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "\"%s\" m�r t�m�r�tett.\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "�j kulcsp�r l�trehoz�sa" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "Bizalmi adatb�zis (%s) inicializ�l�sa sikertelen!\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "A kulcsblokk t�rl�se sikertelen: %s.\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Kulcsgener�l�s sikertelen: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s al��r�s, %s kivonatol� algoritmus.\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "Nem tal�ltam �rv�nyes OpenPGP adatot.\n" @@ -6705,16 +6699,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6888,35 +6882,35 @@ msgstr "A DSA 160 bites hash (kivonatol�) algoritmust ig�nyel.\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "nem" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "Ismeretlen m�d�" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "Hiba: �rv�nytelen ujjlenyomat.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "Hiba: �rv�nytelen ujjlenyomat.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7412,12 +7406,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "J� al��r�s a k�vetkez�t�l: \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " azaz \"" @@ -7774,6 +7768,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "%d%s v�d� algoritmus nem t�mogatott.\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "Probl�ma van az �gyn�kkel. Letiltom a haszn�lat�t.\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-id\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto <[email protected]>\n" "Language-Team: Indonesian <[email protected]>\n" @@ -134,7 +134,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: gagal membuat hashtable: %s\n" @@ -288,161 +288,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Laporkan bug ke <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Pemakaian: gpg [pilihan] [file] (-h untuk bantuan)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "CATATAN: tidak ada file pilihan baku `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "file pilihan `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "membaca pilihan dari `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "kesalahan penciptaan : `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "tidak dapat membuat direktori `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "kesalahan mengirim ke `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "gagal memperbarui: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: direktori tercipta\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read failed (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: tidak dapat membuat direktori: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "gagal perbarui rahasia: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: dilewati: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent tidak tersedia untuk sesi ini\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabel lingkungan GPG_AGENT_INFO salah bentuk\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4416,7 +4410,7 @@ msgstr "%s berakhir pada %s\n" msgid "Signature expires at %s\n" msgstr "Signature kadaluarsa pada %s \n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4657,7 +4651,7 @@ msgstr "tidak dapat membuat %s: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "CATATAN: kunci pribadi %08lX berakhir pada %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "tidak pernah..." @@ -5697,26 +5691,26 @@ msgstr "penerima anonim; mencoba kunci rahasia %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "baik, kita adalah penerima anonim.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "encoding lama DEK tidak didukung\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "algoritma cipher %d%s tidak dikenal atau ditiadakan\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "CATATAN: algoritma cipher %d tidak ditemukan dalam preferensi\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "CATATAN: kunci pribadi %08lX berakhir pada %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "CATATAN: kunci telah dibatalkan" @@ -5886,12 +5880,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6433,7 +6427,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "baris input %u terlalu panjang atau hilang LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "anda menemukan kesalahan ...(%s:%d)\n" @@ -6466,11 +6460,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Laporkan bug ke <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6501,47 +6490,52 @@ msgstr "gagal membuat kembali cache keyring: %s\n" msgid "reading public key failed: %s\n" msgstr "gagal menghapus keyblok: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6549,113 +6543,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "gagal membaca keyblock: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: kesalahan membaca record bebas: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' sudah dikompresi\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "buat sepasang kunci baru" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "gagal menghapus keyblok: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Pembuatan kunci gagal: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s signature, algoritma digest %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "tidak ditemukan data OpenPGP yang valid.\n" @@ -6708,16 +6702,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6891,35 +6885,35 @@ msgstr "DSA butuh penggunaan algoritma hash 160 bit\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "n|t|tidak" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "tidak dikenal" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "kesalahan: fingerprint tidak valid\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "kesalahan: fingerprint tidak valid\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7414,12 +7408,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Signature baik dari \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -7776,6 +7770,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "algoritma proteksi %d%s tidak didukung\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "masalah dengan agen - tiadakan penggunaan agen\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.1.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-06-16 17:01+0200\n" "Last-Translator: Marco d'Itri <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" @@ -132,7 +132,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: creazione della tabella hash fallita: %s\n" @@ -286,161 +286,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Per favore segnala i bug a <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [opzioni] [files] (-h per l'aiuto)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, 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:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "file con le opzioni `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "lettura delle opzioni da `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "errore creando `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "impossibile creare la directory `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "impossibile creare %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "errore leggendo `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aggiornamento fallito: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scrittura della chiave segreta in `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directory creata\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "trustdb: read fallita (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: impossibile creare la directory: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aggiornamento della chiave segreta fallito: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: saltata: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent non � disponibile in questa sessione\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabile di ambiente GPG_AGENT_INFO malformata\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4432,7 +4426,7 @@ msgstr "%s scadr� il %s\n" msgid "Signature expires at %s\n" msgstr "Questa firma scadr� il %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4676,7 +4670,7 @@ msgstr "impossibile creare `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTA: chiave %08lX scaduta il %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "mai " @@ -5727,27 +5721,27 @@ msgstr "destinatario anonimo; provo la chiave segreta %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "bene, siamo il destinatario anonimo.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "la vecchia codifica del DEK non � gestita\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "l'algoritmo di cifratura %d%s � sconosciuto o disattivato\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" "NOTA: l'algoritmo di cifratura %d non � stato trovato tra le preferenze\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTA: chiave %08lX scaduta il %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOTA: la chiave � stata revocata" @@ -5921,12 +5915,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6481,7 +6475,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "linea di input %u troppo lunga o LF mancante\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "hai trovato un bug... (%s:%d)\n" @@ -6514,11 +6508,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Per favore segnala i bug a <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6549,47 +6538,52 @@ msgstr "rebuild della cache del portachiavi fallito: %s\n" msgid "reading public key failed: %s\n" msgstr "cancellazione del keyblock fallita: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "invio al keyserver fallito: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6597,113 +6591,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "errore nella creazione della passhprase: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "errore leggendo il keyblock: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: errore durante la lettura del record libero: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' � gi� compresso\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "genera una nuova coppia di chiavi" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "cancellazione del keyblock fallita: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Generazione della chiave fallita: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "Firma %s, algoritmo di digest %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "Non sono stati trovati dati OpenPGP validi.\n" @@ -6756,16 +6750,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6939,35 +6933,35 @@ msgstr "DSA richiede l'uso di un algoritmo di hashing con almeno 160 bit\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "sconosciuto" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "errore: impronta digitale non valida\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "errore: impronta digitale non valida\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7462,12 +7456,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Firma valida da \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -7824,6 +7818,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "l'algoritmo di protezione %d%s non � gestito\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problema con l'agent - uso dell'agent disattivato\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.3.92\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-11-23 11:14+0900\n" "Last-Translator: IIDA Yosiaki <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" @@ -135,7 +135,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: �ϥå���ɽ�κ����˼��Ԥ��ޤ���: %s\n" @@ -289,161 +289,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "�Х��Ĥ����� <[email protected]> �ޤǤ���𤯤�������\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "�Ȥ���: gpg [���ץ����] [�ե�����] (�إ�פ� -h)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "����: ����Υ��ץ���ե������%s�פ�����ޤ���\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "���ץ���ե������%s��: %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "��%s�פ��饪�ץ������ɤ߽Ф��ޤ�\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "��%s�פκ������顼: %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "�ǥ��쥯�ȥ��%s�פ������Ǥ��ޤ���: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "��%s�פ������Ǥ��ޤ���: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "��%s�פǿ��ѥ쥳���ɤθ������顼: %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "�����˼��Ԥ��ޤ���: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "��%s�פ���̩������ߤޤ�\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "�ǥ��쥯�ȥ��%s�פ��Ǥ��ޤ���\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d)��%s�Ǽ��Ԥ��ޤ���: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "�ǥ��쥯�ȥ��%s�פ������Ǥ��ޤ���: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "��̩�ι����˼��Ԥ��ޤ���: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: �����å�: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "���Υ��å�����gpg-agent��̵���Ǥ�\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO�Ķ��ѿ��ν�����������ޤ���\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4289,7 +4283,7 @@ msgstr "%s��%s����λ���ޤ�\n" msgid "Signature expires at %s\n" msgstr "���ν�̾��%s����λ�Ǥ�\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4524,7 +4518,7 @@ msgstr "�Хå����åס��ե������%s�פ������Ǥ��ޤ���: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "����: �����ɸ��ΥХå����åפ���%s�פ���¸����ޤ�\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "̵���� " @@ -5535,26 +5529,26 @@ msgstr "ƿ̾�μ�����ѤǤ�����̩��%s���ޤ� ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "��λ��ƿ̾�μ�����ѤǤ���\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "�켰��DEK���ϡ����ݡ��Ȥ��Ƥ��ޤ���\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "�Ź楢�르�ꥺ��%d%s��̤�Τ����ѶػߤǤ�\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "�ٹ�: �Ź楢�르�ꥺ��%s�ϼ���ͤ����������äƤ��ޤ���\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "����: ��̩��%s��%s����λ�Ǥ�\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "����: ���ϼ����ѤߤǤ�" @@ -5717,12 +5711,12 @@ msgstr "�оΰŹ�ˡ�μ夤������뤳�Ȥ��Ǥ��ޤ���%d���ߤޤ���!\n" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6244,7 +6238,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "���Ϥ�%u���ܤ�Ĺ�����뤫��LF���ʤ��褦�Ǥ�\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "�Х���ȯ�� ... (%s:%d)\n" @@ -6277,11 +6271,6 @@ msgstr "" msgid "Please report bugs to " msgstr "�Х��Ĥ����� <[email protected]> �ޤǤ���𤯤�������\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6312,47 +6301,52 @@ msgstr "���������ݴɤ˼��Ԥ��ޤ���: %s\n" msgid "reading public key failed: %s\n" msgstr "�����ɽФ��˼��Ԥ��ޤ���: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "�����˸������ǡ������ޤޤ�Ƥ��ޤ���\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "������RSA��ˡ(modulus)���ޤޤ�Ƥ��ޤ���\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "������RSA�����ؿ����ޤޤ�Ƥ��ޤ���\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN������Хå������顼���ᤷ�ޤ���: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "CHV%d��PIN��û�����ޤ�����û��%d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "CHV%d�θ��ڤ˼��Ԥ��ޤ���: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "�������ޥ�ɤؤΥ���������������ꤵ��Ƥ��ޤ���\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "�����ɤ����CHV���֤θ����ǥ��顼\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "�����ɤ��ʵפ˥��å�����ޤ�!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "�����ɤαʵץ��å�����%d��Admin PIN�����Ƥ��ޤ�\n" @@ -6360,110 +6354,110 @@ msgstr "�����ɤαʵץ��å�����%d��Admin PIN�����Ƥ��ޤ�\n" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|Admin PIN" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 #, fuzzy msgid "|AN|New Admin PIN" msgstr "|A|������Admin PIN" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 #, fuzzy msgid "|N|New PIN" msgstr "������PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "������PIN�μ������顼: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "���ץꥱ������ǡ������ɽФ����顼\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "����ǡ��������֥������Ȥ��ɽФ����顼\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "���Ϥ⤦����ޤ�\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "��¸�θ��ϸ���ޤ�\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "��������������\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, fuzzy, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "�����ؿ����礭�����ޤ� (32�ӥåȤ����)\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "�����ݴɤ˼��Ԥ��ޤ���: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "�������δ֡����Ԥ��������� ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "���������˼��Ԥ��ޤ���\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "������������λ���ޤ��� (%d��)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "OpenPGP�����ɤ�̵���ʹ�¤ (�ǡ��������֥������� 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s��̾�����르�ꥺ�� %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "����ޤǤ˺������줿��̾: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, fuzzy, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "PIN [��̾��: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "%s�˥��������Ǥ��ޤ��� - ̵����OpenPGP������?\n" @@ -6513,16 +6507,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6696,35 +6690,35 @@ msgstr "DSA�Ǥ�160�ӥåȤΥϥå��塦���르�ꥺ��λ��Ѥ�ɬ�פǤ�\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[̤����]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "���顼: ̵���ʱ�����\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "���顼: ̵���ʱ�����\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7228,12 +7222,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "��%s�ɤ������������̾" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " ��̾��%s��" @@ -7590,6 +7584,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "�ݸ�����%d�ϥ��ݡ��Ȥ��Ƥ��ޤ���\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "����������Ȥ˾㳲: ��������������Ѷػ�\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.3\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2006-06-13 20:31+0200\n" "Last-Translator: Trond Endrest�l <[email protected]>\n" "Language-Team: Norwegian Bokm�l <[email protected]>\n" @@ -135,7 +135,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "klarte ikke � lagre n�kkelen: %s\n" @@ -289,160 +289,154 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Vennligst rapporter feil til <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Bruksm�te: gpg [valg] [filer] (-h for hjelp)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "MERK: ingen standard valgfil �%s�\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "valgfil �%s�: %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "leser valg fra �%s�\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "kan ikke opprette katalogen �%s�: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan ikke opprette �%s�: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "feil ved s�king etter tillitspost i �%s�: %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "oppdatering mislyktes: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemmelig n�kkel til �%s�\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "katalogen �%s� ble opprettet\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) mislyktes in %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "kan ikke opprette katalogen �%s�: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "oppdatering av hemmelig mislyktes: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: hoppet over: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4167,7 +4161,7 @@ msgstr "N�kkel utg�r den %s\n" msgid "Signature expires at %s\n" msgstr "Signaturen utg�r den %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4412,7 +4406,7 @@ msgstr "kan ikke opprette sikkerhetskopifil �%s�: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "" @@ -5425,27 +5419,27 @@ msgstr "" msgid "okay, we are the anonymous recipient.\n" msgstr "" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" "p�tvinging av kompresjonsalgoritme %s bryter med mottakerens preferanser\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTIS: hemmelig n�kkel %s utgikk den %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "" @@ -5603,12 +5597,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6123,7 +6117,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "du fant en feil ... (%s:%d)\n" @@ -6156,11 +6150,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Vennligst rapporter feil til <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6191,47 +6180,52 @@ msgstr "klarte ikke � lagre opprettelsesdatoen: %s\n" msgid "reading public key failed: %s\n" msgstr "lesing av offentlig n�kkel mislyktes: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "respons inneholder ikke data om offentlig n�kkel\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "respons inneholder ikke RSA-modulus\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "respons inneholder ikke den offentlige RSA-eksponenten\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN-callback returnerte en feil: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN for CHV%d er for kort; minum lengde er %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "bekreftelse av CHV%d mislyktes: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "tilgang til admin-kommandoer er ikke konfigurert\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "feil ved henting av CHV-status fra kort\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "kort er permanent l�st!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "%d Admin PIN-fors�k f�r kortet blir l�st permanent\n" @@ -6239,108 +6233,108 @@ msgstr "%d Admin PIN-fors�k f�r kortet blir l�st permanent\n" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|Admin PIN" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Ny Admin PIN" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Ny PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "feil ved henting av ny PIN: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "feil ved lesing av applikasjonsdata\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "feil ved lesing av fingeravtrykk DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "n�kkel finnes allerede\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "eksisterende n�kkel vil bli erstattet\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "generere en ny n�kkel\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "tidsstempel for opprettelse mangler\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA-modulus mangler eller har ikke en st�rrelse p� %d bits\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "offentlig RSA-eksponent mangler eller er st�rre enn %d bits\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA-primtall %s mangler eller har ikke en st�rrelse p� %d bits\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "klarte ikke � lagre n�kkelen: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "vennligst vent mens n�kkel blir generert ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "n�kkelgenerering mislyktes\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "n�kkelgenerering fullf�rt (%d sekunder)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "ugyldig struktur i OpenPGP-kort (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "kortet st�tter ikke digestalgoritme %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "signaturer opprettet s� langt: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||Vennligst tast inn PIN%%0A[signaturer utf�rt: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "bekrefting av Admin PIN er forel�pig nektet gjennom denne kommandoen\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "kan ikke aksere %s - ugyldig OpenPGP-kort?\n" @@ -6390,16 +6384,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6571,35 +6565,35 @@ msgstr "DSA krever bruk av en 160-bit hashalgoritme\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "nei" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[ikke satt]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "Feil: ugyldig respons.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "Feil: ugyldig respons.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7102,12 +7096,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "God signatur fra �%s�" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " aka �%s�" @@ -7464,6 +7458,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "ikke st�ttet" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "can't query passphrase in batch mode\n" #~ msgstr "kan ikke sp�rre om passfrase i batchmodus\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg-1.2.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-06-23 15:54+0200\n" "Last-Translator: Janusz A. Urbanowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" @@ -142,7 +142,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: tworzenie tablicy skr�t�w nie powiod�o si�: %s\n" @@ -297,161 +297,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "B��dy prosimy zg�asza� na adres <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Wywo�anie: gpg [opcje] [pliki] (-h podaje pomoc)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "UWAGA: brak domy�lnego pliku opcji ,,%s''\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "plik opcji ,,%s'': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "odczyt opcji z ,,%s''\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "b��d tworzenia `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nie mo�na utworzy� katalogu ,,%s'': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nie mo�na utworzy� %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "b��d przy wysy�aniu do ,,%s'': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "zapis zmian nie powi�d� si�: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisuj� klucz tajny w '%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: katalog utworzony\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "baza zaufania: funkcja read() (n=%d) zawiod�a: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nie mo�na utworzy� katalogu: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "zapis zmian na kluczu prywatnym nie powi�d� si�: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu kluczy pomini�tych\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nie jest dost�pny w tej sesji\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "z�y format zmiennej �rodowiskowej GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4426,7 +4420,7 @@ msgstr "%s traci wa�no��: %s\n" msgid "Signature expires at %s\n" msgstr "Wa�no�� podpisu wygasa %s.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4677,7 +4671,7 @@ msgstr "nie mo�na utworzy� ,,%s'': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "UWAGA: wa�no�� klucza tajnego %08lX wygas�a %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "nigdy " @@ -5720,26 +5714,26 @@ msgstr "adresat anonimowy; sprawdzanie %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "OK, to my jeste�my adresatem anonimowym.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "stary, nie obs�ugiwany algorytm szyfrowania klucza sesyjnego\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "algorytm szyfruj�cy %d%s jest nieznany, lub zosta� wy��czony\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "UWAGA: brak algorytmu szyfruj�cego %d w ustawieniach\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "UWAGA: wa�no�� klucza tajnego %08lX wygas�a %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "UWAGA: klucz zosta� uniewa�niony" @@ -5915,12 +5909,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6465,7 +6459,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "linia wej�cia %u zbyt d�uga lub brak znaku LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "znalaz�e�(a�) b��d w programie ... (%s:%d)\n" @@ -6498,11 +6492,6 @@ msgstr "umo�liwienie pe�nego �ledzenia programu" msgid "Please report bugs to " msgstr "B��dy prosimy zg�asza� na adres <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6533,47 +6522,52 @@ msgstr "nie powiod�a si� odbudowa bufora bazy: %s\n" msgid "reading public key failed: %s\n" msgstr "usuni�cie bloku klucza nie powiod�o si�: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "wysy�ka do serwera kluczy nie powiod�a si�: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6581,113 +6575,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "b��d podczas tworzenia has�a: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "b��d odczytu bloku kluczy: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: b��d odczytu pustego wpisu: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr ",,%s'' ju� jest skompresowany\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "generacja nowej pary kluczy" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "inicjowanie Bazy Zaufania nie powiod�o si�: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "usuni�cie bloku klucza nie powiod�o si�: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Generacja klucza nie powiod�a si�: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "podpis %s, skr�t %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nie odnaleziono poprawnych danych w formacie OpenPGP.\n" @@ -6740,16 +6734,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6933,35 +6927,35 @@ msgstr "" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "nie" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "nieznany" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "b��d: niew�a�ciwy odcisk klucza\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "b��d: niew�a�ciwy odcisk klucza\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7456,12 +7450,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Poprawny podpis z�o�ony przez \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -7819,6 +7813,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "algorytm ochrony %d%s nie jest obs�ugiwany\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problem z agentem - zostaje wy��czony\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2002-09-13 18:26+0100\n" "Last-Translator: Pedro Morais <[email protected]>\n" "Language-Team: pt <[email protected]>\n" @@ -135,7 +135,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: falha ao criar tabela de dispers�o: %s\n" @@ -290,161 +290,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Por favor comunique bugs para <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [op��es] [ficheiros] (-h para ajuda)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: ficheiro de op��es por omiss�o `%s' inexistente\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "ficheiro de op��es `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "a ler op��es de `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "erro ao criar `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: imposs�vel criar directoria: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "imposs�vel criar %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro ao enviar para `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualiza��o falhou: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "a escrever chave privada para `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: directoria criada\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "base de dados de confian�a: leitura falhou (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: imposs�vel criar directoria: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualiza��o da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: ignorado: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "o gpg-agent n�o est� dispon�vel nesta sess�o\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "vari�vel de ambiente GPG_AGENT_INFO inv�lida\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4410,7 +4404,7 @@ msgstr "%s expira em %s\n" msgid "Signature expires at %s\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4656,7 +4650,7 @@ msgstr "imposs�vel criar `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTA: chave secreta %08lX expirou em %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "" @@ -5703,26 +5697,26 @@ msgstr "destinat�rio an�nimo; a tentar chave secreta %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "certo, n�s somos o destinat�rio an�nimo.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "codifica��o antiga do DEK n�o suportada\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "algoritmo de cifra %d%s � desconhecido ou foi desactivado\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "NOTA: algoritmo de cifragem %d n�o encontrado nas prefer�ncias\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTA: chave secreta %08lX expirou em %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOTA: a chave foi revogada" @@ -5892,12 +5886,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6441,7 +6435,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "linha de entrada %u demasiado longa ou falta o LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "voc� encontrou um bug ... (%s:%d)\n" @@ -6474,11 +6468,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Por favor comunique bugs para <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6509,47 +6498,52 @@ msgstr "falha ao criar 'cache' do porta-chaves: %s\n" msgid "reading public key failed: %s\n" msgstr "remo��o do bloco de chave falhou: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6557,113 +6551,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "erro na cria��o da frase secreta: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "erro na leitura do bloco de chave: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: erro ao ler registo livre: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "%s' j� comprimido\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "gerar um novo par de chaves" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "falha ao inicializar a base de dados de confian�a: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "remo��o do bloco de chave falhou: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "A gera��o de chaves falhou: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "assinatura %s de: \"%s\"\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nenhum dado OpenPGP v�lido encontrado.\n" @@ -6716,16 +6710,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6899,35 +6893,35 @@ msgstr "DSA necessita de utiliza��o de uma algoritmo de dispers�o de 160 bit\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "n�o" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "vers�o desconhecida" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "%s: vers�o de ficheiro inv�lida %d\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "%s: vers�o de ficheiro inv�lida %d\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7428,12 +7422,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Assinatura correcta de \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " ou \"" @@ -7789,6 +7783,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "algoritmo de protec��o %d%s n�o � suportado\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problema com o agente - a desactivar a utiliza��o deste\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 25def1807..dc649fe85 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU gnupg 1.0\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 1998-11-20 23:46:36-0200\n" "Last-Translator:\n" "Language-Team: ?\n" @@ -139,7 +139,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: falha ao criar tabela de \"hash\": %s\n" @@ -294,160 +294,154 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Por favor comunique bugs para <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Uso: gpg [op��es] [arquivos] (-h para ajuda)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOTA: arquivo de op��es padr�o `%s' inexistente\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "arquivo de op��es `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "lendo op��es de `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, fuzzy, c-format msgid "error creating `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, fuzzy, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: imposs�vel criar diret�rio: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "imposs�vel criar %s: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "atualiza��o falhou: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "escrevendo certificado privado para `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: diret�rio criado\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, 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:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: imposs�vel criar diret�rio: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "atualiza��o da chave secreta falhou: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "\t%lu chaves ignoradas\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 msgid "no gpg-agent running in this session\n" msgstr "" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, fuzzy, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4352,7 +4346,7 @@ msgstr "A chave expira em %s\n" msgid "Signature expires at %s\n" msgstr "Esta chave n�o � protegida.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4596,7 +4590,7 @@ msgstr "imposs�vel criar %s: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOTA: chave secreta %08lX expirou %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "" @@ -5654,26 +5648,26 @@ msgstr "destinat�rio an�nimo; tentando chave secreta %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "certo, n�s somos o destinat�rio an�nimo.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "codifica��o antiga do DEK n�o suportada\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, fuzzy, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "algoritmo de prote��o %d n�o � suportado\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "NOTA: algoritmo de criptografia %d n�o encontrado nas prefer�ncias\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOTA: chave secreta %08lX expirou %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 #, fuzzy msgid "NOTE: key has been revoked" msgstr "chave %08lX: a chave foi revogada!\n" @@ -5843,12 +5837,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6382,7 +6376,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "linha %u muito longa ou sem LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "voc� encontrou um bug ... (%s:%d)\n" @@ -6415,10 +6409,6 @@ msgstr "habilitar depura��o completa" msgid "Please report bugs to " msgstr "Por favor comunique bugs para <[email protected]>.\n" -#: kbx/kbxutil.c:108 -msgid ".\n" -msgstr "" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6449,47 +6439,52 @@ msgstr "%s: falha ao criar tabela de \"hash\": %s\n" msgid "reading public key failed: %s\n" msgstr "enumera��o de blocos de chaves falhou: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "A gera��o de chaves falhou: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6497,113 +6492,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "erro na cria��o da frase secreta: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "erro na leitura de `%s': %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: erro lendo registro livre: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "%lu chaves processadas\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "gerar um novo par de chaves" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "falha ao inicializar o banco de dados de confiabilidade: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "enumera��o de blocos de chaves falhou: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "A gera��o de chaves falhou: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "assinatura %s de: %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nenhum dado OpenPGP v�lido encontrado.\n" @@ -6656,16 +6651,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6847,35 +6842,35 @@ msgstr "" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "n�o" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "vers�o desconhecida" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "erro: impress�o digital inv�lida\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "erro: impress�o digital inv�lida\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7374,12 +7369,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Assinatura correta de \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " ou \"" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2rc1\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2005-05-31 22:00-0500\n" "Last-Translator: Laurentiu Buzdugan <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" @@ -138,7 +138,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: am e�uat s� creez hashtable: %s\n" @@ -292,161 +292,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "Raporta�i bug-uri la <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Folosire: gpg [op�iuni] [fi�iere] (-h pentru ajutor)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "NOT�: nici un fi�ier op�iuni implicit `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "fi�ier op�iuni `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "citesc op�iuni din `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "eroare la creearea `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nu pot crea directorul `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "nu pot crea `%s': %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "eroare trimitere la `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "actualizarea a e�uat: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "scriu cheia secret� �n `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "director `%s' creat\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) a e�uat �n %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nu pot crea director: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "actualizarea secretului a e�uat: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: s�rit�: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nu este disponibil �n aceast� sesiune\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "variabila de mediu GPG_AGENT_INFO anormal�\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4341,7 +4335,7 @@ msgstr "Cheia expir� pe %s\n" msgid "Signature expires at %s\n" msgstr "Semn�tura expir� pe %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4582,7 +4576,7 @@ msgstr "nu pot crea fi�ier de rezerv� `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "NOT�: copia de siguran�a a cheii cardului salvat� la `%s'\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "niciodat� " @@ -5618,28 +5612,28 @@ msgstr "destinator anonim; �ncerc cheia secret� %s ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "OK, noi suntem destinatarul anonim.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "vechea encodare a lui DEK nu este suportat�\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "algoritm cifrare %d%s este necunoscut sau deactivat\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "" "AVERTISMENT: algoritm cifrare %s nu a fost g�sit �n preferin�ele " "destinatarului\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "NOT�: cheia secret� %s a expirat la %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "NOT�: cheia a fost revocat�" @@ -5804,12 +5798,12 @@ msgstr "nu pot evita cheie slab� pentru cifru simetric; am �ncercat %d ori!\n" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6345,7 +6339,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "linia de intrare %u prea lung� sau lipse�te LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "a�i g�sit un bug ... (%s:%d)\n" @@ -6378,11 +6372,6 @@ msgstr "" msgid "Please report bugs to " msgstr "Raporta�i bug-uri la <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6413,47 +6402,52 @@ msgstr "am e�uat s� stochez data cre�rii: %s\n" msgid "reading public key failed: %s\n" msgstr "citirea cheii publice a e�uat: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "r�spunsul nu con�ine datele cheii publice\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "r�spunsul nu con�ine modulul RSA\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "r�spunsul nu con�ine exponentul public RSA\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "apelul PIN a returnat eroare: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN-ul pentru CHV%d este prea scurt; lungimea minim� este %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verificarea CHV%d a e�uat: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "accesul la comenzile de administrare nu este configurat�\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "eroare la recuperarea st�rii CHV de pe card\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "cardul este �ncuiat permanent!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "%d �ncerc�ri PIN Admin r�mase �nainte de a �ncuia cardul permanent\n" @@ -6461,109 +6455,109 @@ msgstr "%d �ncerc�ri PIN Admin r�mase �nainte de a �ncuia cardul permanent\n" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|PIN Admin" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|PIN Admin Nou" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|PIN Nou" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "eroare la ob�inere noului PIN: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "eroare la citirea datelor aplica�iei\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "eroare la citirea amprentei DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "cheia exist� deja\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "cheia existent� va fi �nlocuit�\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "generez o nou� cheie\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "timestamp-ul de creare lipse�te\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "modulus-ul RSA lipse�te sau nu are %d bi�i\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, fuzzy, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "exponentul public RSA lipse�te sau are mai mult de %d bi�i\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "prime-ul RSA %s lipse�te sau nu are %d bi�i\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "am e�uat s� stochez cheia: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "v� rug�m a�tepta�i c�t� vreme este creat� noua cheie ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "generarea cheii a e�uat\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "generarea cheii este complet� (%d secunde)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "structur� invalid� a cardului OpenPGP (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "semn�tur� %s, algoritm rezumat %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "semn�turi create p�n� acum: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||V� rug�m introduce�i PIN%%0A[semn�turi f�cute: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "verificarea PIN-ului Admin este deocamdat� interzis� prin aceast� comand�\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nu pot accesa %s - card OpenPGP invalid?\n" @@ -6616,16 +6610,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6799,35 +6793,35 @@ msgstr "DSA necesit� folosirea unui algoritm cu hash de 160 bi�i\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "nu" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[nesetat(�)]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "Eroare: r�spuns invalid.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "Eroare: r�spuns invalid.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7324,12 +7318,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Semn�tur� bun� din \"%s\"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " aka \"%s\"" @@ -7686,6 +7680,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "algoritm rezumat %d nu este suportat\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problem� cu agentul - deactivez folosirea agentului\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: GnuPG 2.0.0\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-10-30 10:58+0200\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2006-11-07 19:31+0300\n" "Last-Translator: Maxim Britov <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" @@ -22,11 +22,15 @@ msgid "failed to acquire the pinentry lock: %s\n" msgstr "" #: agent/call-pinentry.c:390 -msgid "Please enter your PIN, so that the secret key can be unlocked for this session" +msgid "" +"Please enter your PIN, so that the secret key can be unlocked for this " +"session" msgstr "Введите PIN-код для получения доступа к закрытому ключу" #: agent/call-pinentry.c:393 -msgid "Please enter your passphrase, so that the secret key can be unlocked for this session" +msgid "" +"Please enter your passphrase, so that the secret key can be unlocked for " +"this session" msgstr "Введите фразу-пароль для доступа к закрытому ключу" #: agent/call-pinentry.c:458 agent/call-pinentry.c:470 @@ -70,8 +74,8 @@ msgid "can't create `%s': %s\n" msgstr "не могу создать `%s': %s\n" #: agent/command-ssh.c:704 g10/card-util.c:679 g10/card-util.c:748 -#: g10/dearmor.c:62 g10/dearmor.c:111 g10/decrypt.c:70 g10/encode.c:193 -#: g10/encode.c:485 g10/gpg.c:1017 g10/import.c:195 g10/keygen.c:2555 +#: g10/dearmor.c:62 g10/dearmor.c:111 g10/decrypt.c:70 g10/encode.c:196 +#: g10/encode.c:488 g10/gpg.c:1017 g10/import.c:195 g10/keygen.c:2555 #: g10/keyring.c:1534 g10/openfile.c:188 g10/openfile.c:343 #: g10/plaintext.c:491 g10/sign.c:812 g10/sign.c:1007 g10/sign.c:1120 #: g10/sign.c:1272 g10/tdbdump.c:141 g10/tdbdump.c:149 g10/tdbio.c:542 @@ -118,10 +122,14 @@ msgstr "Введите фразу-пароль для ssh ключа%0A %c" #: agent/command-ssh.c:2353 #, c-format -msgid "Please enter a passphrase to protect the received secret key%%0A %s%%0Awithin gpg-agent's key storage" -msgstr "Введите фразу-пароль для защиты принятого закрытого ключа%%0A %s%%0Aвнутри хранилища ключей gpg-agent" +msgid "" +"Please enter a passphrase to protect the received secret key%%0A %s%%" +"0Awithin gpg-agent's key storage" +msgstr "" +"Введите фразу-пароль для защиты принятого закрытого ключа%%0A %s%%0Aвнутри " +"хранилища ключей gpg-agent" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, c-format msgid "failed to create stream from socket: %s\n" msgstr "сбой создания потока из сокета: %s\n" @@ -153,7 +161,7 @@ msgid "Please re-enter this passphrase" msgstr "Повторно введите фразу-пароль:" #: agent/genkey.c:132 agent/genkey.c:239 agent/protect-tool.c:1221 -#: tools/symcryptrun.c:484 +#: tools/symcryptrun.c:487 msgid "does not match - try again" msgstr "не совпало, попробуйте еще раз" @@ -180,7 +188,7 @@ msgstr "запуск в режиме демона (background)" #: agent/gpg-agent.c:115 g10/gpg.c:465 g10/gpgv.c:71 kbx/kbxutil.c:82 #: scd/scdaemon.c:109 sm/gpgsm.c:335 tools/gpg-connect-agent.c:59 -#: tools/gpgconf.c:63 tools/symcryptrun.c:182 +#: tools/gpgconf.c:63 tools/symcryptrun.c:185 msgid "verbose" msgstr "подробно" @@ -197,7 +205,7 @@ msgstr "вывод результатов в sh-стиле" msgid "csh-style command output" msgstr "вывод результатов в csh-стиле" -#: agent/gpg-agent.c:119 tools/symcryptrun.c:185 +#: agent/gpg-agent.c:119 tools/symcryptrun.c:188 msgid "|FILE|read options from FILE" msgstr "|FILE|взять параметры из FILE" @@ -210,7 +218,7 @@ msgid "do not grab keyboard and mouse" msgstr "не перехватывать события мыши и клавиатуры" #: agent/gpg-agent.c:126 scd/scdaemon.c:122 sm/gpgsm.c:338 -#: tools/symcryptrun.c:184 +#: tools/symcryptrun.c:187 msgid "use a log file for the server" msgstr "использовать файл журнала для сервера" @@ -262,17 +270,17 @@ msgstr "разрешить эмуляцию ssh-агента" msgid "|FILE|write environment settings also to FILE" msgstr "|FILE|сохранить состояние в файл" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:222 +#: tools/gpgconf.c:86 tools/symcryptrun.c:225 msgid "Please report bugs to <" msgstr "О найденных ошибках сообщайте <" -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Использование: gpg-agent [параметры] (-h для подсказки)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -280,136 +288,136 @@ msgstr "" "Синтаксис: gpg-agent [параметры] [команда [аргументы]]\n" "Управление закрытыми ключами для GnuPG\n" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "выход за безопасный предел памяти при распределении %lu байтов" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "выход за границы при распределении %lu байтов" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "запрошен недупустимый уровень отладки `%s'\n" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 -#: tools/symcryptrun.c:1053 +#: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libcrypt слишком старой версии (требуется %s, обнаружено %s)\n" -#: agent/gpg-agent.c:601 g10/gpg.c:2008 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "ЗАМЕЧАНИЕ: файл конфигурации `%s' не обнаружен\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1120 g10/gpg.c:2012 -#: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:986 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 +#: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "файл конфигурации `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2019 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "параметры конфигурации из файла `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "ошибка создания `%s': %s\n" -#: agent/gpg-agent.c:1170 agent/gpg-agent.c:1273 agent/gpg-agent.c:1277 -#: agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "не могу создать каталог `%s': %s\n" -#: agent/gpg-agent.c:1184 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "имя сокета слишком длинное\n" -#: agent/gpg-agent.c:1210 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, c-format msgid "can't create socket: %s\n" msgstr "не могу создать сокет: %s\n" -#: agent/gpg-agent.c:1239 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "ошибка связывния сокета с `%s': %s\n" -#: agent/gpg-agent.c:1247 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, c-format msgid "listen() failed: %s\n" msgstr "" -#: agent/gpg-agent.c:1253 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, c-format msgid "listening on socket `%s'\n" msgstr "слушаем сокет `%s'\n" -#: agent/gpg-agent.c:1281 agent/gpg-agent.c:1323 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "создан каталог `%s'\n" -#: agent/gpg-agent.c:1329 +#: agent/gpg-agent.c:1369 #, c-format msgid "stat() failed for `%s': %s\n" msgstr "" -#: agent/gpg-agent.c:1333 +#: agent/gpg-agent.c:1373 #, c-format msgid "can't use `%s' as home directory\n" msgstr "невозможно использовать `%s' как домашний каталог\n" -#: agent/gpg-agent.c:1432 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1437 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1451 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1456 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1550 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "" -#: agent/gpg-agent.c:1634 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, c-format msgid "%s %s stopped\n" msgstr "%s %s: остановлен\n" -#: agent/gpg-agent.c:1655 +#: agent/gpg-agent.c:1725 msgid "no gpg-agent running in this session\n" msgstr "нет gpg-agent доступого для данной сессии\n" -#: agent/gpg-agent.c:1665 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "неправильная переменная окружения GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1677 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -417,7 +425,8 @@ msgstr "протокол gpg-agent версии %d не поддерживает #: agent/preset-passphrase.c:100 msgid "Usage: gpg-preset-passphrase [options] KEYGRIP (-h for help)\n" -msgstr "Использование: gpg-preset-passphrase [параметры] KEYGRIP (-h для подсказки)\n" +msgstr "" +"Использование: gpg-preset-passphrase [параметры] KEYGRIP (-h для подсказки)\n" #: agent/preset-passphrase.c:103 msgid "" @@ -432,8 +441,9 @@ msgid "Usage: gpg-protect-tool [options] (-h for help)\n" msgstr "Использование: gpg-protect-tool [параметры] (-h для подсказки)\n" #: agent/protect-tool.c:148 +#, fuzzy msgid "" -"Syntax: gpg-protect-tool [options] [args]]\n" +"Syntax: gpg-protect-tool [options] [args]\n" "Secret key maintenance tool\n" msgstr "" "Синтаксис: gpg-protect-tool [параметры] [аргументы]\n" @@ -448,7 +458,9 @@ msgid "Please enter the passphrase to protect the new PKCS#12 object." msgstr "Введите фразу-пароль для защиты нового PKCS#12 объекта." #: agent/protect-tool.c:1212 -msgid "Please enter the passphrase to protect the imported object within the GnuPG system." +msgid "" +"Please enter the passphrase to protect the imported object within the GnuPG " +"system." msgstr "Введите фразу-пароль для защиты импортированных в GnuPG объектов." #: agent/protect-tool.c:1217 @@ -459,16 +471,16 @@ msgstr "" "Введите фразу-пароль или PIN\n" "необходимые для выполения данной операции." -#: agent/protect-tool.c:1222 tools/symcryptrun.c:485 +#: agent/protect-tool.c:1222 tools/symcryptrun.c:488 msgid "Passphrase:" msgstr "Фраза-пароль:" -#: agent/protect-tool.c:1235 tools/symcryptrun.c:498 +#: agent/protect-tool.c:1235 tools/symcryptrun.c:501 #, c-format msgid "error while asking for the passphrase: %s\n" msgstr "ошибка запроса ввода фразы-пароля: %s\n" -#: agent/protect-tool.c:1238 tools/symcryptrun.c:502 +#: agent/protect-tool.c:1238 tools/symcryptrun.c:505 msgid "cancelled\n" msgstr "отменено\n" @@ -507,7 +519,7 @@ msgstr "" msgid "error reading `%s', line %d: %s\n" msgstr "ошибка чтения `%s', строка %d: %s\n" -#: agent/trustlist.c:356 agent/trustlist.c:395 +#: agent/trustlist.c:355 agent/trustlist.c:394 msgid "error reading list of trusted root certificates\n" msgstr "ошибка чтения списка доверяемых корневых сертификатов\n" @@ -520,15 +532,19 @@ msgstr "ошибка чтения списка доверяемых корнев #. second "%s" gets replaced by a hexdecimal #. fingerprint string whereas the first one receives #. the name as store in the certificate. -#: agent/trustlist.c:471 +#: agent/trustlist.c:470 #, c-format -msgid "Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the fingerprint:%%0A %s" -msgstr "Проверьте, что сертификат идентифицированный как:%%0A \"%s\"%%0Aимеет отпечаток:%%0A %s" +msgid "" +"Please verify that the certificate identified as:%%0A \"%s\"%%0Ahas the " +"fingerprint:%%0A %s" +msgstr "" +"Проверьте, что сертификат идентифицированный как:%%0A \"%s\"%%0Aимеет " +"отпечаток:%%0A %s" #. TRANSLATORS: "Correct" is the label of a button and intended to #. be hit if the fingerprint matches the one of the CA. The other #. button is "the default "Cancel" of the Pinentry. -#: agent/trustlist.c:480 +#: agent/trustlist.c:479 msgid "Correct" msgstr "Подтверждаю" @@ -540,16 +556,20 @@ msgstr "Подтверждаю" #. plain % sign, you need to encode it as "%%25". The #. "%s" gets replaced by the name as store in the #. certificate. -#: agent/trustlist.c:500 +#: agent/trustlist.c:499 #, c-format -msgid "Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user certificates?" -msgstr "Действительно абсолютно доверять%%0A \"%s\"%%0Aкорректно подписанным сертификатам пользователя?" +msgid "" +"Do you ultimately trust%%0A \"%s\"%%0Ato correctly certify user " +"certificates?" +msgstr "" +"Действительно абсолютно доверять%%0A \"%s\"%%0Aкорректно подписанным " +"сертификатам пользователя?" -#: agent/trustlist.c:506 +#: agent/trustlist.c:505 msgid "Yes" msgstr "Да" -#: agent/trustlist.c:506 +#: agent/trustlist.c:505 msgid "No" msgstr "Нет" @@ -756,12 +776,19 @@ msgid "invalid armor: line longer than %d characters\n" msgstr "неправильный ASCII формат: строка длиннее %d символов\n" #: g10/armor.c:1167 -msgid "quoted printable character in armor - probably a buggy MTA has been used\n" -msgstr "символы quoted printable в кодировке ASCII - вероятно использовался плохой MTA\n" +msgid "" +"quoted printable character in armor - probably a buggy MTA has been used\n" +msgstr "" +"символы quoted printable в кодировке ASCII - вероятно использовался плохой " +"MTA\n" #: g10/build-packet.c:978 -msgid "a notation name must have only printable characters or spaces, and end with an '='\n" -msgstr "имя примечания должно содеражать только печатные символы и пробелы, и '=' на конце\n" +msgid "" +"a notation name must have only printable characters or spaces, and end with " +"an '='\n" +msgstr "" +"имя примечания должно содеражать только печатные символы и пробелы, и '=' на " +"конце\n" #: g10/build-packet.c:990 msgid "a user notation name must contain the '@' character\n" @@ -1075,11 +1102,11 @@ msgstr "Команды администрирования не разрешен� msgid "Invalid command (try \"help\")\n" msgstr "Недопустимая команда (список команд: \"help\")\n" -#: g10/decrypt.c:107 g10/encode.c:850 +#: g10/decrypt.c:107 g10/encode.c:869 msgid "--output doesn't work for this command\n" msgstr "--output не работает для данной команды\n" -#: g10/decrypt.c:162 g10/gpg.c:3821 g10/keyring.c:378 g10/keyring.c:665 +#: g10/decrypt.c:162 g10/gpg.c:3820 g10/keyring.c:378 g10/keyring.c:665 #, c-format msgid "can't open `%s'\n" msgstr "не могу открыть `%s'\n" @@ -1128,66 +1155,73 @@ msgstr "имеется секретный ключ для открытого к� #: g10/delkey.c:208 msgid "use option \"--delete-secret-keys\" to delete it first.\n" -msgstr "сначала воспользуйтесь \"--delete-secret-keys\" для удаления закрытого ключа.\n" +msgstr "" +"сначала воспользуйтесь \"--delete-secret-keys\" для удаления закрытого " +"ключа.\n" -#: g10/encode.c:222 g10/sign.c:1291 +#: g10/encode.c:225 g10/sign.c:1291 #, c-format msgid "error creating passphrase: %s\n" msgstr "ошибка создания фразы-пароля: %s\n" -#: g10/encode.c:227 +#: g10/encode.c:230 msgid "can't use a symmetric ESK packet due to the S2K mode\n" msgstr "не могу использовать симметричный пакет ESK в S2K режиме\n" -#: g10/encode.c:241 +#: g10/encode.c:244 #, c-format msgid "using cipher %s\n" msgstr "использутся алгоритм шифрования %s\n" -#: g10/encode.c:251 g10/encode.c:547 +#: g10/encode.c:254 g10/encode.c:558 #, c-format msgid "`%s' already compressed\n" msgstr "`%s' уже сжат\n" -#: g10/encode.c:302 g10/encode.c:595 g10/sign.c:596 +#: g10/encode.c:305 g10/encode.c:606 g10/sign.c:596 #, c-format msgid "WARNING: `%s' is an empty file\n" msgstr "ВНИМАНИЕ: `%s' пустой файл\n" -#: g10/encode.c:466 +#: g10/encode.c:469 msgid "you can only encrypt to RSA keys of 2048 bits or less in --pgp2 mode\n" msgstr "в режиме --pgp2 ключ RSA для ширования должен быть не более 2048 бит\n" -#: g10/encode.c:491 +#: g10/encode.c:494 #, c-format msgid "reading from `%s'\n" msgstr "читаю из `%s'\n" -#: g10/encode.c:519 -msgid "unable to use the IDEA cipher for all of the keys you are encrypting to.\n" +#: g10/encode.c:522 +msgid "" +"unable to use the IDEA cipher for all of the keys you are encrypting to.\n" msgstr "не могу использовать шифр IDEA для всех ключей.\n" -#: g10/encode.c:529 +#: g10/encode.c:540 #, c-format -msgid "WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" -msgstr "ВНИМАНИЕ: использование шифра %s (%d) противоречит предпочтениям получателя\n" +msgid "" +"WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n" +msgstr "" +"ВНИМАНИЕ: использование шифра %s (%d) противоречит предпочтениям получателя\n" -#: g10/encode.c:639 g10/sign.c:968 +#: g10/encode.c:650 g10/sign.c:968 #, c-format -msgid "WARNING: forcing compression algorithm %s (%d) violates recipient preferences\n" +msgid "" +"WARNING: forcing compression algorithm %s (%d) violates recipient " +"preferences\n" msgstr "ВНИМАНИЕ: сжатие алгоритмом %s (%d) нарушает предпочтения получателя\n" -#: g10/encode.c:725 +#: g10/encode.c:744 #, c-format msgid "forcing symmetric cipher %s (%d) violates recipient preferences\n" msgstr "использование шифра %s (%d) противоречит предпочтениям получателя\n" -#: g10/encode.c:795 g10/pkclist.c:803 g10/pkclist.c:851 +#: g10/encode.c:814 g10/pkclist.c:803 g10/pkclist.c:851 #, c-format msgid "you may not use %s while in %s mode\n" msgstr "Нельзя использовать %s в режиме %s\n" -#: g10/encode.c:822 +#: g10/encode.c:841 #, c-format msgid "%s/%s encrypted for: \"%s\"\n" msgstr "%s/%s зашифровано для: \"%s\"\n" @@ -1203,8 +1237,10 @@ msgid "encrypted with unknown algorithm %d\n" msgstr "зашифровано неизвестным алгоритмом %d\n" #: g10/encr-data.c:110 sm/decrypt.c:128 -msgid "WARNING: message was encrypted with a weak key in the symmetric cipher.\n" -msgstr "ВНИМАНИЕ: сообщение было зашифровано слабым ключом симметричного шифра.\n" +msgid "" +"WARNING: message was encrypted with a weak key in the symmetric cipher.\n" +msgstr "" +"ВНИМАНИЕ: сообщение было зашифровано слабым ключом симметричного шифра.\n" #: g10/encr-data.c:122 msgid "problem handling encrypted packet\n" @@ -1215,12 +1251,15 @@ msgid "no remote program execution supported\n" msgstr "удаленный запуск программы не поддерживается\n" #: g10/exec.c:315 -msgid "external program calls are disabled due to unsafe options file permissions\n" +msgid "" +"external program calls are disabled due to unsafe options file permissions\n" msgstr "вызов внешних программ отключен из-за небезопасных прав доступа\n" #: g10/exec.c:345 msgid "this platform requires temporary files when calling external programs\n" -msgstr "на данной платформе требуется использование временных файлов при вызове внешних программ\n" +msgstr "" +"на данной платформе требуется использование временных файлов при вызове " +"внешних программ\n" #: g10/exec.c:423 #, c-format @@ -1342,7 +1381,9 @@ msgstr "автоматически полученный `%s' via %s\n" #: g10/getkey.c:1831 #, c-format msgid "Invalid key %s made valid by --allow-non-selfsigned-uid\n" -msgstr "Дефектный ключ %s признан пригодным согласно параметра --allow-non-selfsigned-uid\n" +msgstr "" +"Дефектный ключ %s признан пригодным согласно параметра --allow-non-" +"selfsigned-uid\n" #: g10/getkey.c:2385 g10/keyedit.c:3710 #, c-format @@ -1488,7 +1529,7 @@ msgid "|algo [files]|print message digests" msgstr "|algo [файлы]|вывести хэши файлов" #: g10/gpg.c:428 g10/gpgv.c:69 kbx/kbxutil.c:77 sm/gpgsm.c:278 -#: tools/gpg-connect-agent.c:57 tools/gpgconf.c:60 tools/symcryptrun.c:175 +#: tools/gpg-connect-agent.c:57 tools/gpgconf.c:60 tools/symcryptrun.c:178 msgid "" "@\n" "Options:\n" @@ -1654,32 +1695,43 @@ msgstr "ВНИМАНИЕ: небезопасные права доступа у #: g10/gpg.c:1291 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" -msgstr "ВНИМАНИЕ: небезопасный владелец каталога содержащего домашний каталог `%s'\n" +msgstr "" +"ВНИМАНИЕ: небезопасный владелец каталога содержащего домашний каталог `%s'\n" #: g10/gpg.c:1294 #, c-format -msgid "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" -msgstr "ВНИМАНИЕ: небезопасный владелец каталога содержащего файл конфигурации `%s'\n" +msgid "" +"WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" +msgstr "" +"ВНИМАНИЕ: небезопасный владелец каталога содержащего файл конфигурации `%s'\n" #: g10/gpg.c:1297 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" -msgstr "ВНИМАНИЕ: небезопасный владелец каталога содержащего модуль расширения `%s'\n" +msgstr "" +"ВНИМАНИЕ: небезопасный владелец каталога содержащего модуль расширения `%s'\n" #: g10/gpg.c:1303 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" -msgstr "ВНИМАНИЕ: небезопасные права доступа у каталога содержащего домашний каталог `%s'\n" +msgstr "" +"ВНИМАНИЕ: небезопасные права доступа у каталога содержащего домашний каталог " +"`%s'\n" #: g10/gpg.c:1306 #, c-format -msgid "WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" -msgstr "ВНИМАНИЕ: небезопасные права доступа у каталога содержащего файл конфигурации `%s'\n" +msgid "" +"WARNING: unsafe enclosing directory permissions on configuration file `%s'\n" +msgstr "" +"ВНИМАНИЕ: небезопасные права доступа у каталога содержащего файл " +"конфигурации `%s'\n" #: g10/gpg.c:1309 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" -msgstr "ВНИМАНИЕ: небезопасные права доступа у каталогу содержащего файл модуля расширения `%s'\n" +msgstr "" +"ВНИМАНИЕ: небезопасные права доступа у каталогу содержащего файл модуля " +"расширения `%s'\n" #: g10/gpg.c:1452 #, c-format @@ -1704,7 +1756,8 @@ msgstr "" #: g10/gpg.c:1555 msgid "show user-supplied notations during signature listings" -msgstr "показывать добавленные пользователем примечания при распечатке подписей" +msgstr "" +"показывать добавленные пользователем примечания при распечатке подписей" #: g10/gpg.c:1557 msgid "show preferred keyserver URLs during signature listings" @@ -1730,395 +1783,400 @@ msgstr "печатать имя таблиц ключей в списке клю msgid "show expiration dates during signature listings" msgstr "печатать даты истечения в списке подписей" -#: g10/gpg.c:1966 +#: g10/gpg.c:1965 #, c-format msgid "NOTE: old default options file `%s' ignored\n" msgstr "ЗАМЕЧАНИЕ: старый файл конфигурации по умолчанию `%s' проигнорирован\n" -#: g10/gpg.c:2212 g10/gpg.c:2855 g10/gpg.c:2867 +#: g10/gpg.c:2211 g10/gpg.c:2854 g10/gpg.c:2866 #, c-format msgid "NOTE: %s is not for normal use!\n" msgstr "ЗАМЕЧАНИЕ: %s не предназначен для обычного применения!\n" -#: g10/gpg.c:2225 +#: g10/gpg.c:2224 #, c-format msgid "cipher extension `%s' not loaded due to unsafe permissions\n" -msgstr "расширение шифра `%s' не загружено вследствие небезопасных прав доступа\n" +msgstr "" +"расширение шифра `%s' не загружено вследствие небезопасных прав доступа\n" -#: g10/gpg.c:2380 g10/gpg.c:2392 +#: g10/gpg.c:2379 g10/gpg.c:2391 #, c-format msgid "`%s' is not a valid signature expiration\n" msgstr "`%s' недопустимый срок действия подписи\n" -#: g10/gpg.c:2473 +#: g10/gpg.c:2472 #, c-format msgid "`%s' is not a valid character set\n" msgstr "`%s' недопустимая таблица символов\n" -#: g10/gpg.c:2496 g10/gpg.c:2689 g10/keyedit.c:4067 +#: g10/gpg.c:2495 g10/gpg.c:2688 g10/keyedit.c:4067 msgid "could not parse keyserver URL\n" msgstr "не могу проанализировать URL сервера ключей\n" -#: g10/gpg.c:2508 +#: g10/gpg.c:2507 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2511 +#: g10/gpg.c:2510 msgid "invalid keyserver options\n" msgstr "недопустимые параметры для сервера ключей\n" -#: g10/gpg.c:2518 +#: g10/gpg.c:2517 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недопустимые параметры импорта\n" -#: g10/gpg.c:2521 +#: g10/gpg.c:2520 msgid "invalid import options\n" msgstr "недопустимые параметры импорта\n" -#: g10/gpg.c:2528 +#: g10/gpg.c:2527 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недопустимые параметры экспорта\n" -#: g10/gpg.c:2531 +#: g10/gpg.c:2530 msgid "invalid export options\n" msgstr "недопустимые параметры экспорта\n" -#: g10/gpg.c:2538 +#: g10/gpg.c:2537 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недопустимый список параметров\n" -#: g10/gpg.c:2541 +#: g10/gpg.c:2540 msgid "invalid list options\n" msgstr "недопустимый список параметров\n" -#: g10/gpg.c:2549 +#: g10/gpg.c:2548 msgid "display photo IDs during signature verification" msgstr "показывать Фото ID при проверке подписи" -#: g10/gpg.c:2551 +#: g10/gpg.c:2550 msgid "show policy URLs during signature verification" msgstr "показывать ссылку на политики при проверке подписи" -#: g10/gpg.c:2553 +#: g10/gpg.c:2552 msgid "show all notations during signature verification" msgstr "показывать все примечания в процессе проверки подписей" -#: g10/gpg.c:2555 +#: g10/gpg.c:2554 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:2559 +#: g10/gpg.c:2558 msgid "show user-supplied notations during signature verification" msgstr "показывать добавленные пользователем примечания при проверке подписей" -#: g10/gpg.c:2561 +#: g10/gpg.c:2560 msgid "show preferred keyserver URLs during signature verification" msgstr "печатать предпочитаемые серверы ключей при проверке подписей" -#: g10/gpg.c:2563 +#: g10/gpg.c:2562 msgid "show user ID validity during signature verification" msgstr "печатать действительность UserID при проверке подписей" -#: g10/gpg.c:2565 +#: g10/gpg.c:2564 msgid "show revoked and expired user IDs in signature verification" msgstr "показывать отозванные и просроченные User ID при проверке подписей" -#: g10/gpg.c:2567 +#: g10/gpg.c:2566 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:2569 +#: g10/gpg.c:2568 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:2576 +#: g10/gpg.c:2575 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недопустимые параметры проверки \n" -#: g10/gpg.c:2579 +#: g10/gpg.c:2578 msgid "invalid verify options\n" msgstr "недопустимые параметры проверки\n" -#: g10/gpg.c:2586 +#: g10/gpg.c:2585 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не могу определить путь запуска для %s\n" -#: g10/gpg.c:2760 +#: g10/gpg.c:2759 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недопустимый список auto-key-locate\n" -#: g10/gpg.c:2763 +#: g10/gpg.c:2762 msgid "invalid auto-key-locate list\n" msgstr "недопустимый список auto-key-locate\n" -#: g10/gpg.c:2844 sm/gpgsm.c:1231 +#: g10/gpg.c:2843 sm/gpgsm.c:1231 msgid "WARNING: program may create a core file!\n" msgstr "ВНИМАНИЕ: возможно создание файла дампа памяти программы!\n" -#: g10/gpg.c:2848 +#: g10/gpg.c:2847 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ВНИМАНИЕ: %s заместит %s\n" -#: g10/gpg.c:2857 +#: g10/gpg.c:2856 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не допускается использовать с %s!\n" -#: g10/gpg.c:2860 +#: g10/gpg.c:2859 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s не имеет смысла совместно с %s!\n" -#: g10/gpg.c:2875 +#: g10/gpg.c:2874 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "не будет работать с небезопасной памятью из-за %s\n" -#: g10/gpg.c:2889 +#: g10/gpg.c:2888 msgid "you can only make detached or clear signatures while in --pgp2 mode\n" -msgstr "можно сделать только отделенную или прозрачную подпись в режиме --pgp2\n" +msgstr "" +"можно сделать только отделенную или прозрачную подпись в режиме --pgp2\n" -#: g10/gpg.c:2895 +#: g10/gpg.c:2894 msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n" msgstr "Нельзя одновременно подписать и зашифровать в режиме --pgp2\n" -#: g10/gpg.c:2901 +#: g10/gpg.c:2900 msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n" msgstr "Следует использовать файлы (а не каналы (pipe)) в режиме --pgp2.\n" -#: g10/gpg.c:2914 +#: g10/gpg.c:2913 msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n" msgstr "для зашифрования сообщения в режиме --pgp2 требуется шифр IDEA\n" -#: g10/gpg.c:2980 g10/gpg.c:3004 sm/gpgsm.c:1287 +#: g10/gpg.c:2979 g10/gpg.c:3003 sm/gpgsm.c:1287 msgid "selected cipher algorithm is invalid\n" msgstr "выбран неверный алгоритм шифрования\n" -#: g10/gpg.c:2986 g10/gpg.c:3010 sm/gpgsm.c:1295 +#: g10/gpg.c:2985 g10/gpg.c:3009 sm/gpgsm.c:1295 msgid "selected digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция\n" -#: g10/gpg.c:2992 +#: g10/gpg.c:2991 msgid "selected compression algorithm is invalid\n" msgstr "выбран неверный алгоритм сжатия\n" -#: g10/gpg.c:2998 +#: g10/gpg.c:2997 msgid "selected certification digest algorithm is invalid\n" msgstr "выбрана неверная хэш-функция для сертификации\n" -#: g10/gpg.c:3013 +#: g10/gpg.c:3012 msgid "completes-needed must be greater than 0\n" msgstr "completes-needed должен быть больше 0\n" -#: g10/gpg.c:3015 +#: g10/gpg.c:3014 msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed должен быть больше 1\n" -#: g10/gpg.c:3017 +#: g10/gpg.c:3016 msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth должен быть в диапазоне от 1 до 255\n" -#: g10/gpg.c:3019 +#: g10/gpg.c:3018 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:3021 +#: g10/gpg.c:3020 msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "недопустимый min-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3024 +#: g10/gpg.c:3023 msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgstr "ЗАМЕЧАНИЕ: простой режим S2K (0) строго не рекомендуется\n" -#: g10/gpg.c:3028 +#: g10/gpg.c:3027 msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "недопустимый режим S2K; должно быть 0, 1 или 3\n" -#: g10/gpg.c:3035 +#: g10/gpg.c:3034 msgid "invalid default preferences\n" msgstr "недопустимые предпочтения по умолчанию\n" -#: g10/gpg.c:3044 +#: g10/gpg.c:3043 msgid "invalid personal cipher preferences\n" msgstr "недопустимые персональные предпочтения шифра\n" -#: g10/gpg.c:3048 +#: g10/gpg.c:3047 msgid "invalid personal digest preferences\n" msgstr "недопустимые персональные предпочтения хэш-функции\n" -#: g10/gpg.c:3052 +#: g10/gpg.c:3051 msgid "invalid personal compress preferences\n" msgstr "недопустимые персональные предпочтения алгоритмов сжатия\n" -#: g10/gpg.c:3085 +#: g10/gpg.c:3084 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s пока не работает совместно с %s\n" -#: g10/gpg.c:3132 +#: g10/gpg.c:3131 #, c-format msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgstr "нельзя использовать шифрование `%s' в режиме %s\n" -#: g10/gpg.c:3137 +#: g10/gpg.c:3136 #, c-format msgid "you may not use digest algorithm `%s' while in %s mode\n" msgstr "нельзя использовать хэш-функцию `%s' в режиме %s\n" -#: g10/gpg.c:3142 +#: g10/gpg.c:3141 #, c-format msgid "you may not use compression algorithm `%s' while in %s mode\n" msgstr "нельзя использовать сжатие `%s' в режиме %s\n" -#: g10/gpg.c:3234 +#: g10/gpg.c:3233 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "сбой инициализации таблицы доверий: %s\n" -#: g10/gpg.c:3245 +#: g10/gpg.c:3244 msgid "WARNING: recipients (-r) given without using public key encryption\n" -msgstr "ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым ключом\n" +msgstr "" +"ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым " +"ключом\n" -#: g10/gpg.c:3256 +#: g10/gpg.c:3255 msgid "--store [filename]" msgstr "--store [файл]" -#: g10/gpg.c:3263 +#: g10/gpg.c:3262 msgid "--symmetric [filename]" msgstr "--symmetric [файл]" -#: g10/gpg.c:3265 +#: g10/gpg.c:3264 #, c-format msgid "symmetric encryption of `%s' failed: %s\n" msgstr "симметричное шифрование `%s' не удалось: %s\n" -#: g10/gpg.c:3275 +#: g10/gpg.c:3274 msgid "--encrypt [filename]" msgstr "--encrypt [файл]" -#: g10/gpg.c:3288 +#: g10/gpg.c:3287 msgid "--symmetric --encrypt [filename]" msgstr "--symmetric --encrypt [файл]" -#: g10/gpg.c:3290 +#: g10/gpg.c:3289 msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "нельзя использовать --symmetric --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3293 +#: g10/gpg.c:3292 #, c-format msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --encrypt в режиме %s\n" -#: g10/gpg.c:3311 +#: g10/gpg.c:3310 msgid "--sign [filename]" msgstr "--sign [файл]" -#: g10/gpg.c:3324 +#: g10/gpg.c:3323 msgid "--sign --encrypt [filename]" msgstr "--sign --encrypt [файл]" -#: g10/gpg.c:3339 +#: g10/gpg.c:3338 msgid "--symmetric --sign --encrypt [filename]" msgstr "--symmetric --sign --encrypt [файл]" -#: g10/gpg.c:3341 +#: g10/gpg.c:3340 msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" -msgstr "нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" +msgstr "" +"нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:3344 +#: g10/gpg.c:3343 #, c-format msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgstr "невозможно использовать --symmetric --sign --encrypt в режиме %s\n" -#: g10/gpg.c:3364 +#: g10/gpg.c:3363 msgid "--sign --symmetric [filename]" msgstr "--sign --symmetric [файл]" -#: g10/gpg.c:3373 +#: g10/gpg.c:3372 msgid "--clearsign [filename]" msgstr "--clearsign [файл]" -#: g10/gpg.c:3398 +#: g10/gpg.c:3397 msgid "--decrypt [filename]" msgstr "--decrypt [файл]" -#: g10/gpg.c:3406 +#: g10/gpg.c:3405 msgid "--sign-key user-id" msgstr "--sign-key user-id" -#: g10/gpg.c:3410 +#: g10/gpg.c:3409 msgid "--lsign-key user-id" msgstr "--lsign-key user-id" -#: g10/gpg.c:3431 +#: g10/gpg.c:3430 msgid "--edit-key user-id [commands]" msgstr "--edit-key user-id [команды]" -#: g10/gpg.c:3516 +#: g10/gpg.c:3515 #, c-format msgid "keyserver send failed: %s\n" msgstr "сбой при отправке на сервер ключей: %s\n" -#: g10/gpg.c:3518 +#: g10/gpg.c:3517 #, c-format msgid "keyserver receive failed: %s\n" msgstr "сбой при получении с сервера ключей: %s\n" -#: g10/gpg.c:3520 +#: g10/gpg.c:3519 #, c-format msgid "key export failed: %s\n" msgstr "сбой при экспорте ключа: %s\n" -#: g10/gpg.c:3531 +#: g10/gpg.c:3530 #, c-format msgid "keyserver search failed: %s\n" msgstr "сбой при поиске на сервере ключей: %s\n" -#: g10/gpg.c:3541 +#: g10/gpg.c:3540 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "сбой при обновлении с сервера ключей: %s\n" -#: g10/gpg.c:3592 +#: g10/gpg.c:3591 #, c-format msgid "dearmoring failed: %s\n" msgstr "ошибка преобразования из ASCII формата: %s\n" -#: g10/gpg.c:3600 +#: g10/gpg.c:3599 #, c-format msgid "enarmoring failed: %s\n" msgstr "ошибка преобразования в ASCII формат: %s\n" -#: g10/gpg.c:3690 +#: g10/gpg.c:3689 #, c-format msgid "invalid hash algorithm `%s'\n" msgstr "недопустимая хэш-функция `%s'\n" -#: g10/gpg.c:3807 +#: g10/gpg.c:3806 msgid "[filename]" msgstr "[файл]" -#: g10/gpg.c:3811 +#: g10/gpg.c:3810 msgid "Go ahead and type your message ...\n" msgstr "Набирайте Ваше сообщение ...\n" -#: g10/gpg.c:4122 +#: g10/gpg.c:4121 msgid "the given certification policy URL is invalid\n" msgstr "заданный URL политики сертификации неверен\n" -#: g10/gpg.c:4124 +#: g10/gpg.c:4123 msgid "the given signature policy URL is invalid\n" msgstr "заданный URL политики подписи неверен\n" -#: g10/gpg.c:4157 +#: g10/gpg.c:4156 msgid "the given preferred keyserver URL is invalid\n" msgstr "заданный URL предпочитаемого сервера ключей неправилен\n" @@ -2173,7 +2231,8 @@ msgid "If you want to use this untrusted key anyway, answer \"yes\"." msgstr "Если хотите использовать данный недоверяемый ключ - ответьте \"yes\"." #: g10/helptext.c:68 -msgid "Enter the user ID of the addressee to whom you want to send the message." +msgid "" +"Enter the user ID of the addressee to whom you want to send the message." msgstr "Введите User ID адресата, которому хотите отправить сообщение." #: g10/helptext.c:72 @@ -2206,7 +2265,8 @@ msgid "" "encryption. This algorithm should only be used in certain domains.\n" "Please consult your security expert first." msgstr "" -"Обычно не рекомендуется использовать один ключ и для подписи, и для шифрования.\n" +"Обычно не рекомендуется использовать один ключ и для подписи, и для " +"шифрования.\n" "Данный алгоритм следует использовтаь только в некоторых случаях.\n" "Проконсультируйтесь с Вашим экспертом по безопасности перед тем,\n" "как использовать данный ключ." @@ -2268,32 +2328,43 @@ msgid "" "belongs to the person named in the user ID. It is useful for others to\n" "know how carefully you verified this.\n" "\n" -"\"0\" means you make no particular claim as to how carefully you verified the\n" +"\"0\" means you make no particular claim as to how carefully you verified " +"the\n" " key.\n" "\n" "\"1\" means you believe the key is owned by the person who claims to own it\n" -" but you could not, or did not verify the key at all. This is useful for\n" -" a \"persona\" verification, where you sign the key of a pseudonymous user.\n" +" but you could not, or did not verify the key at all. This is useful " +"for\n" +" a \"persona\" verification, where you sign the key of a pseudonymous " +"user.\n" "\n" -"\"2\" means you did casual verification of the key. For example, this could\n" -" mean that you verified the key fingerprint and checked the user ID on the\n" +"\"2\" means you did casual verification of the key. For example, this " +"could\n" +" mean that you verified the key fingerprint and checked the user ID on " +"the\n" " key against a photo ID.\n" "\n" -"\"3\" means you did extensive verification of the key. For example, this could\n" +"\"3\" means you did extensive verification of the key. For example, this " +"could\n" " mean that you verified the key fingerprint with the owner of the key in\n" -" person, and that you checked, by means of a hard to forge document with a\n" -" photo ID (such as a passport) that the name of the key owner matches the\n" -" name in the user ID on the key, and finally that you verified (by exchange\n" +" person, and that you checked, by means of a hard to forge document with " +"a\n" +" photo ID (such as a passport) that the name of the key owner matches " +"the\n" +" name in the user ID on the key, and finally that you verified (by " +"exchange\n" " of email) that the email address on the key belongs to the key owner.\n" "\n" "Note that the examples given above for levels 2 and 3 are *only* examples.\n" -"In the end, it is up to you to decide just what \"casual\" and \"extensive\"\n" +"In the end, it is up to you to decide just what \"casual\" and \"extensive" +"\"\n" "mean to you when you sign other keys.\n" "\n" "If you don't know what the right answer is, answer \"0\"." msgstr "" "Перед подписыванием User ID ключа, следует прежде удостовериться, что\n" -"ключ действительно принадлежит человеку указанному в User ID. Это очень важно\n" +"ключ действительно принадлежит человеку указанному в User ID. Это очень " +"важно\n" "для тех, кто учитывает как хорошо Вы проверяете достоверность User ID.\n" "\n" "\"0\" означает, что Вы не можете сказать, как хорошо Вы проверили ключ.\n" @@ -2301,19 +2372,23 @@ msgstr "" " указан в нем, но Вы не могли или не проводили проверку ключа совсем.\n" " Это полезно, когда Вы подписываете ключ с псевдонимом человека.\n" "\n" -"\"2\" означает, что Вы делали неаккуратную проверку ключа. Например, это может\n" +"\"2\" означает, что Вы делали неаккуратную проверку ключа. Например, это " +"может\n" " означать, что Вы проверили отпечаток ключа и проверили User ID на\n" " ключе на основании фото ID.\n" "\n" -"\"3\" означает, что Вы выполнили всестороннюю проверку ключа. Например, это может\n" +"\"3\" означает, что Вы выполнили всестороннюю проверку ключа. Например, это " +"может\n" " означать, что Вы сверили отпечаток ключа с владельцем ключа лично\n" " и что Вы сверили всё посредством трудноподделываемого документа с\n" " фотографией (таким как паспорт), что имя владельца ключа совпадает с\n" -" именем в User ID ключа и наконец, что Вы проверили (обменом шифрованными\n" +" именем в User ID ключа и наконец, что Вы проверили (обменом " +"шифрованными\n" " письмами), что email адрес на ключе принадлежит владельцу ключа.\n" "\n" "Учтите, что примеры данные для уровней 2 и 3 - только примеры.\n" -"В конечном итоге, Вам решать, как классифицировать \"неаккуратно\" и \"всесторонне\",\n" +"В конечном итоге, Вам решать, как классифицировать \"неаккуратно\" и " +"\"всесторонне\",\n" "при подписывании чужих ключей.\n" "\n" "Если Вы не можете определиться с правильным ответом, ответьте \"0\"." @@ -2394,7 +2469,8 @@ msgstr "Введите фразу-пароль (это секретная стр #: g10/helptext.c:238 msgid "Please repeat the last passphrase, so you are sure what you typed in." -msgstr "Повторите фразу-пароль, чтобы убедиться в том, что она набрана правильно." +msgstr "" +"Повторите фразу-пароль, чтобы убедиться в том, что она набрана правильно." #: g10/helptext.c:242 msgid "Give the name of the file to which the signature applies" @@ -2604,12 +2680,16 @@ msgstr "крайне желательно, чтобы Вы обновили Ва #: g10/import.c:645 msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" -msgstr "распространите данный ключ, чтобы избежать потенциальных проблем несовпадения алгоритмов\n" +msgstr "" +"распространите данный ключ, чтобы избежать потенциальных проблем " +"несовпадения алгоритмов\n" #: g10/import.c:669 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" -msgstr "можете обновить список предпочтений используя: gpg --edit-key %s updpref save\n" +msgstr "" +"можете обновить список предпочтений используя: gpg --edit-key %s updpref " +"save\n" #: g10/import.c:719 g10/import.c:1117 #, c-format @@ -2788,7 +2868,8 @@ msgstr "ключ %s: нет User ID для подписи\n" #: g10/import.c:1388 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" -msgstr "ключ %s: неподдерживаемый алгоритм с открытым ключом у User ID \"%s\"\n" +msgstr "" +"ключ %s: неподдерживаемый алгоритм с открытым ключом у User ID \"%s\"\n" #: g10/import.c:1390 #, c-format @@ -2968,8 +3049,10 @@ msgstr "обнаружено %d User ID без действительной са #: g10/keyedit.c:416 g10/pkclist.c:263 msgid "" -"Please decide how far you trust this user to correctly verify other users' keys\n" -"(by looking at passports, checking fingerprints from different sources, etc.)\n" +"Please decide how far you trust this user to correctly verify other users' " +"keys\n" +"(by looking at passports, checking fingerprints from different sources, " +"etc.)\n" msgstr "" "Укажите насколько Вы доверяете данному пользователю в\n" "вопросах проверки достоверности ключей других пользователей.\n" @@ -2998,7 +3081,9 @@ msgstr "" #: g10/keyedit.c:456 msgid "Please enter a domain to restrict this signature, or enter for none.\n" -msgstr "Введите домен, ограничивающий использование данной подписи, или пустую строку, если нет ограничений.\n" +msgstr "" +"Введите домен, ограничивающий использование данной подписи, или пустую " +"строку, если нет ограничений.\n" #: g10/keyedit.c:600 #, c-format @@ -3106,7 +3191,9 @@ msgid "Do you want your signature to expire at the same time? (Y/n) " msgstr "Хотите чтобы Ваша подпись была действительна до того же времени?(Y/n) " #: g10/keyedit.c:890 -msgid "You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 mode.\n" +msgid "" +"You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 " +"mode.\n" msgstr "Нельзя сделать OpenPGP подпись на PGP 2.x ключе в режиме --pgp2.\n" #: g10/keyedit.c:892 @@ -3115,7 +3202,8 @@ msgstr "Это сделает ключ несовместимым с PGP 2.x.\n" #: g10/keyedit.c:917 msgid "" -"How carefully have you verified the key you are about to sign actually belongs\n" +"How carefully have you verified the key you are about to sign actually " +"belongs\n" "to the person named above? If you don't know what to answer, enter \"0\".\n" msgstr "" "Как хорошо проверено то, что ключ действительно принадлежит человеку,\n" @@ -3421,11 +3509,13 @@ msgstr "Сначала воспользуйтесь командой \"toggle\". #: g10/keyedit.c:1699 msgid "" -"* The `sign' command may be prefixed with an `l' for local signatures (lsign),\n" +"* The `sign' command may be prefixed with an `l' for local signatures " +"(lsign),\n" " a `t' for trust signatures (tsign), an `nr' for non-revocable signatures\n" " (nrsign), or any combination thereof (ltsign, tnrsign, etc.).\n" msgstr "" -"* Команда `sign' может быть дополнена префиксом: `l' - локально подписать lsign),\n" +"* Команда `sign' может быть дополнена префиксом: `l' - локально подписать " +"lsign),\n" " `t' - trust подпись (tsign), `nr' - без возможности отзыва\n" " (nrsign) или любым их сочетанием (ltsign, tnrsign и т.д.).\n" @@ -3522,8 +3612,11 @@ msgid "Do you really want to revoke this subkey? (y/N) " msgstr "Действительно хотите отозвать данный подключ? (y/N)" #: g10/keyedit.c:2090 -msgid "Owner trust may not be set while using an user provided trust database\n" -msgstr "Невозможно присвоить степень доверия пока используется указанная пользователем таблица доверий\n" +msgid "" +"Owner trust may not be set while using an user provided trust database\n" +msgstr "" +"Невозможно присвоить степень доверия пока используется указанная " +"пользователем таблица доверий\n" #: g10/keyedit.c:2132 msgid "Set preference list to:\n" @@ -3671,7 +3764,8 @@ msgstr "" #: g10/keyedit.c:3014 msgid "" -"WARNING: This is a PGP2-style key. Adding a photo ID may cause some versions\n" +"WARNING: This is a PGP2-style key. Adding a photo ID may cause some " +"versions\n" " of PGP to reject this key.\n" msgstr "" "ВНИМАНИЕ: Это ключ PGP2. Добавление фото ID может в некоторых версиях\n" @@ -3726,7 +3820,8 @@ msgstr "User ID \"%s\": уже очищен\n" #: g10/keyedit.c:3344 msgid "" -"WARNING: This is a PGP 2.x-style key. Adding a designated revoker may cause\n" +"WARNING: This is a PGP 2.x-style key. Adding a designated revoker may " +"cause\n" " some versions of PGP to reject this key.\n" msgstr "" "ВНИМАНИЕ: Это ключ PGP 2.x. Добавление назначенного отзывающим ключа\n" @@ -3757,7 +3852,8 @@ msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n" msgstr "ВНИМАНИЕ: назначение ключа отзывающим невозможно будет отменить!\n" #: g10/keyedit.c:3462 -msgid "Are you sure you want to appoint this key as a designated revoker? (y/N) " +msgid "" +"Are you sure you want to appoint this key as a designated revoker? (y/N) " msgstr "Вы уверены, что хотите назначить данный ключ отзывающим? (y/N)" #: g10/keyedit.c:3523 @@ -3962,8 +4058,11 @@ msgid "keysize rounded up to %u bits\n" msgstr "размер ключа приведен к %u битам\n" #: g10/keygen.c:1276 -msgid "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" -msgstr "ВНИМАНИЕ: некоторые реализации OpenPGP не смогут обработать DSA ключи с такой длиной хеш-функции\n" +msgid "" +"WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" +msgstr "" +"ВНИМАНИЕ: некоторые реализации OpenPGP не смогут обработать DSA ключи с " +"такой длиной хеш-функции\n" #: g10/keygen.c:1492 msgid "Sign" @@ -4146,7 +4245,7 @@ msgstr "Ключ действителен до: %s\n" msgid "Signature expires at %s\n" msgstr "Подпись действительна до: %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4161,7 +4260,8 @@ msgstr "Все верно? (y/N) " #: g10/keygen.c:1884 msgid "" "\n" -"You need a user ID to identify your key; the software constructs the user ID\n" +"You need a user ID to identify your key; the software constructs the user " +"ID\n" "from the Real Name, Comment and Email Address in this form:\n" " \"Heinrich Heine (Der Dichter) <[email protected]>\"\n" "\n" @@ -4245,7 +4345,8 @@ msgstr "Сменить (N)Имя, (C)Комментарий, (E)email-адрес #: g10/keygen.c:1997 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " -msgstr "Сменить (N)Имя, (C)Комментарий, (E)email-адрес или (O)Принять/(Q)Выход? " +msgstr "" +"Сменить (N)Имя, (C)Комментарий, (E)email-адрес или (O)Принять/(Q)Выход? " #: g10/keygen.c:2016 msgid "Please correct the error first\n" @@ -4284,7 +4385,8 @@ msgid "" "generator a better chance to gain enough entropy.\n" msgstr "" "Необходимо сгенерировать много случайных чисел. Желательно, что бы Вы\n" -"выполняли некоторые другие активные действия (печать на клавиатуре, движения мышью,\n" +"выполняли некоторые другие активные действия (печать на клавиатуре, движения " +"мышью,\n" "обращения к дискам) в процессе генерации; это даст генератору\n" "случайных чисел возможность получить лучшую энтропию.\n" @@ -4346,13 +4448,17 @@ msgstr "Сбой при создании ключа: %s\n" #: g10/keygen.c:3353 g10/keygen.c:3481 g10/sign.c:277 #, c-format -msgid "key has been created %lu second in future (time warp or clock problem)\n" -msgstr "ключ был создан на %lu секунд в будущем (time warp или проблемы с часами)\n" +msgid "" +"key has been created %lu second in future (time warp or clock problem)\n" +msgstr "" +"ключ был создан на %lu секунд в будущем (time warp или проблемы с часами)\n" #: g10/keygen.c:3355 g10/keygen.c:3483 g10/sign.c:279 #, c-format -msgid "key has been created %lu seconds in future (time warp or clock problem)\n" -msgstr "ключ был создан на %lu секунд в будущем (time warp или проблемы с часами)\n" +msgid "" +"key has been created %lu seconds in future (time warp or clock problem)\n" +msgstr "" +"ключ был создан на %lu секунд в будущем (time warp или проблемы с часами)\n" #: g10/keygen.c:3364 g10/keygen.c:3494 msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" @@ -4377,7 +4483,7 @@ msgstr "не могу создать резервную копию, файл `%s msgid "NOTE: backup of card key saved to `%s'\n" msgstr "ЗАМЕЧАНИЕ: архивная копия ключа карты сохранена в `%s'\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "никогда " @@ -4505,7 +4611,8 @@ msgstr "" #: g10/keyserver.c:145 #, c-format msgid "WARNING: keyserver option `%s' is not used on this platform\n" -msgstr "ВНИМАНИЕ: параметр сервера ключей `%s' не используется на данной платформе\n" +msgstr "" +"ВНИМАНИЕ: параметр сервера ключей `%s' не используется на данной платформе\n" #: g10/keyserver.c:528 msgid "disabled" @@ -4833,8 +4940,10 @@ msgid "not a detached signature\n" msgstr "не отделенная подпись\n" #: g10/mainproc.c:1989 -msgid "WARNING: multiple signatures detected. Only the first will be checked.\n" -msgstr "ВНИМАНИЕ: обнаружено множество подписей. Только первая будет проверена.\n" +msgid "" +"WARNING: multiple signatures detected. Only the first will be checked.\n" +msgstr "" +"ВНИМАНИЕ: обнаружено множество подписей. Только первая будет проверена.\n" #: g10/mainproc.c:1997 #, c-format @@ -4862,12 +4971,16 @@ msgstr "" #: g10/misc.c:336 #, c-format msgid "WARNING: using experimental public key algorithm %s\n" -msgstr "ВНИМАНИЕ: используется экспериментальный алгоритм %s шифрования с открытым ключом\n" +msgstr "" +"ВНИМАНИЕ: используется экспериментальный алгоритм %s шифрования с открытым " +"ключом\n" #: g10/misc.c:351 #, c-format msgid "WARNING: using experimental cipher algorithm %s\n" -msgstr "ВНИМАНИЕ: используется экспериментальный алгоритм симметричного шифрования %s\n" +msgstr "" +"ВНИМАНИЕ: используется экспериментальный алгоритм симметричного шифрования %" +"s\n" #: g10/misc.c:366 #, c-format @@ -4906,7 +5019,8 @@ msgstr "используйте \"%s%s\" взамен\n" #: g10/misc.c:735 #, c-format msgid "WARNING: \"%s\" is a deprecated command - do not use it\n" -msgstr "ВНИМАНИЕ: команда \"%s\" является устаревшей - не следует применять ее\n" +msgstr "" +"ВНИМАНИЕ: команда \"%s\" является устаревшей - не следует применять ее\n" #: g10/misc.c:796 msgid "Uncompressed" @@ -4976,7 +5090,9 @@ msgstr "не могу использовать алгоритм с открыт� #: g10/parse-packet.c:762 msgid "WARNING: potentially insecure symmetrically encrypted session key\n" -msgstr "ВНИМАНИЕ: потенциально небезопасный сеансовый ключ, зашифрованный симметричным шифром\n" +msgstr "" +"ВНИМАНИЕ: потенциально небезопасный сеансовый ключ, зашифрованный " +"симметричным шифром\n" #: g10/parse-packet.c:1213 #, c-format @@ -5021,7 +5137,8 @@ msgstr "проблема с агентом: %s\n" msgid "" "You need a passphrase to unlock the secret key for\n" "user: \"%s\"\n" -msgstr "Необходима фраза-пароль для доступа к секретному ключу пользователя: \"%s\"\n" +msgstr "" +"Необходима фраза-пароль для доступа к секретному ключу пользователя: \"%s\"\n" #: g10/passphrase.c:572 #, c-format @@ -5120,8 +5237,11 @@ msgid " aka \"%s\"\n" msgstr " aka \"%s\"\n" #: g10/pkclist.c:256 -msgid "How much do you trust that this key actually belongs to the named user?\n" -msgstr "Какова уверенность в принадлежности данного ключа лицу указанному в User ID ключа?\n" +msgid "" +"How much do you trust that this key actually belongs to the named user?\n" +msgstr "" +"Какова уверенность в принадлежности данного ключа лицу указанному в User ID " +"ключа?\n" #: g10/pkclist.c:271 #, c-format @@ -5165,7 +5285,9 @@ msgstr "Ваше решение (?-подробнее)? " #: g10/pkclist.c:320 msgid "Do you really want to set this key to ultimate trust? (y/N) " -msgstr "Действительно хотите установить АБСОЛЮТНОЕ доверие к владельцу данного ключа? (y/N)" +msgstr "" +"Действительно хотите установить АБСОЛЮТНОЕ доверие к владельцу данного " +"ключа? (y/N)" #: g10/pkclist.c:334 msgid "Certificates leading to an ultimately trusted key:\n" @@ -5174,12 +5296,16 @@ msgstr "Сертификаты, приводящие к абсолютно до� #: g10/pkclist.c:419 #, c-format msgid "%s: There is no assurance this key belongs to the named user\n" -msgstr "%s: Нет свидетельств принадлежности данного ключа лицу указанному в User ID ключа\n" +msgstr "" +"%s: Нет свидетельств принадлежности данного ключа лицу указанному в User ID " +"ключа\n" #: g10/pkclist.c:424 #, c-format msgid "%s: There is limited assurance this key belongs to the named user\n" -msgstr "%s: Мало свидетельств принадлежности данного ключа лицу указанному в User ID ключа\n" +msgstr "" +"%s: Мало свидетельств принадлежности данного ключа лицу указанному в User ID " +"ключа\n" #: g10/pkclist.c:430 msgid "This key probably belongs to the named user\n" @@ -5258,7 +5384,8 @@ msgid "WARNING: This key is not certified with a trusted signature!\n" msgstr "ВНИМАНИЕ: Данный ключ не заверен доверенной подписью!\n" #: g10/pkclist.c:604 -msgid " There is no indication that the signature belongs to the owner.\n" +msgid "" +" There is no indication that the signature belongs to the owner.\n" msgstr " Нет указаний на то, что подпись принадлежит владельцу.\n" #: g10/pkclist.c:612 @@ -5270,8 +5397,10 @@ msgid " The signature is probably a FORGERY.\n" msgstr " Возможно, что подпись ПОДДЕЛАНА.\n" #: g10/pkclist.c:621 -msgid "WARNING: This key is not certified with sufficiently trusted signatures!\n" -msgstr "ВНИМАНИЕ: Этот ключ не заверен достаточным количеством доверяемых подписей!\n" +msgid "" +"WARNING: This key is not certified with sufficiently trusted signatures!\n" +msgstr "" +"ВНИМАНИЕ: Этот ключ не заверен достаточным количеством доверяемых подписей!\n" #: g10/pkclist.c:623 msgid " It is not certain that the signature belongs to the owner.\n" @@ -5333,6 +5462,16 @@ msgstr "%s: пропущено: открытый ключ отключен\n" msgid "no valid addressees\n" msgstr "нет действительных адресов\n" +#: g10/pkclist.c:1468 +#, fuzzy, c-format +msgid "Note: key %s has no %s feature\n" +msgstr "ключ %s не имеет User ID\n" + +#: g10/pkclist.c:1493 +#, fuzzy, c-format +msgid "Note: key %s has no preference for %s\n" +msgstr "ключ %s не имеет User ID\n" + #: g10/plaintext.c:91 msgid "data not saved; use option \"--output\" to save it\n" msgstr "данные не сохранены; используйте \"--output\" для сохранения\n" @@ -5367,26 +5506,27 @@ msgstr "анонимный получатель; пробую секретный msgid "okay, we are the anonymous recipient.\n" msgstr "отлично, мы анонимный получатель.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "старое шифрование DEK не поддерживается\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "алгоритм шифрования %d%s неизвестен или отключен\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" -msgstr "ВНИМАНИЕ: алгоритм шифрования %s не найден в списке предпочтений получателя\n" +msgstr "" +"ВНИМАНИЕ: алгоритм шифрования %s не найден в списке предпочтений получателя\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "ЗАМЕЧАНИЕ: секретный ключ %s просрочен с %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "ЗАМЕЧАНИЕ: ключ был отозван" @@ -5535,7 +5675,8 @@ msgstr "ВНИМАНИЕ: обнаружен слабый ключ - смени� #: g10/seckey-cert.c:406 msgid "generating the deprecated 16-bit checksum for secret key protection\n" -msgstr "создание нерекомендуемой 16-битной контрольной суммы для защиты ключа\n" +msgstr "" +"создание нерекомендуемой 16-битной контрольной суммы для защиты ключа\n" #: g10/seskey.c:63 sm/encrypt.c:121 msgid "weak key created - retrying\n" @@ -5544,18 +5685,19 @@ msgstr "создан слабый ключ - повторение\n" #: g10/seskey.c:67 #, c-format msgid "cannot avoid weak key for symmetric cipher; tried %d times!\n" -msgstr "невозможно избежать слабого ключа для симметричного шифра; %d попыток!\n" +msgstr "" +"невозможно избежать слабого ключа для симметричного шифра; %d попыток!\n" #: g10/seskey.c:229 msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "DSA тебует размер хеша кратного 8 битам\n" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "ключ DSA %s использует небезопасный (%u бит) хеш\n" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "для ключа DSA %s требуется хеш не менее %u бит\n" @@ -5567,12 +5709,15 @@ msgstr "ВНИМАНИЕ: конфликт хэшей подписей в соо #: g10/sig-check.c:107 #, c-format msgid "WARNING: signing subkey %s is not cross-certified\n" -msgstr "ВНИМАНИЕ: подписываемый подключ %s не имеет перекрестной сертификации\n" +msgstr "" +"ВНИМАНИЕ: подписываемый подключ %s не имеет перекрестной сертификации\n" #: g10/sig-check.c:119 #, c-format msgid "WARNING: signing subkey %s has an invalid cross-certification\n" -msgstr "ВНИМАНИЕ: подписываемый подключ %s имеет недостоверную перекрестную сертификацию\n" +msgstr "" +"ВНИМАНИЕ: подписываемый подключ %s имеет недостоверную перекрестную " +"сертификацию\n" #: g10/sig-check.c:191 #, c-format @@ -5586,13 +5731,19 @@ msgstr "открытый ключ %s на %lu секунд моложе подп #: g10/sig-check.c:203 #, c-format -msgid "key %s was created %lu second in the future (time warp or clock problem)\n" -msgstr "ключ %s был создан на %lu секунд в будущем (time warp или проблемы с часами)\n" +msgid "" +"key %s was created %lu second in the future (time warp or clock problem)\n" +msgstr "" +"ключ %s был создан на %lu секунд в будущем (time warp или проблемы с " +"часами)\n" #: g10/sig-check.c:205 #, c-format -msgid "key %s was created %lu seconds in the future (time warp or clock problem)\n" -msgstr "ключ %s был создан на %lu секунд в будущем (time warp или проблемы с часами)\n" +msgid "" +"key %s was created %lu seconds in the future (time warp or clock problem)\n" +msgstr "" +"ключ %s был создан на %lu секунд в будущем (time warp или проблемы с " +"часами)\n" #: g10/sig-check.c:215 #, c-format @@ -5625,7 +5776,8 @@ msgstr "невозможно добавить примечание в v3 (PGP 2. #: g10/sign.c:108 #, c-format msgid "WARNING: unable to %%-expand notation (too large). Using unexpanded.\n" -msgstr "ВНИМАНИЕ: не могу развернуть %% запись (длинный). Использую неразвернутым.\n" +msgstr "" +"ВНИМАНИЕ: не могу развернуть %% запись (длинный). Использую неразвернутым.\n" #: g10/sign.c:125 msgid "can't put a policy URL into v3 (PGP 2.x style) signatures\n" @@ -5637,13 +5789,20 @@ msgstr "нельзя ставить URL правил в v3 (PGP 2.x стиля) #: g10/sign.c:146 #, c-format -msgid "WARNING: unable to %%-expand policy URL (too large). Using unexpanded.\n" -msgstr "ВНИМАНИЕ: не могу развернуть %% url правил (длинный). Использую неразвернутым.\n" +msgid "" +"WARNING: unable to %%-expand policy URL (too large). Using unexpanded.\n" +msgstr "" +"ВНИМАНИЕ: не могу развернуть %% url правил (длинный). Использую " +"неразвернутым.\n" #: g10/sign.c:174 #, c-format -msgid "WARNING: unable to %%-expand preferred keyserver URL (too large). Using unexpanded.\n" -msgstr "ВНИМАНИЕ: невозможно развернуть %% URL предпочитаемого сервера ключей (слишком длинно). Использую неразвернутым.\n" +msgid "" +"WARNING: unable to %%-expand preferred keyserver URL (too large). Using " +"unexpanded.\n" +msgstr "" +"ВНИМАНИЕ: невозможно развернуть %% URL предпочитаемого сервера ключей " +"(слишком длинно). Использую неразвернутым.\n" #: g10/sign.c:347 #, c-format @@ -5661,8 +5820,11 @@ msgstr "только отделенная подпись доступна с PGP #: g10/sign.c:866 #, c-format -msgid "WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" -msgstr "ВНИМАНИЕ: использование хэш-функции %s (%d) нарушает предпочтения получателя\n" +msgid "" +"WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n" +msgstr "" +"ВНИМАНИЕ: использование хэш-функции %s (%d) нарушает предпочтения " +"получателя\n" #: g10/sign.c:993 msgid "signing:" @@ -5679,7 +5841,8 @@ msgstr "будет использовано %s шифрование\n" #: g10/skclist.c:151 g10/skclist.c:215 msgid "key is not flagged as insecure - can't use it with the faked RNG!\n" -msgstr "ключ не помечен как ненадежный - не могу использовать его с ненадежным RNG!\n" +msgstr "" +"ключ не помечен как ненадежный - не могу использовать его с ненадежным RNG!\n" #: g10/skclist.c:182 #, c-format @@ -5697,7 +5860,8 @@ msgstr "пропущено: секретный ключ уже имеется\n" #: g10/skclist.c:210 msgid "this is a PGP generated Elgamal key which is not secure for signatures!" -msgstr "это созданный PGP ElGamal ключ, не обеспечивающий безопасность подписи!" +msgstr "" +"это созданный PGP ElGamal ключ, не обеспечивающий безопасность подписи!" #: g10/tdbdump.c:60 g10/trustdb.c:366 #, c-format @@ -5925,7 +6089,8 @@ msgstr "запись о доверии %lu не запрашиваемого т� #: g10/trustdb.c:447 #, c-format msgid "unable to use unknown trust model (%d) - assuming %s trust model\n" -msgstr "не могу использовать неизвестную модель (%d) - использую %s модель доверий\n" +msgstr "" +"не могу использовать неизвестную модель (%d) - использую %s модель доверий\n" #: g10/trustdb.c:453 #, c-format @@ -6033,17 +6198,22 @@ msgstr "открытый ключ для абсолютно доверяемог #: g10/trustdb.c:2197 #, c-format msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n" -msgstr "%d ограниченных необходимо, %d выполненных необходимо, %s модель доверия\n" +msgstr "" +"%d ограниченных необходимо, %d выполненных необходимо, %s модель доверия\n" #: g10/trustdb.c:2283 #, c-format -msgid "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" -msgstr "глубина: %d корректных: %3d подписанных: %3d доверия: %d-, %dq, %dn, %dm, %df, %du\n" +msgid "" +"depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" +msgstr "" +"глубина: %d корректных: %3d подписанных: %3d доверия: %d-, %dq, %dn, %dm, " +"%df, %du\n" #: g10/trustdb.c:2358 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" -msgstr "невозможно обновить запись о версии таблицы доверий: ошибка записи: %s\n" +msgstr "" +"невозможно обновить запись о версии таблицы доверий: ошибка записи: %s\n" #: g10/verify.c:118 msgid "" @@ -6060,7 +6230,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "входная строка %u слишком длинная или пропущен LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "Вы нашли ошибку ... (%s:%d)\n" @@ -6123,155 +6293,163 @@ msgstr "сбой сохранения даты создания: %s\n" msgid "reading public key failed: %s\n" msgstr "сбой чтения открытого ключа: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "ответ не содержит данных открытого ключа\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "в ответе отсутствует модуль RSA\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "в ответе отсутствует открытая экспонента RSA\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN для CHV%d слишком короток, минимальная длина %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "при проверке CHV%d сбой: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "доступ к командам управления не настроен\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "ошибка получения статуса CHV с карты\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "карта заблокирована!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" -msgstr "осталось %d попыток ввода административного PIN перед блокировкой карты\n" +msgstr "" +"осталось %d попыток ввода административного PIN перед блокировкой карты\n" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|Административный PID" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Новый административный PIN" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Новый PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "ошибка при получении нового PIN: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "ошибка чтения данных приложения\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "ошибка чтения отпечатка DO\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "ключ уже существует\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "существующий ключ будет заменен\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "генерация нового ключа\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "пропущен штамп создания создания\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "Модули RSA пропущены или не имеют размер %d бит\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "отсутствует открытая экспонента RSA или превышает %d бит\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "Простое число RSA %s пропущено или не имеет размер %d бит\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "сбой сохранения ключа: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "пожалуйста, подождите, пока будет генерироваться ключ ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "сбой при генерации ключа\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "ключ сгенерирован (%d секунд)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "недопутимая структура OpenPGP карты (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "карта не поддерживает функцию хеширования %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "подписей создано: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||Введите PIN%%0A[подписей: %lu]" -#: scd/app-openpgp.c:2475 -msgid "verification of Admin PIN is currently prohibited through this command\n" -msgstr "проверка административного PIN в данный момент запрещена этой командой\n" +#: scd/app-openpgp.c:2500 +msgid "" +"verification of Admin PIN is currently prohibited through this command\n" +msgstr "" +"проверка административного PIN в данный момент запрещена этой командой\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "нет доступа %s - неработоспособная карта OpenPGP?\n" @@ -6320,16 +6498,17 @@ msgstr "" "Синтаксис: scdaemon [параметры] [команда [аргументы]]\n" "Демон смарткарт для GnuPG\n" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" -msgstr "Используйте параметр `--daemon' для запуска приложения в фоновом режиме\n" +msgstr "" +"Используйте параметр `--daemon' для запуска приложения в фоновом режиме\n" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "обработчик fd %d запущен\n" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "обработчик fd %d остановлен\n" @@ -6458,7 +6637,8 @@ msgstr "в gpg-agent нельзя сделать сертификат довер #: sm/certchain.c:970 msgid "interactive marking as trusted disabled for this session\n" -msgstr "для данной сессии запрещено делать сертификат доверяемым интерактивно\n" +msgstr "" +"для данной сессии запрещено делать сертификат доверяемым интерактивно\n" #: sm/certchain.c:980 #, c-format @@ -6494,31 +6674,32 @@ msgstr "DSA требует использования 160 битной хэш-ф msgid "(this is the MD2 algorithm)\n" msgstr "(это MD2 алгоритм)\n" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 msgid "none" msgstr "нет" -#: sm/certdump.c:156 +#: sm/certdump.c:163 msgid "[none]" msgstr "[нет]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 msgid "[Error - invalid encoding]" msgstr "[Ошибка - недопустимая кодировка]" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "[Ошибка - Нет имени]" -#: sm/certdump.c:597 +#: sm/certdump.c:604 msgid "[Error - invalid DN]" msgstr "[Ошибка - недопустимый DN]" -#: sm/certdump.c:758 +#: sm/certdump.c:818 +#, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" "\"%s\"\n" @@ -6828,7 +7009,8 @@ msgid "" "default operation depends on the input data\n" msgstr "" "Синтаксис: gpgsm [параметры] [файлы]\n" -"подписать и проверить, зашифровать или расшифровать используя S/MIME протокол\n" +"подписать и проверить, зашифровать или расшифровать используя S/MIME " +"протокол\n" "операция по умолчанию зависит от входных данных\n" #: sm/gpgsm.c:617 @@ -6940,7 +7122,8 @@ msgstr "ошибка сохранения флагов: %s\n" #: sm/misc.c:57 msgid "GPG_TTY has not been set - using maybe bogus default\n" -msgstr "GPG_TTY не установлено - возможно использование подделанного умолчания\n" +msgstr "" +"GPG_TTY не установлено - возможно использование подделанного умолчания\n" #: sm/qualified.c:113 #, c-format @@ -6957,14 +7140,19 @@ msgstr "недопустисый код страны в `%s', строка %d\n" msgid "" "You are about to create a signature using your certificate:\n" "\"%s\"\n" -"This will create a qualified signature by law equated to a handwritten signature.\n" +"This will create a qualified signature by law equated to a handwritten " +"signature.\n" "\n" "%s%sAre you really sure that you want to do this?" msgstr "" #: sm/qualified.c:233 -msgid "Note, that this software is not officially approved to create or verify such signatures.\n" -msgstr "Учтите, что для данной программы официально не одобрено создание и проверка подобных подписей.\n" +msgid "" +"Note, that this software is not officially approved to create or verify such " +"signatures.\n" +msgstr "" +"Учтите, что для данной программы официально не одобрено создание и проверка " +"подобных подписей.\n" #: sm/qualified.c:321 #, c-format @@ -6992,15 +7180,15 @@ msgstr "[дата не указана]" msgid " using certificate ID %08lX\n" msgstr "с использованием сертификата ID %08lX\n" -#: sm/verify.c:506 +#: sm/verify.c:509 msgid "Good signature from" msgstr "Действительная подпись от" -#: sm/verify.c:507 +#: sm/verify.c:510 msgid " aka" msgstr " aka" -#: tools/gpg-connect-agent.c:60 tools/gpgconf.c:64 tools/symcryptrun.c:183 +#: tools/gpg-connect-agent.c:60 tools/gpgconf.c:64 tools/symcryptrun.c:186 msgid "quiet" msgstr "" @@ -7180,7 +7368,7 @@ msgstr "Компонент не найден" msgid "error allocating enough memory: %s\n" msgstr "ошибка распределения памяти: %s\n" -#: tools/symcryptrun.c:170 +#: tools/symcryptrun.c:173 msgid "" "@\n" "Commands:\n" @@ -7190,158 +7378,160 @@ msgstr "" "Команды:\n" " " -#: tools/symcryptrun.c:172 +#: tools/symcryptrun.c:175 msgid "decryption modus" msgstr "режим расшифрования" -#: tools/symcryptrun.c:173 +#: tools/symcryptrun.c:176 msgid "encryption modus" msgstr "режим зашифровывания" -#: tools/symcryptrun.c:177 +#: tools/symcryptrun.c:180 msgid "tool class (confucius)" msgstr "" -#: tools/symcryptrun.c:178 +#: tools/symcryptrun.c:181 msgid "program filename" msgstr "" -#: tools/symcryptrun.c:180 +#: tools/symcryptrun.c:183 msgid "secret key file (required)" msgstr "файл секретного ключа (требуется)" -#: tools/symcryptrun.c:181 +#: tools/symcryptrun.c:184 msgid "input file name (default stdin)" msgstr "ввод имени файла (stdin по умолчанию)" -#: tools/symcryptrun.c:225 +#: tools/symcryptrun.c:228 msgid "Usage: symcryptrun [options] (-h for help)" msgstr "Использование: symcryptrun [параметры] (-h для подсказки)" -#: tools/symcryptrun.c:228 +#: tools/symcryptrun.c:231 msgid "" -"Syntax: symcryptrun --class CLASS --program PROGRAM --keyfile KEYFILE [options...] COMMAND [inputfile]\n" +"Syntax: symcryptrun --class CLASS --program PROGRAM --keyfile KEYFILE " +"[options...] COMMAND [inputfile]\n" "Call a simple symmetric encryption tool\n" msgstr "" -"Синтаксис: symcryptrun --class CLASS --program PROGRAM --keyfile KEYFILE [параметры...] COMMAND [файл-источник]\n" +"Синтаксис: symcryptrun --class CLASS --program PROGRAM --keyfile KEYFILE " +"[параметры...] COMMAND [файл-источник]\n" "Вызывает простой инструмент шифрования\n" -#: tools/symcryptrun.c:310 +#: tools/symcryptrun.c:313 #, c-format msgid "%s on %s aborted with status %i\n" msgstr "%s над %s прервано, статус %i\n" -#: tools/symcryptrun.c:317 +#: tools/symcryptrun.c:320 #, c-format msgid "%s on %s failed with status %i\n" msgstr "сбой %s над %s, статус %i\n" -#: tools/symcryptrun.c:343 +#: tools/symcryptrun.c:346 #, c-format msgid "can't create temporary directory `%s': %s\n" msgstr "невозможно создание временного каталога `%s': %s\n" -#: tools/symcryptrun.c:383 tools/symcryptrun.c:400 +#: tools/symcryptrun.c:386 tools/symcryptrun.c:403 #, c-format msgid "could not open %s for writing: %s\n" msgstr "невозможно открытие %s на запись: %s\n" -#: tools/symcryptrun.c:411 +#: tools/symcryptrun.c:414 #, c-format msgid "error writing to %s: %s\n" msgstr "ошибка записи в %s: %s\n" -#: tools/symcryptrun.c:418 +#: tools/symcryptrun.c:421 #, c-format msgid "error reading from %s: %s\n" msgstr "ошибка чтения из %s: %s\n" -#: tools/symcryptrun.c:425 tools/symcryptrun.c:432 +#: tools/symcryptrun.c:428 tools/symcryptrun.c:435 #, c-format msgid "error closing %s: %s\n" msgstr "ошибка закрытия %s: %s\n" -#: tools/symcryptrun.c:542 +#: tools/symcryptrun.c:545 msgid "no --program option provided\n" msgstr "не задан параметр --program\n" -#: tools/symcryptrun.c:548 +#: tools/symcryptrun.c:551 msgid "only --decrypt and --encrypt are supported\n" msgstr "поддерживаются только параметры --decrypt и --encrypt\n" -#: tools/symcryptrun.c:554 +#: tools/symcryptrun.c:557 msgid "no --keyfile option provided\n" msgstr "не задан параметр --keyfile\n" -#: tools/symcryptrun.c:565 +#: tools/symcryptrun.c:568 msgid "cannot allocate args vector\n" msgstr "" -#: tools/symcryptrun.c:583 +#: tools/symcryptrun.c:586 #, c-format msgid "could not create pipe: %s\n" msgstr "" -#: tools/symcryptrun.c:590 +#: tools/symcryptrun.c:593 #, c-format msgid "could not create pty: %s\n" msgstr "" -#: tools/symcryptrun.c:606 +#: tools/symcryptrun.c:609 #, c-format msgid "could not fork: %s\n" msgstr "" -#: tools/symcryptrun.c:634 +#: tools/symcryptrun.c:637 #, c-format msgid "execv failed: %s\n" msgstr "" -#: tools/symcryptrun.c:663 +#: tools/symcryptrun.c:666 #, c-format msgid "select failed: %s\n" msgstr "" -#: tools/symcryptrun.c:680 +#: tools/symcryptrun.c:683 #, c-format msgid "read failed: %s\n" msgstr "" -#: tools/symcryptrun.c:732 +#: tools/symcryptrun.c:735 #, c-format msgid "pty read failed: %s\n" msgstr "" -#: tools/symcryptrun.c:784 +#: tools/symcryptrun.c:787 #, c-format msgid "waitpid failed: %s\n" msgstr "" -#: tools/symcryptrun.c:798 +#: tools/symcryptrun.c:801 #, c-format msgid "child aborted with status %i\n" msgstr "потомок завершился, статус %i\n" -#: tools/symcryptrun.c:853 +#: tools/symcryptrun.c:856 #, c-format msgid "cannot allocate infile string: %s\n" msgstr "" -#: tools/symcryptrun.c:866 +#: tools/symcryptrun.c:869 #, c-format msgid "cannot allocate outfile string: %s\n" msgstr "" -#: tools/symcryptrun.c:1041 +#: tools/symcryptrun.c:1044 #, c-format msgid "either %s or %s must be given\n" msgstr "следует задать %s либо %s\n" -#: tools/symcryptrun.c:1061 +#: tools/symcryptrun.c:1064 msgid "no class provided\n" msgstr "не задан класс\n" -#: tools/symcryptrun.c:1068 +#: tools/symcryptrun.c:1071 #, c-format msgid "class %s is not supported\n" msgstr "класс %s не поддерживается\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" @@ -131,7 +131,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: nepodarilo sa vytvori� hashovaciu tabu�ku: %s\n" @@ -285,7 +285,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -294,154 +294,148 @@ msgstr "" "Chyby ozn�mte, pros�m, na adresu <[email protected]>.\n" "Pripomienky k prekladu <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Pou�itie: gpg [mo�nosti] [s�bory] (-h pre pomoc)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "POZN�MKA: neexistuje implicitn� s�bor s mo�nos�ami `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "s�bor s mo�nos�ami `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "��tam mo�nosti z `%s'\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "chyba pri vytv�ran� `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "nem��em vytvori� adres�r `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "%s: nem��em vytvori�: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "chyba pri posielan� na `%s': %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "aktualiz�cia zlyhala: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "zapisujem tajn� k��� do `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: adres�r vytvoren�\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "datab�za d�very: proced�ra read() (n=%d) zlyhala: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: nem��em vytvori� adres�r: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "aktualiz�cia tajn�ho k���a zlyhala: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: presko�en�: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent nie je v tomto seden� dostupn�\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "zl� form�t premennej prostredia GPG_AGENT_INFO\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4417,7 +4411,7 @@ msgstr "platnos� %s skon�� %s\n" msgid "Signature expires at %s\n" msgstr "Platnos� podpisu vypr�� %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4660,7 +4654,7 @@ msgstr "nem��em vytvori� `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "POZN�MKA: platnos� tajn�ho k���a %08lX skon�ila %s\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "nikdy " @@ -5708,26 +5702,26 @@ msgstr "anonymn� adres�t; sk��am tajn� k��� %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "o.k., my sme anonymn� adres�t.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "star� k�dovanie DEK nie je podporov�n�\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "�ifrovac� algoritmus %d%s je neznam� alebo je zak�zan�\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "POZN�MKA: v predvo�b�ch nen�jden� �ifrovac� algoritmus %d\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "POZN�MKA: platnos� tajn�ho k���a %08lX skon�ila %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "POZN�MKA: k��� bol revokovan�" @@ -5896,12 +5890,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6445,7 +6439,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "vstupn� riadok %u je pr�li� dlh� alebo na konci ch�ba znak LF\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "n�jden� chyba v programe ... (%s:%d)\n" @@ -6480,11 +6474,6 @@ msgstr "" "Chyby ozn�mte, pros�m, na adresu <[email protected]>.\n" "Pripomienky k prekladu <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6515,47 +6504,52 @@ msgstr "zlyhalo obnovenie vyrovn�vacej pam�ti k���ov: %s\n" msgid "reading public key failed: %s\n" msgstr "zmazanie bloku k���a sa nepodarilo: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "nepodarilo posla� k��� na server: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6563,113 +6557,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "chyba pri vytv�ran� hesla: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "chyba pri ��tan� bloku k���a: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "%s: chyba pri ��tan� vo�n�ho z�znamu: %s\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' je u� skomprimovan�\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "vytvori� nov� p�r k���ov" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "nem��em inicializova� datab�zu d�very: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "zmazanie bloku k���a sa nepodarilo: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Vytvorenie k���a sa nepodarilo: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s podpis, hashovac� algoritmus %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nen�jden� �iadne platn� d�ta vo form�te OpenPGP.\n" @@ -6722,16 +6716,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6905,35 +6899,35 @@ msgstr "DSA po�aduje pou�itie 160 bitov�ho hashovacieho algoritmu\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "nie" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "nezn�me" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "chyba: neplatn� odtla�ok\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "chyba: neplatn� odtla�ok\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7434,12 +7428,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Dobr� podpis od \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " alias \"" @@ -7796,6 +7790,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "ochrann� algoritmus %d%s nie je podporov�n�\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "probl�m s agentom - pou��vanie agenta vypnut�\n" @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.2.6\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2004-12-01 17:49+0100\n" "Last-Translator: Per Tunedal <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" @@ -152,7 +152,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: misslyckades med att skapa kontrollsummetabell: %s\n" @@ -309,7 +309,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -318,154 +318,148 @@ msgstr "" "Rapportera gärna fel till <[email protected]>.\n" "Rapportera gärna fel eller synpunkter på översättningen till <[email protected]>.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Användning: gpg [flaggor] [filer] (-h för hjälp)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "OBS: inställningsfilen \"%s\" saknas\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "inställningsfil \"%s\": %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "läser inställningar från \"%s\"\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "Fel vid skapande av `%s': %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "%s: kan inte skapa katalog: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "kan inte skapa \"%s\": %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "fel vid sändning till \"%s\": %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "uppdateringen misslyckades: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "skriver hemlig nyckel till \"%s\"\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, fuzzy, c-format msgid "directory `%s' created\n" msgstr "%s: katalog skapad\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "tillitsdatabas: läsning misslyckades (n=%d): %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "%s: kan inte skapa katalog: %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "misslyckades med att uppdatera hemligheten: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: hoppade över: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "kunde inte få tillgång till GPG-Agent i denna session\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "miljövariabeln GPG_AGENT_INFO är felformaterad\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4519,7 +4513,7 @@ msgstr "Giltighetstiden för %s går ut vid följande tidpunkt: %s\n" msgid "Signature expires at %s\n" msgstr "Giltighetstiden för signaturen går ut %s\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4765,7 +4759,7 @@ msgstr "kan inte skapa \"%s\": %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "aldrig" @@ -5828,26 +5822,26 @@ msgstr "anonym mottagare; försöker med den hemliga nyckeln %08lX ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "ok, vi är den hemliga mottagaren.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "gammal kodning av krypteringsnyckeln stöds inte\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "krypteringsalgoritmen %d%s är okänd eller avstängd\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, fuzzy, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "OBS: krypteringsalgoritmen %d finns inte i inställningarna\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, fuzzy, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "OBS: den hemliga nyckeln %08lX gick ut %s\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "OBS: nyckeln har spärrats" @@ -6027,12 +6021,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6597,7 +6591,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "raden %u är för lång, eller saknar nyradstecken\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "du har hittat ett fel i programmet ... (%s:%d)\n" @@ -6634,11 +6628,6 @@ msgstr "" "Rapportera gärna fel till <[email protected]>.\n" "Rapportera gärna fel eller synpunkter på översättningen till <[email protected]>.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6669,47 +6658,52 @@ msgstr "misslyckades med att återskapa nyckelringscache: %s\n" msgid "reading public key failed: %s\n" msgstr "misslyckades med att radera nyckelblock: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "Sändning till nyckelservern misslyckades: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6717,113 +6711,113 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "Fel vid skapande av `%s': %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 #, fuzzy msgid "error reading application data\n" msgstr "fel vid läsning av nyckelblock: %s\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 #, fuzzy msgid "error reading fingerprint DO\n" msgstr "fel: ogiltigt fingeravtryck\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 #, fuzzy msgid "key already exists\n" msgstr "`%s' är redan komprimerad\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 #, fuzzy msgid "generating new key\n" msgstr "generera ett nytt nyckelpar" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 #, fuzzy msgid "generating key failed\n" msgstr "Nyckelgenereringen misslyckades: %s\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, fuzzy, c-format msgid "key generation completed (%d seconds)\n" msgstr "Nyckelgenereringen misslyckades: %s\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s signatur, sammandragsalgoritm %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "" @@ -6876,16 +6870,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -7060,35 +7054,35 @@ msgstr "DSA kräver att du använder en 160-bitars kontrollsummealgoritm\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "nej" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "okänd" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "fel: ogiltigt fingeravtryck\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "fel: ogiltigt fingeravtryck\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7588,12 +7582,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "Korrekt signatur från \"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " även känd som \"" @@ -7956,6 +7950,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "skyddssammandraget %d stöds inte\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "problem med GPG-Agent, stänger av den\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.9.94\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2006-11-04 03:45+0200\n" "Last-Translator: Nilgün Belma Bugüner <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" @@ -132,7 +132,7 @@ msgstr "" "gpg-agent'in anahtar deposuna korumak için alınan gizli anahtar %%0A %s%%0A " "için lütfen anahtar parolası giriniz" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, c-format msgid "failed to create stream from socket: %s\n" msgstr "sokette akım oluşturulamadı: %s\n" @@ -273,25 +273,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:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 msgid "Please report bugs to <" msgstr "Yazılım hatalarını lütfen <" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" -"> adresine,\n" -"çeviri hatalarını ise <[email protected]> adresine bildiriniz.\n" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 msgid "Usage: gpg-agent [options] (-h for help)" msgstr "Kullanımı: gpg [seçenekler] (yardım için -h)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" @@ -299,136 +291,136 @@ msgstr "" "Sözdizimi: gpg-agent [seçenekler] [komut [arg ...]]\n" "GnuPG için gizli anahtar yönetimi\n" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "%lu bayt ayrılırken güvenli bellekte nüve dışına çıkıldı" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "%lu bayt ayrılırken nüve dışına çıkıldı" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "belirtilen hata seviyesi `%s' geçersiz\n" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "libgcrypt çok eski (%s lazım, sizinki %s)\n" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, 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:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "seçenek dosyası \"%s\": %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "\"%s\"den seçenekler okunuyor\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "`%s' oluşturulurken hata: %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "`%s' dizini oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "soketin ismi çok uzun\n" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, c-format msgid "can't create socket: %s\n" msgstr "soket oluşturulamıyor: %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, c-format msgid "error binding socket to `%s': %s\n" msgstr "soket `%s'e bağlanırken hata: %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, c-format msgid "listen() failed: %s\n" msgstr "soket dinleme başarısız: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, c-format msgid "listening on socket `%s'\n" msgstr "`%s' soketi dinlemede\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "dizin `%s' oluşturuldu\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, 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:1342 +#: agent/gpg-agent.c:1373 #, c-format msgid "can't use `%s' as home directory\n" msgstr "`%s' ev dizini olarak kullanılamıyor\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, 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:1446 +#: agent/gpg-agent.c:1480 #, 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:1460 +#: agent/gpg-agent.c:1497 #, 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:1465 +#: agent/gpg-agent.c:1502 #, 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:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, 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:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, c-format msgid "%s %s stopped\n" msgstr "%s %s durdu\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 msgid "no gpg-agent running in this session\n" msgstr "bu oturumda çalışan gpg-agent yok\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO çevre değişkeni hatalı\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4314,7 +4306,7 @@ msgstr "Anahtarın geçerliliği %s de bitecek.\n" msgid "Signature expires at %s\n" msgstr "İmzanın geçerliliği %s de bitecek.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4556,7 +4548,7 @@ msgstr "'%s' yedek dosyası oluşturulamıyor: %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "BİLGİ: kart anahtarının yedeklemesi '%s' e kaydedildi\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "asla " @@ -5581,26 +5573,26 @@ msgstr "anonim alıcı: %s gizli anahtarı deneniyor ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "tamam, biz anonim alıcıyız.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "DEK'in eski kodlaması desteklenmiyor\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "şifre algoritması %d%s bilinmiyor ya da iptal edilmiş\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "UYARI: %s şifre algoritması alıcı tercihlerinde yok\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "BİLGİ: %s gizli anahtarının %s tarihinde kullanım süresi doldu\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "BİLGİ: anahtar yürürlükten kaldırılmıştı" @@ -5774,12 +5766,12 @@ msgstr "" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "DSA sekizin katlarında bir çittirim uzunluğu gerektirir\n" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "DSA anahtarı %s, güvensiz bir çittirim (%u bitlik) kullanıyor\n" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "DSA anahtarı %s, %u bitlik veya daha geniş bir çittirim gerektiriyor\n" @@ -6316,7 +6308,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "girdi satırı %u ya çok uzun ya da sonunda satırsonu karakteri yok\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "bir yazılım hatası buldunuz ... (%s:%d)\n" @@ -6348,12 +6340,6 @@ msgstr "tam hata ayıklama etkin olur" msgid "Please report bugs to " msgstr "Yazılım hatalarını lütfen " -#: kbx/kbxutil.c:108 -msgid ".\n" -msgstr "" -"<[email protected]> adresine,\n" -"çeviri hatalarını ise <[email protected]> adresine bildiriniz.\n" - #: kbx/kbxutil.c:112 msgid "Usage: kbxutil [options] [files] (-h for help)" msgstr "Kullanımı: kbxutil [seçenekler] [dosyalar] (yardım için -h)" @@ -6385,47 +6371,53 @@ msgstr "oluşturma tarihinin saklanması başarısız oldu: %s\n" msgid "reading public key failed: %s\n" msgstr "genel anahtar okuması başarısız: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "yanıt genel anahtar verisi içermiyor\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "yanıt RSA modülü içermiyor\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "yanıt RSA genel bileşenini içermiyor\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +#, fuzzy +msgid "||Please enter your PIN at the reader's keypad" +msgstr "bir okuyucu tuştakımı kullanılmaz" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN eylemcisi hata döndürdü: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "CHV%d için PIN çok kısa; asgari uzunluk: %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "CHV%d doğrulaması başarısız oldu: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "yönetici komutlarına erişim yapılandırılmamış\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "karttan CHV durumu alınırken hata\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "kart kalıcı olarak kilitli!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "" @@ -6434,108 +6426,108 @@ msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|Yönetici PIN'i" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|Yeni Yönetici PIN'i" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|Yeni PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "yeni PIN alınırken hata: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "uygulama verisi okunurken hata\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "parmakizi DO okunurken hata\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "anahtar zaten mevcut\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "mevcut anahtar konulacak\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "yeni anahtar üretiliyor\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "oluşturum zaman damgası kayıp\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA modülü ya eksik ya da %d bitlik değil\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA genel üstel sayısı ya eksik ya da %d bitten büyük\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA asal sayısı %s ya eksik la da %d bitlik değil\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "anahtarın saklanması başarısız: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "anahtar üretilene kadar lütfen bekleyiniz ....\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "anahtar üretimi başarısızlığa uğradı\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "anahtar üretimi tamamlandı (%d saniye)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "OpenPGP kartının yapısı geçersiz (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "kart %s özet algoritmasını desteklemiyor\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "şu ana kadar oluşturulan imzalar: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||Lütfen PIN'i giriniz%%0A[yapılan imza: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "Yönetici PIN'inin doğrulanması bu komut yüzünden şimdilik yasaktır\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "%s erişilebilir değil - OpenPGP kartı geçersiz olabilir mi?\n" @@ -6584,18 +6576,18 @@ msgstr "" "Sözdizimi: scdaemon [seçenekler] [komut [arg ...]]\n" "GnuPG için akıllı kart artalan süreci\n" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" "Programı artalanda çalışır bırakmak için lütfen `--daemon' seçeneğini " "kullanın\n" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "fd %d için eylemci başlatıldı\n" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "fd %d için eylemci sonlandı\n" @@ -6760,31 +6752,31 @@ msgstr "DSA, 160 bitlik bir çittirim algoritması kullanılmasını gerektiriyo msgid "(this is the MD2 algorithm)\n" msgstr "(bu, MD2 algoritmasıdır)\n" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 msgid "none" msgstr "yok" -#: sm/certdump.c:156 +#: sm/certdump.c:163 msgid "[none]" msgstr "[yok]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 msgid "[Error - invalid encoding]" msgstr "[Hata - kodlama geçersiz]" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "[Hata - nüve dışında]" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "[Hata - Adsız]" -#: sm/certdump.c:597 +#: sm/certdump.c:604 msgid "[Error - invalid DN]" msgstr "[Hata - DN geçersiz]" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7272,11 +7264,11 @@ msgstr "[belirtilmeyen tarihte]" msgid " using certificate ID %08lX\n" msgstr " sertifika kimliği %08lX kullanılarak yapıldı\n" -#: sm/verify.c:506 +#: sm/verify.c:509 msgid "Good signature from" msgstr "Buradaki imzeler iyi:" -#: sm/verify.c:507 +#: sm/verify.c:510 msgid " aka" msgstr " nam-ı diğer" @@ -7627,3 +7619,13 @@ msgstr "hiç sınıf sağlanmamış\n" #, c-format msgid "class %s is not supported\n" msgstr "%s sınıfı desteklenmiyor\n" + +#~ msgid ">.\n" +#~ msgstr "" +#~ "> adresine,\n" +#~ "çeviri hatalarını ise <[email protected]> adresine bildiriniz.\n" + +#~ msgid ".\n" +#~ msgstr "" +#~ "<[email protected]> adresine,\n" +#~ "çeviri hatalarını ise <[email protected]> adresine bildiriniz.\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 9e2c3f64f..77a6b9c48 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.4\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2006-07-02 10:58+0800\n" "Last-Translator: Meng Jie <[email protected]>\n" "Language-Team: Chinese (simplified) <[email protected]>\n" @@ -137,7 +137,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s:建立散列表失败:%s\n" @@ -291,7 +291,7 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy @@ -300,154 +300,148 @@ msgstr "" "请向 <[email protected]> 报告程序缺陷。\n" "请向 <[email protected]> 反映简体中文翻译的问题。\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "用法: gpg [选项] [文件] (用 -h 求助)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "注意:没有默认配置文件‘%s’\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "配置文件‘%s’:%s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "从‘%s’读取选项\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "建立‘%s’时发生错误:%s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "无法建立‘%s’:%s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在‘%s’中寻找信任度记录时出错:%s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失败:%s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在将私钥写至`%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "已创建目录‘%s’\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) 在 %s 中出错:%s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "无法建立目录‘%s’:%s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私钥失败:%s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s:已跳过:%s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent 在此次舍话中无法使用\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "GPG_AGENT_INFO 环境变量格式错误\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4211,7 +4205,7 @@ msgstr "密钥于 %s 过期\n" msgid "Signature expires at %s\n" msgstr "签名于 %s 过期\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4444,7 +4438,7 @@ msgstr "不能创建备份文件‘%s’:%s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "注意:卡密钥的备份已保存到‘%s’\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "永不过期" @@ -5448,26 +5442,26 @@ msgstr "匿名收件者;正在尝试使用私钥 %s ……\n" msgid "okay, we are the anonymous recipient.\n" msgstr "很好,我们就是匿名收件者。\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "不支持旧式的 DEK 编码\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "对称加密算法 %d%s 未知或已停用\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "注意:收件人的首选项中找不到加密算法 %s\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "注意:私钥 %s 已于 %s 过期\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "注意:密钥已被吊销" @@ -5630,12 +5624,12 @@ msgstr "对称加密无法避免生成弱密钥;已经尝试 %d 次!\n" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "DSA 需要散列值长度为 8 位的倍数\n" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "DSA 密钥 %s 使用不安全的(%u 位)的散列\n" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "DSA 密钥 %s 需要 %u 位或更长的散列\n" @@ -6148,7 +6142,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "输入行 %u 太长或者行末的换行符 LF 遗失\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "您找到一个程序缺陷了……(%s:%d)\n" @@ -6183,11 +6177,6 @@ msgstr "" "请向 <[email protected]> 报告程序缺陷。\n" "请向 <[email protected]> 反映简体中文翻译的问题。\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6218,47 +6207,52 @@ msgstr "无法存储创建日期:%s\n" msgid "reading public key failed: %s\n" msgstr "无法读出公钥:%s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "响应未包含公钥数据\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "响应未包含 RSA 余数\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "响应未包含 RSA 公钥指数\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN 回调返回错误:%s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "CHV%d 的 PIN 太短;最小长度为 %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "验证 CHV%d 失败:%s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "尚未配置管理员命令的权限\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "从卡中获取 CHV 状态时出错\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "卡被永久锁定!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "尝试管理员 PIN %d 次后,卡将被永久锁定!\n" @@ -6266,108 +6260,108 @@ msgstr "尝试管理员 PIN %d 次后,卡将被永久锁定!\n" #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|管理员 PIN" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|新的管理员 PIN" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "新的 PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "获取新 PIN 时出错:%s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "读取应用程序数据时出错\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "读取指纹 D0 出错\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "密钥已存在\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "现有的密钥将被替换\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "生成新密钥\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "缺少创建时间戳\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA 余数缺失或者不是 %d 位长\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA 公钥指数缺失或长于 %d 位\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA 质数 %s 缺失或者不是 %d 位长\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "无法存储密钥:%s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "请稍候,正在生成密钥……\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "生成密钥失败\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "密钥已生成(耗时 %d 秒)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "无效的 OpenPGP 卡结构(D0 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "卡不支持散列算法 %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "目前已创建的签名:%lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||请输入 PIN%%0A[完成的签字:%lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "目前禁止通过此命令验证管理员 PIN\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "不能存取 %s――无效的 OpenPGP 卡?\n" @@ -6417,16 +6411,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6600,35 +6594,35 @@ msgstr "DSA 要求使用 160 位的散列算法\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[未设定]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "错误:无效的响应。\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "错误:无效的响应。\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7132,12 +7126,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "完好的签名,来自于“%s”" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " 亦即“%s”" @@ -7494,6 +7488,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "不支持保护散列 %d\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "代理程序有问题――正在停用代理程序\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index bf930355d..dd1f0e2cf 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gnupg 1.4.2\n" "Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2006-11-10 00:40+0100\n" +"POT-Creation-Date: 2006-11-21 10:53+0100\n" "PO-Revision-Date: 2005-07-29 09:49+0800\n" "Last-Translator: Jedi <[email protected]>\n" "Language-Team: Chinese (traditional) <[email protected]>\n" @@ -135,7 +135,7 @@ msgid "" "0Awithin gpg-agent's key storage" msgstr "" -#: agent/command-ssh.c:2857 +#: agent/command-ssh.c:2853 #, fuzzy, c-format msgid "failed to create stream from socket: %s\n" msgstr "%s: 建立雜湊表失敗: %s\n" @@ -289,161 +289,155 @@ msgstr "" msgid "|FILE|write environment settings also to FILE" msgstr "" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 +#: agent/gpg-agent.c:241 agent/preset-passphrase.c:96 agent/protect-tool.c:143 #: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 #: tools/gpgconf.c:86 tools/symcryptrun.c:225 #, fuzzy msgid "Please report bugs to <" msgstr "請向 <[email protected]> 回報程式瑕疵.\n" -#: agent/gpg-agent.c:238 agent/preset-passphrase.c:96 agent/protect-tool.c:143 -#: scd/scdaemon.c:190 sm/gpgsm.c:517 tools/gpg-connect-agent.c:123 -#: tools/gpgconf.c:86 tools/symcryptrun.c:225 -msgid ">.\n" -msgstr "" - -#: agent/gpg-agent.c:241 +#: agent/gpg-agent.c:244 #, fuzzy msgid "Usage: gpg-agent [options] (-h for help)" msgstr "用法: gpg [選項] [檔案] (或用 -h 求助)" -#: agent/gpg-agent.c:243 +#: agent/gpg-agent.c:246 msgid "" "Syntax: gpg-agent [options] [command [args]]\n" "Secret key management for GnuPG\n" msgstr "" -#: agent/gpg-agent.c:302 +#: agent/gpg-agent.c:305 #, c-format msgid "out of core in secure memory while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:305 +#: agent/gpg-agent.c:308 #, c-format msgid "out of core while allocating %lu bytes" msgstr "" -#: agent/gpg-agent.c:336 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 +#: agent/gpg-agent.c:339 g10/gpg.c:923 scd/scdaemon.c:264 sm/gpgsm.c:646 #, c-format msgid "invalid debug-level `%s' given\n" msgstr "" -#: agent/gpg-agent.c:507 agent/protect-tool.c:1073 g10/gpg.c:1808 +#: agent/gpg-agent.c:510 agent/protect-tool.c:1073 g10/gpg.c:1808 #: kbx/kbxutil.c:432 scd/scdaemon.c:356 sm/gpgsm.c:767 #: tools/symcryptrun.c:1056 #, c-format msgid "libgcrypt is too old (need %s, have %s)\n" msgstr "" -#: agent/gpg-agent.c:601 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 +#: agent/gpg-agent.c:604 g10/gpg.c:2007 scd/scdaemon.c:433 sm/gpgsm.c:864 #, c-format msgid "NOTE: no default option file `%s'\n" msgstr "請注意: 沒有預設選項檔 `%s'\n" -#: agent/gpg-agent.c:606 agent/gpg-agent.c:1129 g10/gpg.c:2011 +#: agent/gpg-agent.c:609 agent/gpg-agent.c:1160 g10/gpg.c:2011 #: scd/scdaemon.c:438 sm/gpgsm.c:868 tools/symcryptrun.c:989 #, c-format msgid "option file `%s': %s\n" msgstr "選項檔 `%s': %s\n" -#: agent/gpg-agent.c:614 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 +#: agent/gpg-agent.c:617 g10/gpg.c:2018 scd/scdaemon.c:446 sm/gpgsm.c:875 #, c-format msgid "reading options from `%s'\n" msgstr "從 `%s' 讀取選項\n" -#: agent/gpg-agent.c:914 g10/plaintext.c:136 g10/plaintext.c:141 +#: agent/gpg-agent.c:930 g10/plaintext.c:136 g10/plaintext.c:141 #: g10/plaintext.c:158 #, c-format msgid "error creating `%s': %s\n" msgstr "建立 `%s' 時發生錯誤: %s\n" -#: agent/gpg-agent.c:1179 agent/gpg-agent.c:1282 agent/gpg-agent.c:1286 -#: agent/gpg-agent.c:1322 agent/gpg-agent.c:1326 g10/exec.c:174 -#: g10/openfile.c:416 scd/scdaemon.c:916 +#: agent/gpg-agent.c:1210 agent/gpg-agent.c:1313 agent/gpg-agent.c:1317 +#: agent/gpg-agent.c:1353 agent/gpg-agent.c:1357 g10/exec.c:174 +#: g10/openfile.c:416 scd/scdaemon.c:932 #, c-format msgid "can't create directory `%s': %s\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1193 scd/scdaemon.c:930 +#: agent/gpg-agent.c:1224 scd/scdaemon.c:946 msgid "name of socket too long\n" msgstr "" -#: agent/gpg-agent.c:1219 scd/scdaemon.c:956 +#: agent/gpg-agent.c:1250 scd/scdaemon.c:972 #, fuzzy, c-format msgid "can't create socket: %s\n" msgstr "無法建立 `%s': %s\n" -#: agent/gpg-agent.c:1248 scd/scdaemon.c:985 +#: agent/gpg-agent.c:1279 scd/scdaemon.c:1001 #, fuzzy, c-format msgid "error binding socket to `%s': %s\n" msgstr "在 `%s' 中尋找信任記錄時出錯: %s\n" -#: agent/gpg-agent.c:1256 scd/scdaemon.c:993 +#: agent/gpg-agent.c:1287 scd/scdaemon.c:1009 #, fuzzy, c-format msgid "listen() failed: %s\n" msgstr "更新失敗: %s\n" -#: agent/gpg-agent.c:1262 scd/scdaemon.c:999 +#: agent/gpg-agent.c:1293 scd/scdaemon.c:1015 #, fuzzy, c-format msgid "listening on socket `%s'\n" msgstr "正在將私鑰寫至 `%s'\n" -#: agent/gpg-agent.c:1290 agent/gpg-agent.c:1332 g10/openfile.c:419 +#: agent/gpg-agent.c:1321 agent/gpg-agent.c:1363 g10/openfile.c:419 #, c-format msgid "directory `%s' created\n" msgstr "目錄 `%s' 已建立\n" -#: agent/gpg-agent.c:1338 +#: agent/gpg-agent.c:1369 #, fuzzy, c-format msgid "stat() failed for `%s': %s\n" msgstr "fstat(%d) 失敗於 %s: %s\n" -#: agent/gpg-agent.c:1342 +#: agent/gpg-agent.c:1373 #, fuzzy, c-format msgid "can't use `%s' as home directory\n" msgstr "無法建立目錄 `%s': %s\n" -#: agent/gpg-agent.c:1441 +#: agent/gpg-agent.c:1475 #, c-format msgid "handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1446 +#: agent/gpg-agent.c:1480 #, c-format msgid "handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1460 +#: agent/gpg-agent.c:1497 #, c-format msgid "ssh handler 0x%lx for fd %d started\n" msgstr "" -#: agent/gpg-agent.c:1465 +#: agent/gpg-agent.c:1502 #, c-format msgid "ssh handler 0x%lx for fd %d terminated\n" msgstr "" -#: agent/gpg-agent.c:1559 scd/scdaemon.c:1115 +#: agent/gpg-agent.c:1598 scd/scdaemon.c:1134 #, fuzzy, c-format msgid "pth_select failed: %s - waiting 1s\n" msgstr "更新私鑰失敗: %s\n" -#: agent/gpg-agent.c:1643 scd/scdaemon.c:1172 +#: agent/gpg-agent.c:1704 scd/scdaemon.c:1201 #, fuzzy, c-format msgid "%s %s stopped\n" msgstr "%s: 已跳過: %s\n" -#: agent/gpg-agent.c:1664 +#: agent/gpg-agent.c:1725 #, fuzzy msgid "no gpg-agent running in this session\n" msgstr "gpg-agent 在此階段無法使用\n" -#: agent/gpg-agent.c:1674 common/simple-pwquery.c:324 g10/call-agent.c:137 +#: agent/gpg-agent.c:1735 common/simple-pwquery.c:324 g10/call-agent.c:137 #: sm/call-agent.c:144 tools/gpg-connect-agent.c:713 msgid "malformed GPG_AGENT_INFO environment variable\n" msgstr "被變造的 GPG_AGENT_INFO 環境變數\n" -#: agent/gpg-agent.c:1686 common/simple-pwquery.c:336 g10/call-agent.c:149 +#: agent/gpg-agent.c:1747 common/simple-pwquery.c:336 g10/call-agent.c:149 #: sm/call-agent.c:156 tools/gpg-connect-agent.c:724 #, c-format msgid "gpg-agent protocol version %d is not supported\n" @@ -4244,7 +4238,7 @@ msgstr "金鑰將會在 %s 過期\n" msgid "Signature expires at %s\n" msgstr "簽章將會在 %s 過期.\n" -#: g10/keygen.c:1856 +#: g10/keygen.c:1854 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -4477,7 +4471,7 @@ msgstr "無法建立備份檔案 `%s': %s\n" msgid "NOTE: backup of card key saved to `%s'\n" msgstr "請注意: 卡片金鑰的備份已儲存至 `%s'\n" -#: g10/keyid.c:539 g10/keyid.c:551 g10/keyid.c:563 g10/keyid.c:575 +#: g10/keyid.c:540 g10/keyid.c:552 g10/keyid.c:564 g10/keyid.c:576 msgid "never " msgstr "永遠不過期" @@ -5488,26 +5482,26 @@ msgstr "匿名收件者; 正在嘗試使用私鑰 %s ...\n" msgid "okay, we are the anonymous recipient.\n" msgstr "很好, 我們就是匿名收件者.\n" -#: g10/pubkey-enc.c:226 +#: g10/pubkey-enc.c:227 msgid "old encoding of the DEK is not supported\n" msgstr "不支援舊式的 DEK 編碼\n" -#: g10/pubkey-enc.c:247 +#: g10/pubkey-enc.c:248 #, c-format msgid "cipher algorithm %d%s is unknown or disabled\n" msgstr "編密演算法 %d%s 未知或已停用了\n" -#: g10/pubkey-enc.c:285 +#: g10/pubkey-enc.c:286 #, c-format msgid "WARNING: cipher algorithm %s not found in recipient preferences\n" msgstr "警告: 收件者偏好設定中找不到編密演算法 %s\n" -#: g10/pubkey-enc.c:305 +#: g10/pubkey-enc.c:306 #, c-format msgid "NOTE: secret key %s expired at %s\n" msgstr "請注意: 私鑰 %s 在 %s 過期了\n" -#: g10/pubkey-enc.c:311 +#: g10/pubkey-enc.c:312 msgid "NOTE: key has been revoked" msgstr "請注意: 金鑰已經被撤銷了" @@ -5671,12 +5665,12 @@ msgstr "無法避免對稱式編密法的弱金鑰; 已經試了 %d 次了!\n" msgid "DSA requires the hash length to be a multiple of 8 bits\n" msgstr "" -#: g10/seskey.c:243 +#: g10/seskey.c:242 #, c-format msgid "DSA key %s uses an unsafe (%u bit) hash\n" msgstr "" -#: g10/seskey.c:255 +#: g10/seskey.c:254 #, c-format msgid "DSA key %s requires a %u bit or larger hash\n" msgstr "" @@ -6190,7 +6184,7 @@ msgstr "" msgid "input line %u too long or missing LF\n" msgstr "輸入列 %u 太長或者列末的 LF 遺失了\n" -#: jnlib/logging.c:619 +#: jnlib/logging.c:626 #, c-format msgid "you found a bug ... (%s:%d)\n" msgstr "妳找到一個瑕疵了 ... (%s:%d)\n" @@ -6223,11 +6217,6 @@ msgstr "" msgid "Please report bugs to " msgstr "請向 <[email protected]> 回報程式瑕疵.\n" -#: kbx/kbxutil.c:108 -#, fuzzy -msgid ".\n" -msgstr "%s.\n" - #: kbx/kbxutil.c:112 #, fuzzy msgid "Usage: kbxutil [options] [files] (-h for help)" @@ -6258,47 +6247,52 @@ msgstr "存放創生資料失敗: %s\n" msgid "reading public key failed: %s\n" msgstr "讀取公鑰時失敗: %s\n" -#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1953 +#: scd/app-openpgp.c:1017 scd/app-openpgp.c:1978 msgid "response does not contain the public key data\n" msgstr "回應中未包含公鑰資料\n" -#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1961 +#: scd/app-openpgp.c:1025 scd/app-openpgp.c:1986 msgid "response does not contain the RSA modulus\n" msgstr "回應中未包含 RSA 系數\n" -#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1971 +#: scd/app-openpgp.c:1034 scd/app-openpgp.c:1996 msgid "response does not contain the RSA public exponent\n" msgstr "回應中未包含 RSA 公用指數\n" -#: scd/app-openpgp.c:1302 scd/app-openpgp.c:1390 scd/app-openpgp.c:2222 +#: scd/app-openpgp.c:1306 +msgid "||Please enter your PIN at the reader's keypad" +msgstr "" + +#: scd/app-openpgp.c:1310 scd/app-openpgp.c:1324 scd/app-openpgp.c:1415 +#: scd/app-openpgp.c:2247 #, c-format msgid "PIN callback returned error: %s\n" msgstr "個人識別碼 (PIN) 收回時傳回錯誤: %s\n" -#: scd/app-openpgp.c:1308 scd/app-openpgp.c:1396 scd/app-openpgp.c:2228 +#: scd/app-openpgp.c:1331 scd/app-openpgp.c:1421 scd/app-openpgp.c:2253 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "用於 CHV %d 的個人識別碼 (PIN) 太短; 長度最少要有 %d\n" -#: scd/app-openpgp.c:1317 scd/app-openpgp.c:1331 scd/app-openpgp.c:1406 -#: scd/app-openpgp.c:2237 scd/app-openpgp.c:2251 +#: scd/app-openpgp.c:1342 scd/app-openpgp.c:1356 scd/app-openpgp.c:1431 +#: scd/app-openpgp.c:2262 scd/app-openpgp.c:2276 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "驗證 CHV %d 失敗: %s\n" -#: scd/app-openpgp.c:1354 +#: scd/app-openpgp.c:1379 msgid "access to admin commands is not configured\n" msgstr "取用管理者指令尚未被組態過\n" -#: scd/app-openpgp.c:1369 scd/app-openpgp.c:2461 +#: scd/app-openpgp.c:1394 scd/app-openpgp.c:2486 msgid "error retrieving CHV status from card\n" msgstr "從卡片取回 CHV 狀態時出錯\n" -#: scd/app-openpgp.c:1375 scd/app-openpgp.c:2470 +#: scd/app-openpgp.c:1400 scd/app-openpgp.c:2495 msgid "card is permanently locked!\n" msgstr "卡片已被永久鎖住了!!\n" -#: scd/app-openpgp.c:1380 +#: scd/app-openpgp.c:1405 #, c-format msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr "%d 管理者個人識別碼 (PIN) 試圖在卡片被永久鎖定前遺留下來\n" @@ -6306,108 +6300,108 @@ msgstr "%d 管理者個人識別碼 (PIN) 試圖在卡片被永久鎖定前遺� #. TRANSLATORS: Do not translate the "|A|" prefix but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1387 +#: scd/app-openpgp.c:1412 msgid "|A|Admin PIN" msgstr "|A|Admin PIN" #. TRANSLATORS: Do not translate the "|*|" prefixes but #. keep it at the start of the string. We need this elsewhere #. to get some infos on the string. -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|AN|New Admin PIN" msgstr "|AN|New Admin PIN" -#: scd/app-openpgp.c:1536 +#: scd/app-openpgp.c:1561 msgid "|N|New PIN" msgstr "|N|New PIN" -#: scd/app-openpgp.c:1540 +#: scd/app-openpgp.c:1565 #, c-format msgid "error getting new PIN: %s\n" msgstr "取得新的個人識別碼 (PIN) 時出錯: %s\n" -#: scd/app-openpgp.c:1590 scd/app-openpgp.c:2039 +#: scd/app-openpgp.c:1615 scd/app-openpgp.c:2064 msgid "error reading application data\n" msgstr "讀取應用程式資料時出錯\n" -#: scd/app-openpgp.c:1596 scd/app-openpgp.c:2046 +#: scd/app-openpgp.c:1621 scd/app-openpgp.c:2071 msgid "error reading fingerprint DO\n" msgstr "讀取指紋 DO 時出錯\n" -#: scd/app-openpgp.c:1606 +#: scd/app-openpgp.c:1631 msgid "key already exists\n" msgstr "金鑰已存在\n" -#: scd/app-openpgp.c:1610 +#: scd/app-openpgp.c:1635 msgid "existing key will be replaced\n" msgstr "既有的金鑰將被取代\n" -#: scd/app-openpgp.c:1612 +#: scd/app-openpgp.c:1637 msgid "generating new key\n" msgstr "正在產生新的金鑰\n" -#: scd/app-openpgp.c:1779 +#: scd/app-openpgp.c:1804 msgid "creation timestamp missing\n" msgstr "建立的時間戳印缺漏\n" -#: scd/app-openpgp.c:1786 +#: scd/app-openpgp.c:1811 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA 模組缺漏或者尺寸並非 %d 位元\n" -#: scd/app-openpgp.c:1793 +#: scd/app-openpgp.c:1818 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA 公用指數缺漏或者大於 %d 位元\n" -#: scd/app-openpgp.c:1801 scd/app-openpgp.c:1808 +#: scd/app-openpgp.c:1826 scd/app-openpgp.c:1833 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA 質數 %s 缺漏或者尺寸並非 %d 位元\n" -#: scd/app-openpgp.c:1871 +#: scd/app-openpgp.c:1896 #, c-format msgid "failed to store the key: %s\n" msgstr "存放金鑰失敗: %s\n" -#: scd/app-openpgp.c:1930 +#: scd/app-openpgp.c:1955 msgid "please wait while key is being generated ...\n" msgstr "公鑰正被產生中, 請稍候 ...\n" -#: scd/app-openpgp.c:1944 +#: scd/app-openpgp.c:1969 msgid "generating key failed\n" msgstr "產生金鑰時失敗\n" -#: scd/app-openpgp.c:1947 +#: scd/app-openpgp.c:1972 #, c-format msgid "key generation completed (%d seconds)\n" msgstr "金鑰產生已完工 (%d 秒)\n" -#: scd/app-openpgp.c:2004 +#: scd/app-openpgp.c:2029 msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "OpenPGP 卡片的格式無效 (DO 0x93)\n" -#: scd/app-openpgp.c:2141 +#: scd/app-openpgp.c:2166 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s 簽章, 摘要演算法 %s\n" -#: scd/app-openpgp.c:2202 +#: scd/app-openpgp.c:2227 #, c-format msgid "signatures created so far: %lu\n" msgstr "目前建立的簽章: %lu\n" -#: scd/app-openpgp.c:2210 +#: scd/app-openpgp.c:2235 #, c-format msgid "||Please enter the PIN%%0A[sigs done: %lu]" msgstr "||請輸入 PIN%%0A[簽署完成: %lu]" -#: scd/app-openpgp.c:2475 +#: scd/app-openpgp.c:2500 msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "管理者個人識別碼 (PIN) 之驗證目前在此指令中被禁止了\n" -#: scd/app-openpgp.c:2548 scd/app-openpgp.c:2558 +#: scd/app-openpgp.c:2573 scd/app-openpgp.c:2583 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "無法存取 %s - 無效的 OpenPGP 卡片?\n" @@ -6457,16 +6451,16 @@ msgid "" "Smartcard daemon for GnuPG\n" msgstr "" -#: scd/scdaemon.c:672 +#: scd/scdaemon.c:682 msgid "please use the option `--daemon' to run the program in the background\n" msgstr "" -#: scd/scdaemon.c:1013 +#: scd/scdaemon.c:1030 #, c-format msgid "handler for fd %d started\n" msgstr "" -#: scd/scdaemon.c:1018 +#: scd/scdaemon.c:1035 #, c-format msgid "handler for fd %d terminated\n" msgstr "" @@ -6640,35 +6634,35 @@ msgstr "DSA 要求使用 160 位元的雜湊演算法\n" msgid "(this is the MD2 algorithm)\n" msgstr "" -#: sm/certdump.c:61 sm/certdump.c:147 +#: sm/certdump.c:68 sm/certdump.c:154 #, fuzzy msgid "none" msgstr "no" -#: sm/certdump.c:156 +#: sm/certdump.c:163 #, fuzzy msgid "[none]" msgstr "[未設定]" -#: sm/certdump.c:529 sm/certdump.c:592 +#: sm/certdump.c:536 sm/certdump.c:599 #, fuzzy msgid "[Error - invalid encoding]" msgstr "錯誤: 無效的回應.\n" -#: sm/certdump.c:537 +#: sm/certdump.c:544 msgid "[Error - out of core]" msgstr "" -#: sm/certdump.c:572 +#: sm/certdump.c:579 msgid "[Error - No name]" msgstr "" -#: sm/certdump.c:597 +#: sm/certdump.c:604 #, fuzzy msgid "[Error - invalid DN]" msgstr "錯誤: 無效的回應.\n" -#: sm/certdump.c:758 +#: sm/certdump.c:818 #, fuzzy, c-format msgid "" "Please enter the passphrase to unlock the secret key for:\n" @@ -7172,12 +7166,12 @@ msgstr "" msgid " using certificate ID %08lX\n" msgstr "" -#: sm/verify.c:506 +#: sm/verify.c:509 #, fuzzy msgid "Good signature from" msgstr "完好的簽章來自於 \"%s\"" -#: sm/verify.c:507 +#: sm/verify.c:510 #, fuzzy msgid " aka" msgstr " 亦即 \"%s\"" @@ -7534,6 +7528,10 @@ msgstr "" msgid "class %s is not supported\n" msgstr "保護摘要 %d 未被支援\n" +#, fuzzy +#~ msgid ".\n" +#~ msgstr "%s.\n" + #~ msgid "problem with the agent - disabling agent use\n" #~ msgstr "代理程式的問題 - 正在停用代理程式\n" |